Compare commits

...

6 Commits

Author SHA1 Message Date
Abhishek Pandey
c5cf93deb3 Hacky prototype for conv KAI 2023-12-19 17:43:50 -08:00
Abhishek Pandey
276ace62f0 Remove comments 2023-12-08 17:23:38 -08:00
Abhishek Pandey
a58559d6c2 Add conversations to selector 2023-12-08 17:22:08 -08:00
ryanfkeepers
3bfadd5416 fix nolints 2023-12-08 12:51:44 -07:00
ryanfkeepers
f21ef8ccb5 fix up code after rebase 2023-12-08 10:43:30 -07:00
ryanfkeepers
74acdfe516 fix up cli tabular display and locationRef 2023-12-08 10:34:09 -07:00
13 changed files with 337 additions and 142 deletions

View File

@ -464,10 +464,6 @@ func runGroupsDetailsCmdTest(suite *PreparedBackupGroupsE2ESuite, category path.
t := suite.T()
if category == path.ConversationPostsCategory {
t.Skip("skipping conversation details test, see issue #4780")
}
ctx, flush := tester.NewContext(t)
ctx = config.SetViper(ctx, suite.dpnd.vpr)

View File

@ -4,7 +4,6 @@ import (
"context"
"github.com/alcionai/clues"
"golang.org/x/exp/maps"
"github.com/alcionai/corso/src/internal/common/pii"
"github.com/alcionai/corso/src/internal/common/ptr"
@ -69,7 +68,7 @@ func CreateCollections[C graph.GetIDer, I groupsItemer](
counter.Add(count.Channels, int64(len(containers)))
collections, err := populateCollections(
collections, err := populateCollections[C, I](
ctx,
qp,
bh,
@ -174,7 +173,7 @@ func populateCollections[C graph.GetIDer, I groupsItemer](
continue
}
added := str.SliceToMap(maps.Keys(addAndRem.Added))
added := addAndRem.Added
removed := str.SliceToMap(addAndRem.Removed)
cl.Add(count.ItemsAdded, int64(len(added)))
@ -213,6 +212,7 @@ func populateCollections[C graph.GetIDer, I groupsItemer](
qp.ProtectedResource.ID(),
added,
removed,
c,
statusUpdater)
collections[c.storageDirFolders.String()] = &edc

View File

@ -39,6 +39,7 @@ import (
var _ backupHandler[models.Channelable, models.ChatMessageable] = &mockBackupHandler{}
//lint:ignore U1000 false linter issue due to generics
type mockBackupHandler struct {
channels []models.Channelable
messageIDs []string
@ -50,6 +51,14 @@ type mockBackupHandler struct {
doNotInclude bool
}
//lint:ignore U1000 false linter issue due to generics
func (bh mockBackupHandler) augmentItemInfo(
*details.GroupsInfo,
models.Channelable,
) {
// no-op
}
func (bh mockBackupHandler) canMakeDeltaQueries() bool {
return true
}
@ -116,7 +125,8 @@ func (bh mockBackupHandler) canonicalPath(
false)
}
func (bh mockBackupHandler) GetItem(
//lint:ignore U1000 false linter issue due to generics
func (bh mockBackupHandler) getItem(
_ context.Context,
_ string,
_ path.Elements,

View File

@ -95,7 +95,8 @@ func (bh channelsBackupHandler) PathPrefix(tenantID string) (path.Path, error) {
false)
}
func (bh channelsBackupHandler) GetItem(
//lint:ignore U1000 false linter issue due to generics
func (bh channelsBackupHandler) getItem(
ctx context.Context,
groupID string,
containerIDs path.Elements,
@ -104,6 +105,14 @@ func (bh channelsBackupHandler) GetItem(
return bh.ac.GetChannelMessage(ctx, groupID, containerIDs[0], messageID)
}
//lint:ignore U1000 false linter issue due to generics
func (bh channelsBackupHandler) augmentItemInfo(
dgi *details.GroupsInfo,
c models.Channelable,
) {
// no-op
}
func channelContainer(ch models.Channelable) container[models.Channelable] {
return container[models.Channelable]{
storageDirFolders: path.Elements{ptr.Val(ch.GetId())},

View File

@ -3,9 +3,11 @@ package groups
import (
"bytes"
"context"
"fmt"
"io"
"sync"
"sync/atomic"
"time"
"github.com/alcionai/clues"
kjson "github.com/microsoft/kiota-serialization-json-go"
@ -17,26 +19,30 @@ import (
"github.com/alcionai/corso/src/pkg/count"
"github.com/alcionai/corso/src/pkg/fault"
"github.com/alcionai/corso/src/pkg/logger"
"github.com/alcionai/corso/src/pkg/path"
"github.com/alcionai/corso/src/pkg/services/m365/api/graph"
)
var _ data.BackupCollection = &Collection[groupsItemer]{}
var _ data.BackupCollection = &Collection[graph.GetIDer, groupsItemer]{}
const (
collectionChannelBufferSize = 1000
numberOfRetries = 4
)
type Collection[I groupsItemer] struct {
type Collection[C graph.GetIDer, I groupsItemer] struct {
data.BaseCollection
protectedResource string
stream chan data.Item
contains container[C]
// added is a list of existing item IDs that were added to a container
added map[string]struct{}
added map[string]time.Time
// removed is a list of item IDs that were deleted from, or moved out, of a container
removed map[string]struct{}
getter getItemer[I]
getAndAugment getItemAndAugmentInfoer[C, I]
statusUpdater support.StatusUpdater
}
@ -47,18 +53,20 @@ type Collection[I groupsItemer] struct {
// to be deleted. If the prev path is nil, it is assumed newly created.
// If both are populated, then state is either moved (if they differ),
// or notMoved (if they match).
func NewCollection[I groupsItemer](
func NewCollection[C graph.GetIDer, I groupsItemer](
baseCol data.BaseCollection,
getter getItemer[I],
getAndAugment getItemAndAugmentInfoer[C, I],
protectedResource string,
added map[string]struct{},
added map[string]time.Time,
removed map[string]struct{},
contains container[C],
statusUpdater support.StatusUpdater,
) Collection[I] {
collection := Collection[I]{
) Collection[C, I] {
collection := Collection[C, I]{
BaseCollection: baseCol,
added: added,
getter: getter,
contains: contains,
getAndAugment: getAndAugment,
removed: removed,
statusUpdater: statusUpdater,
stream: make(chan data.Item, collectionChannelBufferSize),
@ -70,7 +78,7 @@ func NewCollection[I groupsItemer](
// Items utility function to asynchronously execute process to fill data channel with
// M365 exchange objects and returns the data channel
func (col *Collection[I]) Items(ctx context.Context, errs *fault.Bus) <-chan data.Item {
func (col *Collection[C, I]) Items(ctx context.Context, errs *fault.Bus) <-chan data.Item {
go col.streamItems(ctx, errs)
return col.stream
}
@ -79,7 +87,7 @@ func (col *Collection[I]) Items(ctx context.Context, errs *fault.Bus) <-chan dat
// items() production
// ---------------------------------------------------------------------------
func (col *Collection[I]) streamItems(ctx context.Context, errs *fault.Bus) {
func (col *Collection[C, I]) streamItems(ctx context.Context, errs *fault.Bus) {
var (
streamedItems int64
totalBytes int64
@ -130,84 +138,102 @@ func (col *Collection[I]) streamItems(ctx context.Context, errs *fault.Bus) {
}
// add any new items
for id := range col.added {
for id, modTime := range col.added {
if el.Failure() != nil {
break
}
wg.Add(1)
semaphoreCh <- struct{}{}
col.stream <- data.NewLazyItemWithInfo(
ctx,
&lazyItemGetter[C, I]{
modTime: modTime,
getAndAugment: col.getAndAugment,
userID: col.protectedResource,
itemID: id,
containerIDs: col.FullPath().Folders(),
contains: col.contains,
parentPath: col.LocationPath().String(),
},
id,
modTime,
col.Counter,
el)
go func(id string) {
defer wg.Done()
defer func() { <-semaphoreCh }()
// wg.Add(1)
// semaphoreCh <- struct{}{}
writer := kjson.NewJsonSerializationWriter()
defer writer.Close()
// go func(id string) {
// defer wg.Done()
// defer func() { <-semaphoreCh }()
item, info, err := col.getter.GetItem(
ctx,
col.protectedResource,
col.FullPath().Folders(),
id)
if err != nil {
err = clues.Wrap(err, "getting channel message data").Label(fault.LabelForceNoBackupCreation)
el.AddRecoverable(ctx, err)
// writer := kjson.NewJsonSerializationWriter()
// defer writer.Close()
return
}
// item, info, err := col.getAndAugment.getItem(
// ctx,
// col.protectedResource,
// col.FullPath().Folders(),
// id)
// if err != nil {
// err = clues.Wrap(err, "getting channel message data").Label(fault.LabelForceNoBackupCreation)
// el.AddRecoverable(ctx, err)
if err := writer.WriteObjectValue("", item); err != nil {
err = clues.Wrap(err, "writing channel message to serializer").Label(fault.LabelForceNoBackupCreation)
el.AddRecoverable(ctx, err)
// return
// }
return
}
// col.getAndAugment.augmentItemInfo(info, col.contains.container)
itemData, err := writer.GetSerializedContent()
if err != nil {
err = clues.Wrap(err, "serializing channel message").Label(fault.LabelForceNoBackupCreation)
el.AddRecoverable(ctx, err)
// if err := writer.WriteObjectValue("", item); err != nil {
// err = clues.Wrap(err, "writing channel message to serializer").Label(fault.LabelForceNoBackupCreation)
// el.AddRecoverable(ctx, err)
return
}
// return
// }
info.ParentPath = col.LocationPath().String()
// itemData, err := writer.GetSerializedContent()
// if err != nil {
// err = clues.Wrap(err, "serializing channel message").Label(fault.LabelForceNoBackupCreation)
// el.AddRecoverable(ctx, err)
storeItem, err := data.NewPrefetchedItemWithInfo(
io.NopCloser(bytes.NewReader(itemData)),
id,
details.ItemInfo{Groups: info})
if err != nil {
err := clues.StackWC(ctx, err).Label(fault.LabelForceNoBackupCreation)
el.AddRecoverable(ctx, err)
// return
// }
return
}
// info.ParentPath = col.LocationPath().String()
col.stream <- storeItem
// storeItem, err := data.NewPrefetchedItemWithInfo(
// io.NopCloser(bytes.NewReader(itemData)),
// id,
// details.ItemInfo{Groups: info})
// if err != nil {
// err := clues.StackWC(ctx, err).Label(fault.LabelForceNoBackupCreation)
// el.AddRecoverable(ctx, err)
atomic.AddInt64(&streamedItems, 1)
atomic.AddInt64(&totalBytes, info.Size)
// return
// }
if col.Counter.Inc(count.StreamItemsAdded)%1000 == 0 {
logger.Ctx(ctx).Infow("item stream progress", "stats", col.Counter.Values())
}
// col.stream <- storeItem
col.Counter.Add(count.StreamBytesAdded, info.Size)
// atomic.AddInt64(&streamedItems, 1)
// atomic.AddInt64(&totalBytes, info.Size)
if colProgress != nil {
colProgress <- struct{}{}
}
}(id)
// if col.Counter.Inc(count.StreamItemsAdded)%1000 == 0 {
// logger.Ctx(ctx).Infow("item stream progress", "stats", col.Counter.Values())
// }
// col.Counter.Add(count.StreamBytesAdded, info.Size)
if colProgress != nil {
colProgress <- struct{}{}
}
// }(id)
}
wg.Wait()
// wg.Wait()
}
// finishPopulation is a utility function used to close a Collection's data channel
// and to send the status update through the channel.
func (col *Collection[I]) finishPopulation(
func (col *Collection[C, I]) finishPopulation(
ctx context.Context,
streamedItems, totalBytes int64,
err error,
@ -230,3 +256,72 @@ func (col *Collection[I]) finishPopulation(
col.statusUpdater(status)
}
type lazyItemGetter[C graph.GetIDer, I groupsItemer] struct {
getAndAugment getItemAndAugmentInfoer[C, I]
userID string
itemID string
containerIDs path.Elements
parentPath string
modTime time.Time
contains container[C]
}
func (lig *lazyItemGetter[C, I]) GetData(
ctx context.Context,
errs *fault.Bus,
) (io.ReadCloser, *details.ItemInfo, bool, error) {
writer := kjson.NewJsonSerializationWriter()
defer writer.Close()
fmt.Println("getdata itemID: ", lig.itemID)
item, info, err := lig.getAndAugment.getItem(
ctx,
lig.userID,
lig.containerIDs,
lig.itemID)
if err != nil {
// If an item was deleted then return an empty file so we don't fail
// the backup and return a sentinel error when asked for ItemInfo so
// we don't display the item in the backup.
//
// The item will be deleted from kopia on the next backup when the
// delta token shows it's removed.
if graph.IsErrDeletedInFlight(err) {
logger.CtxErr(ctx, err).Info("item not found")
return nil, nil, true, nil
}
err = clues.Wrap(err, "getting channel message data").Label(fault.LabelForceNoBackupCreation)
errs.AddRecoverable(ctx, err)
return nil, nil, false, err
}
lig.getAndAugment.augmentItemInfo(info, lig.contains.container)
if err := writer.WriteObjectValue("", item); err != nil {
err = clues.Wrap(err, "writing channel message to serializer").Label(fault.LabelForceNoBackupCreation)
errs.AddRecoverable(ctx, err)
return nil, nil, false, err
}
itemData, err := writer.GetSerializedContent()
if err != nil {
err = clues.Wrap(err, "serializing channel message").Label(fault.LabelForceNoBackupCreation)
errs.AddRecoverable(ctx, err)
return nil, nil, false, err
}
info.ParentPath = lig.parentPath
// Update the mod time to what we already told kopia about. This is required
// for proper details merging.
info.Modified = lig.modTime
return io.NopCloser(bytes.NewReader(itemData)),
&details.ItemInfo{Groups: info},
false,
nil
}

View File

@ -2,6 +2,7 @@ package groups
import (
"bytes"
"context"
"io"
"testing"
"time"
@ -12,9 +13,9 @@ import (
"github.com/stretchr/testify/require"
"github.com/stretchr/testify/suite"
"github.com/alcionai/corso/src/internal/common/ptr"
"github.com/alcionai/corso/src/internal/common/readers"
"github.com/alcionai/corso/src/internal/data"
"github.com/alcionai/corso/src/internal/m365/collection/groups/mock"
"github.com/alcionai/corso/src/internal/m365/support"
"github.com/alcionai/corso/src/internal/tester"
"github.com/alcionai/corso/src/pkg/backup/details"
@ -117,7 +118,7 @@ func (suite *CollectionUnitSuite) TestNewCollection_state() {
suite.Run(test.name, func() {
t := suite.T()
c := NewCollection[models.ChatMessageable](
c := NewCollection[models.Channelable, models.ChatMessageable](
data.NewBaseCollection(
test.curr,
test.prev,
@ -127,7 +128,9 @@ func (suite *CollectionUnitSuite) TestNewCollection_state() {
count.New()),
nil,
"g",
nil, nil,
nil,
nil,
container[models.Channelable]{},
nil)
assert.Equal(t, test.expect, c.State(), "collection state")
assert.Equal(t, test.curr, c.FullPath(), "full path")
@ -137,6 +140,28 @@ func (suite *CollectionUnitSuite) TestNewCollection_state() {
}
}
type getAndAugmentChannelMessage struct {
Err error
}
//lint:ignore U1000 false linter issue due to generics
func (m getAndAugmentChannelMessage) getItem(
_ context.Context,
_ string,
_ path.Elements,
itemID string,
) (models.ChatMessageable, *details.GroupsInfo, error) {
msg := models.NewChatMessage()
msg.SetId(ptr.To(itemID))
return msg, &details.GroupsInfo{}, m.Err
}
//lint:ignore U1000 false linter issue due to generics
func (getAndAugmentChannelMessage) augmentItemInfo(*details.GroupsInfo, models.Channelable) {
// no-op
}
func (suite *CollectionUnitSuite) TestCollection_streamItems() {
var (
t = suite.T()
@ -199,7 +224,7 @@ func (suite *CollectionUnitSuite) TestCollection_streamItems() {
ctx, flush := tester.NewContext(t)
defer flush()
col := &Collection[models.ChatMessageable]{
col := &Collection[models.Channelable, models.ChatMessageable]{
BaseCollection: data.NewBaseCollection(
fullPath,
nil,
@ -208,8 +233,9 @@ func (suite *CollectionUnitSuite) TestCollection_streamItems() {
false,
count.New()),
added: test.added,
contains: container[models.Channelable]{},
removed: test.removed,
getter: mock.GetChannelMessage{},
getAndAugment: getAndAugmentChannelMessage{},
stream: make(chan data.Item),
statusUpdater: statusUpdater,
}

View File

@ -113,7 +113,8 @@ func (bh conversationsBackupHandler) PathPrefix(tenantID string) (path.Path, err
false)
}
func (bh conversationsBackupHandler) GetItem(
//lint:ignore U1000 false linter issue due to generics
func (bh conversationsBackupHandler) getItem(
ctx context.Context,
groupID string,
containerIDs path.Elements, // expects: [conversationID, threadID]
@ -128,6 +129,14 @@ func (bh conversationsBackupHandler) GetItem(
api.CallConfig{})
}
//lint:ignore U1000 false linter issue due to generics
func (bh conversationsBackupHandler) augmentItemInfo(
dgi *details.GroupsInfo,
c models.Conversationable,
) {
dgi.Post.Topic = ptr.Val(c.GetTopic())
}
func conversationThreadContainer(
c models.Conversationable,
t models.ConversationThreadable,
@ -136,9 +145,8 @@ func conversationThreadContainer(
storageDirFolders: path.Elements{ptr.Val(c.GetId()), ptr.Val(t.GetId())},
// microsoft UX doesn't display any sort of container name that would make a reasonable
// "location" for the posts in the conversation. We may need to revisit this, perhaps
// the subject is sufficiently acceptable. But at this time it's left empty so that
// we don't populate it with problematic data.
humanLocation: path.Elements{},
// the subject (aka topic) is sufficiently acceptable.
humanLocation: path.Elements{ptr.Val(c.GetTopic())},
canMakeDeltaQueries: false,
container: c,
}

View File

@ -25,13 +25,25 @@ type backupHandler[C graph.GetIDer, I groupsItemer] interface {
getItemer[I]
getContainerser[C]
getContainerItemIDser
getItemAndAugmentInfoer[C, I]
includeContainerer[C]
canonicalPather
canMakeDeltaQuerieser
}
type getItemAndAugmentInfoer[C graph.GetIDer, I groupsItemer] interface {
getItemer[I]
augmentItemInfoer[C]
}
type augmentItemInfoer[C graph.GetIDer] interface {
// augmentItemInfo completes the groupInfo population with any data
// owned by the container and not accessible to the item.
augmentItemInfo(*details.GroupsInfo, C)
}
type getItemer[I groupsItemer] interface {
GetItem(
getItem(
ctx context.Context,
protectedResource string,
containerIDs path.Elements,

View File

@ -1,27 +0,0 @@
package mock
import (
"context"
"github.com/microsoftgraph/msgraph-sdk-go/models"
"github.com/alcionai/corso/src/internal/common/ptr"
"github.com/alcionai/corso/src/pkg/backup/details"
"github.com/alcionai/corso/src/pkg/path"
)
type GetChannelMessage struct {
Err error
}
func (m GetChannelMessage) GetItem(
_ context.Context,
_ string,
_ path.Elements,
itemID string,
) (models.ChatMessageable, *details.GroupsInfo, error) {
msg := models.NewChatMessage()
msg.SetId(ptr.To(itemID))
return msg, &details.GroupsInfo{}, m.Err
}

View File

@ -65,7 +65,7 @@ type ConversationPostInfo struct {
Creator string `json:"creator,omitempty"`
Preview string `json:"preview,omitempty"`
Size int64 `json:"size,omitempty"`
Subject string `json:"subject,omitempty"`
Topic string `json:"topic,omitempty"`
}
type ChannelMessageInfo struct {
@ -86,6 +86,8 @@ func (i GroupsInfo) Headers() []string {
return []string{"ItemName", "Library", "ParentPath", "Size", "Owner", "Created", "Modified"}
case GroupsChannelMessage:
return []string{"Message", "Channel", "Subject", "Replies", "Creator", "Created", "Last Reply"}
case GroupsConversationPost:
return []string{"Post", "Conversation", "Sender", "Created"}
}
return []string{}
@ -112,7 +114,7 @@ func (i GroupsInfo) Values() []string {
}
return []string{
// html parsing may produce newlijnes, which we'll want to avoid
// html parsing may produce newlines, which we'll want to avoid
strings.ReplaceAll(i.Message.Preview, "\n", "\\n"),
i.ParentPath,
i.Message.Subject,
@ -121,6 +123,14 @@ func (i GroupsInfo) Values() []string {
dttm.FormatToTabularDisplay(i.Message.CreatedAt),
lastReply,
}
case GroupsConversationPost:
return []string{
// html parsing may produce newlines, which we'll want to avoid
strings.ReplaceAll(i.Post.Preview, "\n", "\\n"),
i.Post.Topic,
i.Post.Creator,
dttm.FormatToTabularDisplay(i.Post.CreatedAt),
}
}
return []string{}

View File

@ -21,38 +21,95 @@ func TestGroupsUnitSuite(t *testing.T) {
}
func (suite *GroupsUnitSuite) TestGroupsPrintable() {
t := suite.T()
now := time.Now()
then := now.Add(time.Minute)
gi := details.GroupsInfo{
ItemType: details.GroupsChannelMessage,
ParentPath: "parentPath",
Message: details.ChannelMessageInfo{
Preview: "preview",
ReplyCount: 1,
Creator: "creator",
CreatedAt: now,
Subject: "subject",
table := []struct {
name string
info details.GroupsInfo
expectHs []string
expectVs []string
}{
{
name: "channel message",
info: details.GroupsInfo{
ItemType: details.GroupsChannelMessage,
ParentPath: "parentpath",
Message: details.ChannelMessageInfo{
Preview: "preview",
ReplyCount: 1,
Creator: "creator",
CreatedAt: now,
Subject: "subject",
},
LastReply: details.ChannelMessageInfo{
CreatedAt: then,
},
},
expectHs: []string{"Message", "Channel", "Subject", "Replies", "Creator", "Created", "Last Reply"},
expectVs: []string{
"preview",
"parentpath",
"subject",
"1",
"creator",
dttm.FormatToTabularDisplay(now),
dttm.FormatToTabularDisplay(then),
},
},
LastReply: details.ChannelMessageInfo{
CreatedAt: then,
{
name: "conversation post",
info: details.GroupsInfo{
ItemType: details.GroupsConversationPost,
Post: details.ConversationPostInfo{
Preview: "preview",
Creator: "creator",
CreatedAt: now,
Topic: "topic",
},
},
expectHs: []string{"Post", "Conversation", "Sender", "Created"},
expectVs: []string{
"preview",
"topic",
"creator",
dttm.FormatToTabularDisplay(now),
},
},
{
name: "sharepoint library",
info: details.GroupsInfo{
ItemType: details.SharePointLibrary,
ParentPath: "parentPath",
Created: now,
Modified: then,
DriveName: "librarydrive",
ItemName: "item",
Size: 42,
Owner: "user",
},
expectHs: []string{"ItemName", "Library", "ParentPath", "Size", "Owner", "Created", "Modified"},
expectVs: []string{
"item",
"librarydrive",
"parentPath",
"42 B",
"user",
dttm.FormatToTabularDisplay(now),
dttm.FormatToTabularDisplay(then),
},
},
}
for _, test := range table {
suite.Run(test.name, func() {
t := suite.T()
expectVs := []string{
"preview",
"parentPath",
"subject",
"1",
"creator",
dttm.FormatToTabularDisplay(now),
dttm.FormatToTabularDisplay(then),
hs := test.info.Headers()
vs := test.info.Values()
assert.Equal(t, len(hs), len(vs))
assert.Equal(t, test.expectHs, hs)
assert.Equal(t, test.expectVs, vs)
})
}
hs := gi.Headers()
vs := gi.Values()
assert.Equal(t, len(hs), len(vs))
assert.Equal(t, expectVs, vs)
}

View File

@ -217,9 +217,8 @@ func (s *groups) AllData() []GroupsScope {
scopes = append(
scopes,
makeScope[GroupsScope](GroupsLibraryFolder, Any()),
makeScope[GroupsScope](GroupsChannel, Any()))
// TODO: enable conversations in all-data backups
// makeScope[GroupsScope](GroupsConversation, Any()))
makeScope[GroupsScope](GroupsChannel, Any()),
makeScope[GroupsScope](GroupsConversation, Any()))
return scopes
}

View File

@ -96,7 +96,7 @@ func (suite *ConversationsAPIUnitSuite) TestConversationPostInfo() {
Preview: "",
Size: 0,
// TODO: feed the subject in from the conversation
Subject: "",
Topic: "",
},
}