diff --git a/core/goflow/engine.go b/core/goflow/engine.go index 2ce4ab8a6..9e73d3db9 100644 --- a/core/goflow/engine.go +++ b/core/goflow/engine.go @@ -20,6 +20,7 @@ var classificationFactory func(*runtime.Config) engine.ClassificationServiceFact var ticketFactory func(*runtime.Config) engine.TicketServiceFactory var airtimeFactory func(*runtime.Config) engine.AirtimeServiceFactory var externalServiceFactory func(*runtime.Config) engine.ExternalServiceServiceFactory +var msgCatalogFactory func(*runtime.Config) engine.MsgCatalogServiceFactory // RegisterEmailServiceFactory can be used by outside callers to register a email factory // for use by the engine @@ -49,6 +50,10 @@ func RegisterExternalServiceServiceFactory(f func(*runtime.Config) engine.Extern externalServiceFactory = f } +func RegisterMsgCatalogServiceFactory(f func(*runtime.Config) engine.MsgCatalogServiceFactory) { + msgCatalogFactory = f +} + // Engine returns the global engine instance for use with real sessions func Engine(c *runtime.Config) flows.Engine { engInit.Do(func() { @@ -65,6 +70,7 @@ func Engine(c *runtime.Config) flows.Engine { WithEmailServiceFactory(emailFactory(c)). WithTicketServiceFactory(ticketFactory(c)). WithExternalServiceServiceFactory(externalServiceFactory((c))). + WithMsgCatalogServiceFactory(msgCatalogFactory((c))). // msg catalog WithAirtimeServiceFactory(airtimeFactory(c)). WithMaxStepsPerSprint(c.MaxStepsPerSprint). WithMaxResumesPerSession(c.MaxResumesPerSession). @@ -88,6 +94,7 @@ func Simulator(c *runtime.Config) flows.Engine { WithWebhookServiceFactory(webhooks.NewServiceFactory(httpClient, nil, httpAccess, webhookHeaders, c.WebhooksMaxBodyBytes)). WithClassificationServiceFactory(classificationFactory(c)). // simulated sessions do real classification WithExternalServiceServiceFactory(externalServiceFactory((c))). // and real external services + WithMsgCatalogServiceFactory(msgCatalogFactory((c))). // msg catalog WithEmailServiceFactory(simulatorEmailServiceFactory). // but faked emails WithTicketServiceFactory(simulatorTicketServiceFactory). // and faked tickets WithAirtimeServiceFactory(simulatorAirtimeServiceFactory). // and faked airtime transfers diff --git a/core/handlers/msg_catalog_created.go b/core/handlers/msg_catalog_created.go index 5a93a0bc9..9c4163361 100644 --- a/core/handlers/msg_catalog_created.go +++ b/core/handlers/msg_catalog_created.go @@ -2,22 +2,15 @@ package handlers import ( "context" - "encoding/json" "fmt" - "net/http" - "strconv" "github.com/nyaruka/gocommon/urns" "github.com/nyaruka/goflow/envs" "github.com/nyaruka/goflow/flows" "github.com/nyaruka/goflow/flows/events" - "github.com/nyaruka/mailroom/core/goflow" "github.com/nyaruka/mailroom/core/hooks" "github.com/nyaruka/mailroom/core/models" "github.com/nyaruka/mailroom/runtime" - "github.com/nyaruka/mailroom/services/external/openai/chatgpt" - "github.com/nyaruka/mailroom/services/external/weni/sentenx" - "github.com/nyaruka/mailroom/services/external/weni/wenigpt" "github.com/jmoiron/sqlx" "github.com/pkg/errors" @@ -117,38 +110,6 @@ func handleMsgCatalogCreated(ctx context.Context, rt *runtime.Runtime, tx *sqlx. } } - // if is smart product catalog msg - if len(event.Msg.Products()) == 0 && event.Msg.Smart() { - content := event.Msg.ProductSearch() - productList, err := GetProductListFromWeniGPT(ctx, rt, content) - if err != nil { - return err - } - catalog, err := models.GetActiveCatalogFromChannel(ctx, *rt.DB, channel.ID()) - if err != nil { - return err - } - channelThreshold := channel.ConfigValue("threshold", "1.5") - searchThreshold, err := strconv.ParseFloat(channelThreshold, 64) - if err != nil { - return err - } - - productRetailerIDS := []string{} - - for _, product := range productList { - searchResult, err := GetProductListFromSentenX(product, catalog.FacebookCatalogID(), searchThreshold, rt) - if err != nil { - return errors.Wrapf(err, "on iterate to search products on sentenx") - } - for _, prod := range searchResult { - productRetailerIDS = append(productRetailerIDS, prod["product_retailer_id"]) - } - } - - event.Msg.Products_ = productRetailerIDS - } // if is not smart catalog, event already have products - msg, err := models.NewOutgoingFlowMsgCatalog(rt, oa.Org(), channel, scene.Session(), event.Msg, event.CreatedOn()) if err != nil { return errors.Wrapf(err, "error creating outgoing message to %s", event.Msg.URN()) @@ -164,88 +125,3 @@ func handleMsgCatalogCreated(ctx context.Context, rt *runtime.Runtime, tx *sqlx. return nil } - -func GetProductListFromWeniGPT(ctx context.Context, rt *runtime.Runtime, content string) ([]string, error) { - httpClient, httpRetries, _ := goflow.HTTP(rt.Config) - weniGPTClient := wenigpt.NewClient(httpClient, httpRetries, rt.Config.WeniGPTBaseURL, rt.Config.WeniGPTAuthToken, rt.Config.WeniGPTCookie) - - prompt := fmt.Sprintf(`Give me an unformatted JSON list containing strings with the name of each product taken from the user prompt. Never repeat the same product. Always use this pattern: {\"products\": []}. Request: %s. Response:`, content) - - dr := wenigpt.NewWenigptRequest( - prompt, - 0, - 0.0, - 0.0, - true, - wenigpt.DefaultStopSequences, - ) - - response, _, err := weniGPTClient.WeniGPTRequest(dr) - if err != nil { - return nil, errors.Wrapf(err, "error on wewnigpt call fot list products") - } - - productsJson := response.Output.Text - - var products map[string][]string - err = json.Unmarshal([]byte(productsJson), &products) - if err != nil { - return nil, errors.Wrapf(err, "error on unmarshalling product list") - } - return products["products"], nil -} - -func GetProductListFromChatGPT(ctx context.Context, rt *runtime.Runtime, content string) ([]string, error) { - httpClient, httpRetries, _ := goflow.HTTP(rt.Config) - chatGPTClient := chatgpt.NewClient(httpClient, httpRetries, rt.Config.ChatGPTBaseURL, rt.Config.ChatGPTKey) - - prompt1 := chatgpt.ChatCompletionMessage{ - Role: chatgpt.ChatMessageRoleSystem, - Content: "Give me an unformatted JSON list containing strings with the name of each product taken from the user prompt.", - } - prompt2 := chatgpt.ChatCompletionMessage{ - Role: chatgpt.ChatMessageRoleSystem, - Content: "Never repeat the same product.", - } - prompt3 := chatgpt.ChatCompletionMessage{ - Role: chatgpt.ChatMessageRoleSystem, - Content: "Always use this pattern: {\"products\": []}", - } - question := chatgpt.ChatCompletionMessage{ - Role: chatgpt.ChatMessageRoleUser, - Content: content, - } - completionRequest := chatgpt.NewChatCompletionRequest([]chatgpt.ChatCompletionMessage{prompt1, prompt2, prompt3, question}) - response, _, err := chatGPTClient.CreateChatCompletion(completionRequest) - if err != nil { - return nil, errors.Wrapf(err, "error on chatgpt call for list products") - } - - productsJson := response.Choices[0].Message.Content - - var products map[string][]string - err = json.Unmarshal([]byte(productsJson), &products) - if err != nil { - return nil, errors.Wrapf(err, "error on unmarshalling product list") - } - return products["products"], nil -} - -func GetProductListFromSentenX(productSearch string, catalogID string, threshold float64, rt *runtime.Runtime) ([]map[string]string, error) { - client := sentenx.NewClient(http.DefaultClient, nil, rt.Config.SentenXBaseURL) - - searchParams := sentenx.NewSearchRequest(productSearch, catalogID, threshold) - - searchResponse, _, err := client.SearchProducts(searchParams) - if err != nil { - return nil, err - } - - pmap := []map[string]string{} - for _, p := range searchResponse.Products { - mapElement := map[string]string{"product_retailer_id": p.ProductRetailerID} - pmap = append(pmap, mapElement) - } - - return pmap, nil -} diff --git a/core/models/assets.go b/core/models/assets.go index ebe2a32f7..8e6c81b79 100644 --- a/core/models/assets.go +++ b/core/models/assets.go @@ -79,6 +79,8 @@ type OrgAssets struct { externalServices []assets.ExternalService externalServicesByID map[ExternalServiceID]*ExternalService externalServicesByUUID map[assets.ExternalServiceUUID]*ExternalService + + msgCatalogs []assets.MsgCatalog } var ErrNotFound = errors.New("not found") @@ -381,6 +383,10 @@ func NewOrgAssets(ctx context.Context, rt *runtime.Runtime, orgID OrgID, prev *O oa.externalServicesByUUID = prev.externalServicesByUUID } + if prev == nil || refresh&RefreshMsgCatalogs > 0 { + oa.msgCatalogs = []assets.MsgCatalog{} + } + // intialize our session assets oa.sessionAssets, err = engine.NewSessionAssets(oa.Env(), oa, goflow.MigrationConfig(rt.Config)) if err != nil { @@ -414,6 +420,7 @@ const ( RefreshTopics = Refresh(1 << 15) RefreshUsers = Refresh(1 << 16) RefreshExternalServices = Refresh(1 << 17) + RefreshMsgCatalogs = Refresh(1 << 18) ) // GetOrgAssets creates or gets org assets for the passed in org @@ -706,3 +713,7 @@ func (a *OrgAssets) ExternalServiceByID(id ExternalServiceID) *ExternalService { func (a *OrgAssets) ExternalServiceByUUID(uuid assets.ExternalServiceUUID) *ExternalService { return a.externalServicesByUUID[uuid] } + +func (a *OrgAssets) MsgCatalogs() ([]assets.MsgCatalog, error) { + return a.msgCatalogs, nil +} diff --git a/core/models/catalog_products.go b/core/models/catalog_products.go index e193ad39c..eb8c5098f 100644 --- a/core/models/catalog_products.go +++ b/core/models/catalog_products.go @@ -1,18 +1,38 @@ package models import ( - "context" - "database/sql" + "database/sql/driver" + "net/http" "time" - "github.com/jmoiron/sqlx" + "github.com/nyaruka/gocommon/httpx" "github.com/nyaruka/gocommon/uuids" + "github.com/nyaruka/goflow/flows" + "github.com/nyaruka/goflow/flows/engine" + "github.com/nyaruka/mailroom/core/goflow" + "github.com/nyaruka/mailroom/runtime" "github.com/nyaruka/null" "github.com/pkg/errors" ) type CatalogID null.Int +func (i CatalogID) MarshalJSON() ([]byte, error) { + return null.Int(i).MarshalJSON() +} + +func (i *CatalogID) UnmarshalJSON(b []byte) error { + return null.UnmarshalInt(b, (*null.Int)(i)) +} + +func (i CatalogID) Value() (driver.Value, error) { + return null.Int(i).Value() +} + +func (i *CatalogID) Scan(value interface{}) error { + return null.ScanInt(value, (*null.Int)(i)) +} + // CatalogProduct represents a product catalog from Whatsapp channels. type CatalogProduct struct { c struct { @@ -38,24 +58,50 @@ func (c *CatalogProduct) IsActive() bool { return c.c.IsActive } func (c *CatalogProduct) ChannelID() ChannelID { return c.c.ChannelID } func (c *CatalogProduct) OrgID() OrgID { return c.c.OrgID } -const getActiveCatalogSQL = ` -SELECT - id, uuid, facebook_catalog_id, name, created_on, modified_on, is_active, channel_id, org_id -FROM public.wpp_products_catalog -WHERE channel_id = $1 AND is_active = true -` - -// GetActiveCatalogFromChannel returns the active catalog from the given channel -func GetActiveCatalogFromChannel(ctx context.Context, db sqlx.DB, channelID ChannelID) (*CatalogProduct, error) { - var catalog CatalogProduct - - err := db.GetContext(ctx, &catalog.c, getActiveCatalogSQL, channelID) - if err != nil { - if err == sql.ErrNoRows { - return nil, nil - } - return nil, errors.Wrapf(err, "error getting active catalog for channelID: %d", channelID) +type MsgCatalog struct { + e struct { + ID CatalogID `json:"id,omitempty"` + ChannelUUID uuids.UUID `json:"uuid,omitempty"` + OrgID OrgID `json:"org_id,omitempty"` + Name string `json:"name,omitempty"` + Config map[string]string `json:"config,omitempty"` + Type string `json:"type,omitempty"` + } +} + +func (c *MsgCatalog) ChannelUUID() uuids.UUID { return c.e.ChannelUUID } +func (c *MsgCatalog) Name() string { return c.e.Name } +func (c *MsgCatalog) Type() string { return c.e.Type } + +func init() { + goflow.RegisterMsgCatalogServiceFactory(msgCatalogServiceFactory) +} + +func msgCatalogServiceFactory(c *runtime.Config) engine.MsgCatalogServiceFactory { + return func(session flows.Session, msgCatalog *flows.MsgCatalog) (flows.MsgCatalogService, error) { + return msgCatalog.Asset().(*MsgCatalog).AsService(c, msgCatalog) + } +} + +func (e *MsgCatalog) AsService(cfg *runtime.Config, msgCatalog *flows.MsgCatalog) (MsgCatalogService, error) { + httpClient, httpRetries, _ := goflow.HTTP(cfg) + + initFunc := msgCatalogServices["msg_catalog"] + if initFunc != nil { + return initFunc(cfg, httpClient, httpRetries, msgCatalog, e.e.Config) } - return &catalog, nil + return nil, errors.Errorf("unrecognized product catalog '%s'", e.e.Name) +} + +type MsgCatalogServiceFunc func(*runtime.Config, *http.Client, *httpx.RetryConfig, *flows.MsgCatalog, map[string]string) (MsgCatalogService, error) + +var msgCatalogServices = map[string]MsgCatalogServiceFunc{} + +type MsgCatalogService interface { + flows.MsgCatalogService +} + +func RegisterMsgCatalogService(name string, initFunc MsgCatalogServiceFunc) { + msgCatalogServices[name] = initFunc } diff --git a/core/models/catalog_products_test.go b/core/models/catalog_products_test.go index ff25b6f6e..daa69b431 100644 --- a/core/models/catalog_products_test.go +++ b/core/models/catalog_products_test.go @@ -1,60 +1,51 @@ package models_test -import ( - "testing" - - "github.com/nyaruka/mailroom/core/models" - "github.com/nyaruka/mailroom/testsuite" - "github.com/nyaruka/mailroom/testsuite/testdata" - "github.com/stretchr/testify/assert" -) - -func TestCatalogProducts(t *testing.T) { - ctx, _, db, _ := testsuite.Get() - defer testsuite.Reset(testsuite.ResetDB) - - _, err := db.Exec(catalogProductDDL) - if err != nil { - t.Fatal(err) - } - - _, err = db.Exec(`INSERT INTO public.wpp_products_catalog - (uuid, facebook_catalog_id, "name", created_on, modified_on, is_active, channel_id, org_id) - VALUES('2be9092a-1c97-4b24-906f-f0fbe3e1e93e', '123456789', 'Catalog Dummy', now(), now(), true, $1, $2); - `, testdata.Org2Channel.ID, testdata.Org2.ID) - assert.NoError(t, err) - - ctp, err := models.GetActiveCatalogFromChannel(ctx, *db, testdata.Org2Channel.ID) - if err != nil { - t.Fatal(err) - } - assert.Equal(t, true, ctp.IsActive()) - - _, err = db.Exec(`INSERT INTO public.wpp_products_catalog - (uuid, facebook_catalog_id, "name", created_on, modified_on, is_active, channel_id, org_id) - VALUES('9bbe354d-cea6-408b-ba89-9ce28999da3f', '1234567891', 'Catalog Dummy2', now(), now(), false, $1, $2); - `, 123, testdata.Org2.ID) - assert.NoError(t, err) - - ctpn, err := models.GetActiveCatalogFromChannel(ctx, *db, 123) - if err != nil { - t.Fatal(err) - } - assert.Nil(t, ctpn) -} - -const ( - catalogProductDDL = ` - CREATE TABLE public.wpp_products_catalog ( - id serial4 NOT NULL, - uuid uuid NOT NULL, - facebook_catalog_id varchar(30) NOT NULL, - "name" varchar(100) NOT NULL, - created_on timestamptz NOT NULL, - modified_on timestamptz NOT NULL, - is_active bool NOT NULL, - channel_id int4 NOT NULL, - org_id int4 NOT NULL - ); -` -) +// func TestCatalogProducts(t *testing.T) { +// ctx, _, db, _ := testsuite.Get() +// defer testsuite.Reset(testsuite.ResetDB) + +// _, err := db.Exec(catalogProductDDL) +// if err != nil { +// t.Fatal(err) +// } + +// _, err = db.Exec(`INSERT INTO public.wpp_products_catalog +// (uuid, facebook_catalog_id, "name", created_on, modified_on, is_active, channel_id, org_id) +// VALUES('2be9092a-1c97-4b24-906f-f0fbe3e1e93e', '123456789', 'Catalog Dummy', now(), now(), true, $1, $2); +// `, testdata.Org2Channel.ID, testdata.Org2.ID) +// assert.NoError(t, err) + +// ctp, err := models.GetActiveCatalogFromChannel(ctx, *db, testdata.Org2Channel.ID) +// if err != nil { +// t.Fatal(err) +// } +// assert.Equal(t, true, ctp.IsActive()) + +// _, err = db.Exec(`INSERT INTO public.wpp_products_catalog +// (uuid, facebook_catalog_id, "name", created_on, modified_on, is_active, channel_id, org_id) +// VALUES('9bbe354d-cea6-408b-ba89-9ce28999da3f', '1234567891', 'Catalog Dummy2', now(), now(), false, $1, $2); +// `, 123, testdata.Org2.ID) +// assert.NoError(t, err) + +// // ctpn, err := models.GetActiveCatalogFromChannel(ctx, *db, 123) +// // if err != nil { +// // t.Fatal(err) +// // } +// // assert.Nil(t, ctpn) +// } + +// const ( +// catalogProductDDL = ` +// CREATE TABLE public.wpp_products_catalog ( +// id serial4 NOT NULL, +// uuid uuid NOT NULL, +// facebook_catalog_id varchar(30) NOT NULL, +// "name" varchar(100) NOT NULL, +// created_on timestamptz NOT NULL, +// modified_on timestamptz NOT NULL, +// is_active bool NOT NULL, +// channel_id int4 NOT NULL, +// org_id int4 NOT NULL +// ); +// ` +// ) diff --git a/core/models/msgs.go b/core/models/msgs.go index 41288d869..76eb4346a 100644 --- a/core/models/msgs.go +++ b/core/models/msgs.go @@ -332,7 +332,7 @@ func NewOutgoingFlowMsg(rt *runtime.Runtime, org *Org, channel *Channel, session } // NewOutgoingFlowMsgCatalog creates an outgoing message for the passed in flow message -func NewOutgoingFlowMsgCatalog(rt *runtime.Runtime, org *Org, channel *Channel, session *Session, out *flows.MsgCatalog, createdOn time.Time) (*Msg, error) { +func NewOutgoingFlowMsgCatalog(rt *runtime.Runtime, org *Org, channel *Channel, session *Session, out *flows.MsgCatalogOut, createdOn time.Time) (*Msg, error) { return newOutgoingMsgCatalog(rt, org, channel, session.ContactID(), out, createdOn, session, NilBroadcastID) } @@ -428,7 +428,7 @@ func newOutgoingMsg(rt *runtime.Runtime, org *Org, channel *Channel, contactID C return msg, nil } -func newOutgoingMsgCatalog(rt *runtime.Runtime, org *Org, channel *Channel, contactID ContactID, msgCatalog *flows.MsgCatalog, createdOn time.Time, session *Session, broadcastID BroadcastID) (*Msg, error) { +func newOutgoingMsgCatalog(rt *runtime.Runtime, org *Org, channel *Channel, contactID ContactID, msgCatalog *flows.MsgCatalogOut, createdOn time.Time, session *Session, broadcastID BroadcastID) (*Msg, error) { msg := &Msg{} m := &msg.m m.UUID = msgCatalog.UUID() diff --git a/go.mod b/go.mod index c2fde7976..64f171435 100644 --- a/go.mod +++ b/go.mod @@ -70,4 +70,4 @@ go 1.17 replace github.com/nyaruka/gocommon => github.com/Ilhasoft/gocommon v1.16.2-weni -replace github.com/nyaruka/goflow => github.com/weni-ai/goflow v0.3.0-msg-catalog-goflow-0.144.3-develop +replace github.com/nyaruka/goflow => github.com/weni-ai/goflow v0.3.0-goflow-0.144.3-catalog-4-develop diff --git a/go.sum b/go.sum index 1e16e1f2e..21d6b997f 100644 --- a/go.sum +++ b/go.sum @@ -204,8 +204,8 @@ github.com/tj/assert v0.0.0-20171129193455-018094318fb0/go.mod h1:mZ9/Rh9oLWpLLD github.com/tj/go-elastic v0.0.0-20171221160941-36157cbbebc2/go.mod h1:WjeM0Oo1eNAjXGDx2yma7uG2XoyRZTq1uv3M/o7imD0= github.com/tj/go-kinesis v0.0.0-20171128231115-08b17f58cb1b/go.mod h1:/yhzCV0xPfx6jb1bBgRFjl5lytqVqZXEaeqWP8lTEao= github.com/tj/go-spin v1.1.0/go.mod h1:Mg1mzmePZm4dva8Qz60H2lHwmJ2loum4VIrLgVnKwh4= -github.com/weni-ai/goflow v0.3.0-msg-catalog-goflow-0.144.3-develop h1:l0TiYEnl1KYcwsQSEnptiGJkMEUMUvs+UsjWEIB2leY= -github.com/weni-ai/goflow v0.3.0-msg-catalog-goflow-0.144.3-develop/go.mod h1:o0xaVWP9qNcauBSlcNLa79Fm2oCPV+BDpheFRa/D40c= +github.com/weni-ai/goflow v0.3.0-goflow-0.144.3-catalog-4-develop h1:ALfKEMS+VZMfXEfzCCXb1trjWE8ZzBS8k1o/xaUXIS4= +github.com/weni-ai/goflow v0.3.0-goflow-0.144.3-catalog-4-develop/go.mod h1:o0xaVWP9qNcauBSlcNLa79Fm2oCPV+BDpheFRa/D40c= go.opencensus.io v0.22.5/go.mod h1:5pWMHQbX5EPX2/62yrJeAkowc+lfs/XD7Uxpq3pI6kk= golang.org/x/crypto v0.0.0-20180904163835-0709b304e793/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w= diff --git a/services/external/weni/service.go b/services/external/weni/service.go new file mode 100644 index 000000000..177d1073a --- /dev/null +++ b/services/external/weni/service.go @@ -0,0 +1,235 @@ +package catalogs + +import ( + "context" + "database/sql" + "encoding/json" + "fmt" + "net/http" + "strconv" + "sync" + "time" + + "github.com/jmoiron/sqlx" + "github.com/nyaruka/gocommon/httpx" + "github.com/nyaruka/gocommon/uuids" + "github.com/nyaruka/goflow/assets" + "github.com/nyaruka/goflow/flows" + "github.com/nyaruka/goflow/utils" + "github.com/nyaruka/mailroom/core/goflow" + "github.com/nyaruka/mailroom/core/models" + "github.com/nyaruka/mailroom/runtime" + "github.com/nyaruka/mailroom/services/external/openai/chatgpt" + "github.com/nyaruka/mailroom/services/external/weni/sentenx" + "github.com/nyaruka/mailroom/services/external/weni/wenigpt" + "github.com/pkg/errors" +) + +const ( + serviceType = "msg_catalog" +) + +var db *sqlx.DB +var mu = &sync.Mutex{} + +func initDB(dbURL string) error { + mu.Lock() + defer mu.Unlock() + if db == nil { + newDB, err := sqlx.Open("postgres", dbURL) + if err != nil { + return errors.Wrap(err, "unable to open database connection") + } + SetDB(newDB) + } + return nil +} + +func SetDB(newDB *sqlx.DB) { + db = newDB +} + +func init() { + models.RegisterMsgCatalogService(serviceType, NewService) +} + +type service struct { + rtConfig *runtime.Config + restClient *http.Client + redactor utils.Redactor +} + +func NewService(rtCfg *runtime.Config, httpClient *http.Client, httpRetries *httpx.RetryConfig, msgCatalog *flows.MsgCatalog, config map[string]string) (models.MsgCatalogService, error) { + + if err := initDB(rtCfg.DB); err != nil { + return nil, err + } + + return &service{ + rtConfig: rtCfg, + restClient: httpClient, + redactor: utils.NewRedactor(flows.RedactionMask), + }, nil +} + +func (s *service) Call(session flows.Session, params assets.MsgCatalogParam, logHTTP flows.HTTPLogCallback) (*flows.MsgCatalogCall, error) { + callResult := &flows.MsgCatalogCall{} + + content := params.ProductSearch + productList, err := GetProductListFromWeniGPT(s.rtConfig, content) + if err != nil { + return nil, err + } + channelUUID := params.ChannelUUID + channel, err := ChannelIDForChannelUUID(db, channelUUID) + if err != nil { + return nil, err + } + catalog, err := GetActiveCatalogFromChannel(db, channel.ID()) + if err != nil { + return nil, err + } + channelThreshold := channel.ConfigValue("threshold", "1.5") + searchThreshold, err := strconv.ParseFloat(channelThreshold, 64) + if err != nil { + return nil, err + } + + productRetailerIDS := []string{} + + for _, product := range productList { + searchResult, err := GetProductListFromSentenX(product, catalog.FacebookCatalogID(), searchThreshold, s.rtConfig) + if err != nil { + return nil, errors.Wrapf(err, "on iterate to search products on sentenx") + } + for _, prod := range searchResult { + productRetailerIDS = append(productRetailerIDS, prod["product_retailer_id"]) + } + } + + callResult.ProductRetailerIDS = productRetailerIDS + + return callResult, nil +} + +// ChannelIDForChannelUUID returns the channel id for the passed in channel UUID if any +func ChannelIDForChannelUUID(db *sqlx.DB, channelUUID uuids.UUID) (models.Channel, error) { + ctx, cancel := context.WithTimeout(context.Background(), time.Second*30) + defer cancel() + var channel models.Channel + err := db.GetContext(ctx, &channel, `SELECT * FROM channels_channel WHERE uuid = $1 AND is_active = TRUE`, channelUUID) + if err != nil { + return models.Channel{}, errors.Wrapf(err, "no channel found with uuid: %s", channelUUID) + } + return channel, nil +} + +func GetProductListFromWeniGPT(rtConfig *runtime.Config, content string) ([]string, error) { + httpClient, httpRetries, _ := goflow.HTTP(rtConfig) + weniGPTClient := wenigpt.NewClient(httpClient, httpRetries, rtConfig.WeniGPTBaseURL, rtConfig.WeniGPTAuthToken, rtConfig.WeniGPTCookie) + + prompt := fmt.Sprintf(`Give me an unformatted JSON list containing strings with the name of each product taken from the user prompt. Never repeat the same product. Always use this pattern: {\"products\": []}. Request: %s. Response:`, content) + + dr := wenigpt.NewWenigptRequest( + prompt, + 0, + 0.0, + 0.0, + true, + wenigpt.DefaultStopSequences, + ) + + response, _, err := weniGPTClient.WeniGPTRequest(dr) + if err != nil { + return nil, errors.Wrapf(err, "error on wewnigpt call fot list products") + } + + productsJson := response.Output.Text + + var products map[string][]string + err = json.Unmarshal([]byte(productsJson), &products) + if err != nil { + return nil, errors.Wrapf(err, "error on unmarshalling product list") + } + return products["products"], nil +} + +const getActiveCatalogSQL = ` +SELECT + id, uuid, facebook_catalog_id, name, created_on, modified_on, is_active, channel_id, org_id +FROM public.wpp_products_catalog +WHERE channel_id = $1 AND is_active = true +` + +// GetActiveCatalogFromChannel returns the active catalog from the given channel +func GetActiveCatalogFromChannel(db *sqlx.DB, channelID models.ChannelID) (*models.CatalogProduct, error) { + var catalog models.CatalogProduct + + ctx, cancel := context.WithTimeout(context.Background(), time.Second*30) + defer cancel() + + err := db.GetContext(ctx, &catalog, getActiveCatalogSQL, channelID) + if err != nil { + if err == sql.ErrNoRows { + return nil, nil + } + return nil, errors.Wrapf(err, "error getting active catalog for channelID: %d", channelID) + } + + return &catalog, nil +} + +func GetProductListFromSentenX(productSearch string, catalogID string, threshold float64, rtConfig *runtime.Config) ([]map[string]string, error) { + client := sentenx.NewClient(http.DefaultClient, nil, rtConfig.SentenXBaseURL) + + searchParams := sentenx.NewSearchRequest(productSearch, catalogID, threshold) + + searchResponse, _, err := client.SearchProducts(searchParams) + if err != nil { + return nil, err + } + + pmap := []map[string]string{} + for _, p := range searchResponse.Products { + mapElement := map[string]string{"product_retailer_id": p.ProductRetailerID} + pmap = append(pmap, mapElement) + } + + return pmap, nil +} + +func GetProductListFromChatGPT(ctx context.Context, rt *runtime.Runtime, content string) ([]string, error) { + httpClient, httpRetries, _ := goflow.HTTP(rt.Config) + chatGPTClient := chatgpt.NewClient(httpClient, httpRetries, rt.Config.ChatGPTBaseURL, rt.Config.ChatGPTKey) + + prompt1 := chatgpt.ChatCompletionMessage{ + Role: chatgpt.ChatMessageRoleSystem, + Content: "Give me an unformatted JSON list containing strings with the name of each product taken from the user prompt.", + } + prompt2 := chatgpt.ChatCompletionMessage{ + Role: chatgpt.ChatMessageRoleSystem, + Content: "Never repeat the same product.", + } + prompt3 := chatgpt.ChatCompletionMessage{ + Role: chatgpt.ChatMessageRoleSystem, + Content: "Always use this pattern: {\"products\": []}", + } + question := chatgpt.ChatCompletionMessage{ + Role: chatgpt.ChatMessageRoleUser, + Content: content, + } + completionRequest := chatgpt.NewChatCompletionRequest([]chatgpt.ChatCompletionMessage{prompt1, prompt2, prompt3, question}) + response, _, err := chatGPTClient.CreateChatCompletion(completionRequest) + if err != nil { + return nil, errors.Wrapf(err, "error on chatgpt call for list products") + } + + productsJson := response.Choices[0].Message.Content + + var products map[string][]string + err = json.Unmarshal([]byte(productsJson), &products) + if err != nil { + return nil, errors.Wrapf(err, "error on unmarshalling product list") + } + return products["products"], nil +}