mirror of
https://github.com/abhinavxd/libredesk.git
synced 2025-11-02 04:53:41 +00:00
- Update all SQL queries to add missing columns - Update the create conversation API to allow setting the initiator of a conversation. For example, we might want to use this API to create a conversation on behalf of a customer, with the first message coming from the customer instead of the agent. This param allows this. - Minor refactors and clean up - Tidy go.mod - Rename structs to reflect purpose - Create focus structs for scanning JSON payloads for clarity.
86 lines
3.1 KiB
Go
86 lines
3.1 KiB
Go
// Package search provides search functionality.
|
|
package search
|
|
|
|
import (
|
|
"embed"
|
|
|
|
"github.com/abhinavxd/libredesk/internal/dbutil"
|
|
"github.com/abhinavxd/libredesk/internal/envelope"
|
|
models "github.com/abhinavxd/libredesk/internal/search/models"
|
|
"github.com/jmoiron/sqlx"
|
|
"github.com/knadh/go-i18n"
|
|
"github.com/zerodha/logf"
|
|
)
|
|
|
|
var (
|
|
//go:embed queries.sql
|
|
efs embed.FS
|
|
)
|
|
|
|
// Manager is the search manager
|
|
type Manager struct {
|
|
q queries
|
|
lo *logf.Logger
|
|
i18n *i18n.I18n
|
|
}
|
|
|
|
// Opts contains the options for creating a new search manager
|
|
type Opts struct {
|
|
DB *sqlx.DB
|
|
Lo *logf.Logger
|
|
I18n *i18n.I18n
|
|
}
|
|
|
|
// queries contains all the prepared queries
|
|
type queries struct {
|
|
SearchConversationsByRefNum *sqlx.Stmt `query:"search-conversations-by-reference-number"`
|
|
SearchConversationsByContactEmail *sqlx.Stmt `query:"search-conversations-by-contact-email"`
|
|
SearchMessages *sqlx.Stmt `query:"search-messages"`
|
|
SearchContacts *sqlx.Stmt `query:"search-contacts"`
|
|
}
|
|
|
|
// New creates a new search manager
|
|
func New(opts Opts) (*Manager, error) {
|
|
var q queries
|
|
if err := dbutil.ScanSQLFile("queries.sql", &q, opts.DB, efs); err != nil {
|
|
return nil, err
|
|
}
|
|
return &Manager{q: q, lo: opts.Lo, i18n: opts.I18n}, nil
|
|
}
|
|
|
|
// Conversations searches conversations based on the query
|
|
func (s *Manager) Conversations(query string) ([]models.ConversationResult, error) {
|
|
var refNumResults = make([]models.ConversationResult, 0)
|
|
if err := s.q.SearchConversationsByRefNum.Select(&refNumResults, query); err != nil {
|
|
s.lo.Error("error searching conversations", "error", err)
|
|
return nil, envelope.NewError(envelope.GeneralError, s.i18n.Ts("globals.messages.errorSearching", "name", s.i18n.Ts("globals.terms.conversation")), nil)
|
|
}
|
|
|
|
var emailResults = make([]models.ConversationResult, 0)
|
|
if err := s.q.SearchConversationsByContactEmail.Select(&emailResults, query); err != nil {
|
|
s.lo.Error("error searching conversations", "error", err)
|
|
return nil, envelope.NewError(envelope.GeneralError, s.i18n.Ts("globals.messages.errorSearching", "name", s.i18n.Ts("globals.terms.conversation")), nil)
|
|
}
|
|
return append(refNumResults, emailResults...), nil
|
|
}
|
|
|
|
// Messages searches messages based on the query
|
|
func (s *Manager) Messages(query string) ([]models.MessageResult, error) {
|
|
var results = make([]models.MessageResult, 0)
|
|
if err := s.q.SearchMessages.Select(&results, query); err != nil {
|
|
s.lo.Error("error searching messages", "error", err)
|
|
return nil, envelope.NewError(envelope.GeneralError, s.i18n.Ts("globals.messages.errorSearching", "name", s.i18n.Ts("globals.terms.message")), nil)
|
|
}
|
|
return results, nil
|
|
}
|
|
|
|
// Contacts searches contacts based on the query
|
|
func (s *Manager) Contacts(query string) ([]models.ContactResult, error) {
|
|
var results = make([]models.ContactResult, 0)
|
|
if err := s.q.SearchContacts.Select(&results, query); err != nil {
|
|
s.lo.Error("error searching contacts", "error", err)
|
|
return nil, envelope.NewError(envelope.GeneralError, s.i18n.Ts("globals.messages.errorSearching", "name", s.i18n.Ts("globals.terms.contact")), nil)
|
|
}
|
|
return results, nil
|
|
}
|