2023-06-08 23:52:45 +00:00
|
|
|
package activity
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"database/sql"
|
|
|
|
"encoding/json"
|
|
|
|
"errors"
|
2023-08-11 17:28:46 +00:00
|
|
|
"strconv"
|
2023-06-08 23:52:45 +00:00
|
|
|
|
|
|
|
"github.com/ethereum/go-ethereum/common"
|
|
|
|
"github.com/ethereum/go-ethereum/event"
|
|
|
|
"github.com/ethereum/go-ethereum/log"
|
|
|
|
|
2023-08-11 11:28:45 +00:00
|
|
|
"github.com/status-im/status-go/multiaccounts/accounts"
|
2023-07-05 13:59:39 +00:00
|
|
|
"github.com/status-im/status-go/services/wallet/async"
|
2023-08-11 17:28:46 +00:00
|
|
|
"github.com/status-im/status-go/services/wallet/collectibles"
|
2023-06-08 23:52:45 +00:00
|
|
|
w_common "github.com/status-im/status-go/services/wallet/common"
|
2023-08-11 17:28:46 +00:00
|
|
|
"github.com/status-im/status-go/services/wallet/thirdparty"
|
2023-06-13 09:25:23 +00:00
|
|
|
"github.com/status-im/status-go/services/wallet/token"
|
2023-06-08 23:52:45 +00:00
|
|
|
"github.com/status-im/status-go/services/wallet/walletevent"
|
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
|
|
|
// FilterResponse json is sent as a message in the EventActivityFilteringDone event
|
2023-06-22 11:28:35 +00:00
|
|
|
EventActivityFilteringDone walletevent.EventType = "wallet-activity-filtering-done"
|
2023-08-11 17:28:46 +00:00
|
|
|
EventActivityFilteringUpdate walletevent.EventType = "wallet-activity-filtering-entries-updated"
|
2023-06-22 11:28:35 +00:00
|
|
|
EventActivityGetRecipientsDone walletevent.EventType = "wallet-activity-get-recipients-result"
|
|
|
|
EventActivityGetOldestTimestampDone walletevent.EventType = "wallet-activity-get-oldest-timestamp-result"
|
|
|
|
)
|
|
|
|
|
2023-08-10 19:30:17 +00:00
|
|
|
var (
|
|
|
|
filterTask = async.TaskType{
|
|
|
|
ID: 1,
|
|
|
|
Policy: async.ReplacementPolicyCancelOld,
|
2023-07-24 22:54:53 +00:00
|
|
|
}
|
2023-08-10 19:30:17 +00:00
|
|
|
getRecipientsTask = async.TaskType{
|
|
|
|
ID: 2,
|
|
|
|
Policy: async.ReplacementPolicyIgnoreNew,
|
|
|
|
}
|
|
|
|
getOldestTimestampTask = async.TaskType{
|
|
|
|
ID: 3,
|
|
|
|
Policy: async.ReplacementPolicyCancelOld,
|
|
|
|
}
|
|
|
|
)
|
2023-07-24 22:54:53 +00:00
|
|
|
|
2023-06-08 23:52:45 +00:00
|
|
|
type Service struct {
|
2023-06-13 09:25:23 +00:00
|
|
|
db *sql.DB
|
2023-08-11 11:28:45 +00:00
|
|
|
accountsDB *accounts.Database
|
2023-08-11 17:28:46 +00:00
|
|
|
tokenManager token.ManagerInterface
|
|
|
|
collectibles collectibles.ManagerInterface
|
2023-06-13 09:25:23 +00:00
|
|
|
eventFeed *event.Feed
|
|
|
|
|
2023-08-10 19:30:17 +00:00
|
|
|
scheduler *async.MultiClientScheduler
|
2023-06-08 23:52:45 +00:00
|
|
|
}
|
|
|
|
|
2023-08-11 17:28:46 +00:00
|
|
|
func NewService(db *sql.DB, tokenManager token.ManagerInterface, collectibles collectibles.ManagerInterface, eventFeed *event.Feed, accountsDb *accounts.Database) *Service {
|
2023-06-08 23:52:45 +00:00
|
|
|
return &Service{
|
2023-06-13 09:25:23 +00:00
|
|
|
db: db,
|
2023-08-11 11:28:45 +00:00
|
|
|
accountsDB: accountsDb,
|
2023-06-13 09:25:23 +00:00
|
|
|
tokenManager: tokenManager,
|
2023-08-11 17:28:46 +00:00
|
|
|
collectibles: collectibles,
|
2023-06-13 09:25:23 +00:00
|
|
|
eventFeed: eventFeed,
|
2023-08-10 19:30:17 +00:00
|
|
|
scheduler: async.NewMultiClientScheduler(),
|
2023-06-08 23:52:45 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
type ErrorCode = int
|
|
|
|
|
|
|
|
const (
|
|
|
|
ErrorCodeSuccess ErrorCode = iota + 1
|
2023-06-22 11:28:35 +00:00
|
|
|
ErrorCodeTaskCanceled
|
|
|
|
ErrorCodeFailed
|
2023-06-08 23:52:45 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
type FilterResponse struct {
|
2023-06-11 14:22:25 +00:00
|
|
|
Activities []Entry `json:"activities"`
|
|
|
|
Offset int `json:"offset"`
|
|
|
|
// Used to indicate that there might be more entries that were not returned
|
|
|
|
// based on a simple heuristic
|
|
|
|
HasMore bool `json:"hasMore"`
|
|
|
|
ErrorCode ErrorCode `json:"errorCode"`
|
2023-06-08 23:52:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// FilterActivityAsync allows only one filter task to run at a time
|
|
|
|
// and it cancels the current one if a new one is started
|
|
|
|
// All calls will trigger an EventActivityFilteringDone event with the result of the filtering
|
2023-07-24 22:54:53 +00:00
|
|
|
func (s *Service) FilterActivityAsync(requestID int32, addresses []common.Address, chainIDs []w_common.ChainID, filter Filter, offset int, limit int) {
|
2023-08-10 19:30:17 +00:00
|
|
|
s.scheduler.Enqueue(requestID, filterTask, func(ctx context.Context) (interface{}, error) {
|
2023-06-22 11:28:35 +00:00
|
|
|
activities, err := getActivityEntries(ctx, s.getDeps(), addresses, chainIDs, filter, offset, limit)
|
|
|
|
return activities, err
|
2023-07-05 13:59:39 +00:00
|
|
|
}, func(result interface{}, taskType async.TaskType, err error) {
|
2023-06-22 11:28:35 +00:00
|
|
|
res := FilterResponse{
|
|
|
|
ErrorCode: ErrorCodeFailed,
|
|
|
|
}
|
2023-06-08 23:52:45 +00:00
|
|
|
|
2023-07-05 13:59:39 +00:00
|
|
|
if errors.Is(err, context.Canceled) || errors.Is(err, async.ErrTaskOverwritten) {
|
2023-06-22 11:28:35 +00:00
|
|
|
res.ErrorCode = ErrorCodeTaskCanceled
|
|
|
|
} else if err == nil {
|
|
|
|
activities := result.([]Entry)
|
|
|
|
res.Activities = activities
|
|
|
|
res.Offset = offset
|
|
|
|
res.HasMore = len(activities) == limit
|
|
|
|
res.ErrorCode = ErrorCodeSuccess
|
|
|
|
}
|
|
|
|
|
2023-07-24 22:54:53 +00:00
|
|
|
s.sendResponseEvent(&requestID, EventActivityFilteringDone, res, err)
|
2023-08-11 17:28:46 +00:00
|
|
|
|
|
|
|
// Report details post-response to ensure updates have a match
|
|
|
|
if res.Activities != nil {
|
|
|
|
go s.lazyLoadDetails(requestID, res.Activities)
|
|
|
|
}
|
2023-06-22 11:28:35 +00:00
|
|
|
})
|
|
|
|
}
|
2023-06-08 23:52:45 +00:00
|
|
|
|
2023-08-24 12:23:40 +00:00
|
|
|
func (s *Service) GetMultiTxDetails(ctx context.Context, multiTxID int) (*EntryDetails, error) {
|
|
|
|
return getMultiTxDetails(ctx, s.db, multiTxID)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *Service) GetTxDetails(ctx context.Context, id string) (*EntryDetails, error) {
|
|
|
|
return getTxDetails(ctx, s.db, id)
|
|
|
|
}
|
|
|
|
|
2023-08-11 17:28:46 +00:00
|
|
|
// lazyLoadDetails check if any of the entries have details that are not loaded then fetch and emit result
|
|
|
|
func (s *Service) lazyLoadDetails(requestID int32, entries []Entry) {
|
|
|
|
res := make([]*EntryData, 0)
|
|
|
|
var err error
|
|
|
|
ids := make([]thirdparty.CollectibleUniqueID, 0)
|
|
|
|
entriesForIds := make([]*Entry, 0)
|
|
|
|
for i := range entries {
|
|
|
|
if !entries[i].isNFT() {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
id := entries[i].anyIdentity()
|
|
|
|
if id == nil {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
ids = append(ids, *id)
|
|
|
|
entriesForIds = append(entriesForIds, &entries[i])
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(ids) == 0 {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
log.Debug("wallet.activity.Service lazyLoadDetails", "requestID", requestID, "entries.len", len(entries), "ids.len", len(ids))
|
|
|
|
|
|
|
|
colData, err := s.collectibles.FetchAssetsByCollectibleUniqueID(ids)
|
|
|
|
if err != nil {
|
|
|
|
log.Error("Error fetching collectible details", "error", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, col := range colData {
|
|
|
|
data := &EntryData{
|
|
|
|
NftName: w_common.NewAndSet(col.CollectibleData.Name),
|
|
|
|
NftURL: w_common.NewAndSet(col.CollectibleData.ImageURL),
|
|
|
|
}
|
|
|
|
for i := range ids {
|
|
|
|
if col.CollectibleData.ID.Same(&ids[i]) {
|
|
|
|
if entriesForIds[i].payloadType == MultiTransactionPT {
|
|
|
|
data.ID = w_common.NewAndSet(entriesForIds[i].id)
|
|
|
|
} else {
|
|
|
|
data.Transaction = entriesForIds[i].transaction
|
|
|
|
}
|
|
|
|
|
|
|
|
data.PayloadType = entriesForIds[i].payloadType
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
res = append(res, data)
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(res) > 0 {
|
|
|
|
s.sendResponseEvent(&requestID, EventActivityFilteringUpdate, res, err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-06-22 11:28:35 +00:00
|
|
|
type GetRecipientsResponse struct {
|
|
|
|
Addresses []common.Address `json:"addresses"`
|
|
|
|
Offset int `json:"offset"`
|
|
|
|
// Used to indicate that there might be more entries that were not returned
|
|
|
|
// based on a simple heuristic
|
|
|
|
HasMore bool `json:"hasMore"`
|
|
|
|
ErrorCode ErrorCode `json:"errorCode"`
|
|
|
|
}
|
2023-06-08 23:52:45 +00:00
|
|
|
|
2023-06-22 11:28:35 +00:00
|
|
|
// GetRecipientsAsync returns true if a task is already running or scheduled due to a previous call; meaning that
|
|
|
|
// this call won't receive an answer but client should rely on the answer from the previous call.
|
|
|
|
// If no task is already scheduled false will be returned
|
2023-07-24 22:54:53 +00:00
|
|
|
func (s *Service) GetRecipientsAsync(requestID int32, offset int, limit int) bool {
|
2023-08-10 19:30:17 +00:00
|
|
|
return s.scheduler.Enqueue(requestID, getRecipientsTask, func(ctx context.Context) (interface{}, error) {
|
2023-06-22 11:28:35 +00:00
|
|
|
var err error
|
|
|
|
result := &GetRecipientsResponse{
|
|
|
|
Offset: offset,
|
|
|
|
ErrorCode: ErrorCodeSuccess,
|
|
|
|
}
|
|
|
|
result.Addresses, result.HasMore, err = GetRecipients(ctx, s.db, offset, limit)
|
|
|
|
return result, err
|
2023-07-05 13:59:39 +00:00
|
|
|
}, func(result interface{}, taskType async.TaskType, err error) {
|
2023-06-22 11:28:35 +00:00
|
|
|
res := result.(*GetRecipientsResponse)
|
2023-07-05 13:59:39 +00:00
|
|
|
if errors.Is(err, context.Canceled) || errors.Is(err, async.ErrTaskOverwritten) {
|
2023-06-22 11:28:35 +00:00
|
|
|
res.ErrorCode = ErrorCodeTaskCanceled
|
|
|
|
} else if err != nil {
|
|
|
|
res.ErrorCode = ErrorCodeFailed
|
|
|
|
}
|
2023-06-11 14:22:25 +00:00
|
|
|
|
2023-07-24 22:54:53 +00:00
|
|
|
s.sendResponseEvent(&requestID, EventActivityGetRecipientsDone, result, err)
|
2023-06-22 11:28:35 +00:00
|
|
|
})
|
|
|
|
}
|
2023-06-08 23:52:45 +00:00
|
|
|
|
2023-06-22 11:28:35 +00:00
|
|
|
type GetOldestTimestampResponse struct {
|
|
|
|
Timestamp int64 `json:"timestamp"`
|
|
|
|
ErrorCode ErrorCode `json:"errorCode"`
|
|
|
|
}
|
2023-06-08 23:52:45 +00:00
|
|
|
|
2023-07-24 22:54:53 +00:00
|
|
|
func (s *Service) GetOldestTimestampAsync(requestID int32, addresses []common.Address) {
|
2023-08-10 19:30:17 +00:00
|
|
|
s.scheduler.Enqueue(requestID, getOldestTimestampTask, func(ctx context.Context) (interface{}, error) {
|
2023-06-22 11:28:35 +00:00
|
|
|
timestamp, err := GetOldestTimestamp(ctx, s.db, addresses)
|
|
|
|
return timestamp, err
|
2023-07-05 13:59:39 +00:00
|
|
|
}, func(result interface{}, taskType async.TaskType, err error) {
|
2023-06-22 11:28:35 +00:00
|
|
|
res := GetOldestTimestampResponse{
|
|
|
|
ErrorCode: ErrorCodeFailed,
|
2023-06-08 23:52:45 +00:00
|
|
|
}
|
|
|
|
|
2023-07-05 13:59:39 +00:00
|
|
|
if errors.Is(err, context.Canceled) || errors.Is(err, async.ErrTaskOverwritten) {
|
2023-06-22 11:28:35 +00:00
|
|
|
res.ErrorCode = ErrorCodeTaskCanceled
|
2023-06-08 23:52:45 +00:00
|
|
|
} else if err == nil {
|
2023-06-22 11:28:35 +00:00
|
|
|
res.Timestamp = result.(int64)
|
2023-06-08 23:52:45 +00:00
|
|
|
res.ErrorCode = ErrorCodeSuccess
|
|
|
|
}
|
|
|
|
|
2023-07-24 22:54:53 +00:00
|
|
|
s.sendResponseEvent(&requestID, EventActivityGetOldestTimestampDone, res, err)
|
2023-06-22 11:28:35 +00:00
|
|
|
})
|
2023-06-08 23:52:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (s *Service) Stop() {
|
2023-06-22 11:28:35 +00:00
|
|
|
s.scheduler.Stop()
|
2023-06-08 23:52:45 +00:00
|
|
|
}
|
|
|
|
|
2023-06-13 09:25:23 +00:00
|
|
|
func (s *Service) getDeps() FilterDependencies {
|
|
|
|
return FilterDependencies{
|
2023-08-11 11:28:45 +00:00
|
|
|
db: s.db,
|
|
|
|
accountsDb: s.accountsDB,
|
2023-06-13 09:25:23 +00:00
|
|
|
tokenSymbol: func(t Token) string {
|
|
|
|
info := s.tokenManager.LookupTokenIdentity(uint64(t.ChainID), t.Address, t.TokenType == Native)
|
|
|
|
if info == nil {
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
return info.Symbol
|
|
|
|
},
|
|
|
|
tokenFromSymbol: func(chainID *w_common.ChainID, symbol string) *Token {
|
|
|
|
var cID *uint64
|
|
|
|
if chainID != nil {
|
|
|
|
cID = new(uint64)
|
|
|
|
*cID = uint64(*chainID)
|
|
|
|
}
|
|
|
|
t, detectedNative := s.tokenManager.LookupToken(cID, symbol)
|
|
|
|
if t == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
tokenType := Native
|
|
|
|
if !detectedNative {
|
|
|
|
tokenType = Erc20
|
|
|
|
}
|
|
|
|
return &Token{
|
|
|
|
TokenType: tokenType,
|
|
|
|
ChainID: w_common.ChainID(t.ChainID),
|
|
|
|
Address: t.Address,
|
|
|
|
}
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-07-24 22:54:53 +00:00
|
|
|
func (s *Service) sendResponseEvent(requestID *int32, eventType walletevent.EventType, payloadObj interface{}, resErr error) {
|
2023-06-22 11:28:35 +00:00
|
|
|
payload, err := json.Marshal(payloadObj)
|
2023-06-08 23:52:45 +00:00
|
|
|
if err != nil {
|
2023-07-04 12:01:45 +00:00
|
|
|
log.Error("Error marshaling response: %v; result error: %w", err, resErr)
|
|
|
|
} else {
|
|
|
|
err = resErr
|
2023-06-08 23:52:45 +00:00
|
|
|
}
|
|
|
|
|
2023-08-11 17:28:46 +00:00
|
|
|
requestIDStr := "nil"
|
|
|
|
if requestID != nil {
|
|
|
|
requestIDStr = strconv.Itoa(int(*requestID))
|
|
|
|
}
|
|
|
|
log.Debug("wallet.api.activity.Service RESPONSE", "requestID", requestIDStr, "eventType", eventType, "error", err, "payload.len", len(payload))
|
2023-06-13 09:25:23 +00:00
|
|
|
|
2023-07-24 22:54:53 +00:00
|
|
|
event := walletevent.Event{
|
2023-06-22 11:28:35 +00:00
|
|
|
Type: eventType,
|
2023-06-08 23:52:45 +00:00
|
|
|
Message: string(payload),
|
2023-07-24 22:54:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if requestID != nil {
|
|
|
|
event.RequestID = new(int)
|
|
|
|
*event.RequestID = int(*requestID)
|
|
|
|
}
|
|
|
|
|
|
|
|
s.eventFeed.Send(event)
|
2023-06-08 23:52:45 +00:00
|
|
|
}
|