2020-11-18 09:16:51 +00:00
|
|
|
package communities
|
|
|
|
|
|
|
|
import (
|
|
|
|
"crypto/ecdsa"
|
|
|
|
"database/sql"
|
2021-05-18 19:32:15 +00:00
|
|
|
"fmt"
|
2022-03-21 14:18:36 +00:00
|
|
|
"os"
|
2022-04-22 07:42:22 +00:00
|
|
|
"sort"
|
2021-07-02 18:07:49 +00:00
|
|
|
"strings"
|
2022-03-21 14:18:36 +00:00
|
|
|
"sync"
|
2021-01-11 10:32:51 +00:00
|
|
|
"time"
|
2020-11-18 09:16:51 +00:00
|
|
|
|
2022-03-21 14:18:36 +00:00
|
|
|
"github.com/anacrolix/torrent"
|
|
|
|
"github.com/anacrolix/torrent/bencode"
|
|
|
|
"github.com/anacrolix/torrent/metainfo"
|
2020-11-18 09:16:51 +00:00
|
|
|
"github.com/golang/protobuf/proto"
|
|
|
|
|
|
|
|
"github.com/google/uuid"
|
|
|
|
"github.com/pkg/errors"
|
|
|
|
"go.uber.org/zap"
|
|
|
|
|
|
|
|
"github.com/status-im/status-go/eth-node/crypto"
|
|
|
|
"github.com/status-im/status-go/eth-node/types"
|
2022-03-21 14:18:36 +00:00
|
|
|
"github.com/status-im/status-go/params"
|
2021-01-11 10:32:51 +00:00
|
|
|
"github.com/status-im/status-go/protocol/common"
|
2022-10-14 09:26:10 +00:00
|
|
|
"github.com/status-im/status-go/protocol/encryption"
|
2021-01-11 10:32:51 +00:00
|
|
|
"github.com/status-im/status-go/protocol/ens"
|
2020-11-18 09:16:51 +00:00
|
|
|
"github.com/status-im/status-go/protocol/protobuf"
|
2021-01-11 10:32:51 +00:00
|
|
|
"github.com/status-im/status-go/protocol/requests"
|
2022-03-21 14:18:36 +00:00
|
|
|
"github.com/status-im/status-go/protocol/transport"
|
|
|
|
"github.com/status-im/status-go/signal"
|
2020-11-18 09:16:51 +00:00
|
|
|
)
|
|
|
|
|
2022-03-21 14:18:36 +00:00
|
|
|
var defaultAnnounceList = [][]string{
|
|
|
|
{"udp://tracker.opentrackr.org:1337/announce"},
|
|
|
|
{"udp://tracker.openbittorrent.com:6969/announce"},
|
|
|
|
}
|
|
|
|
var pieceLength = 100 * 1024
|
|
|
|
|
2022-10-07 10:24:50 +00:00
|
|
|
var ErrTorrentTimedout = errors.New("torrent has timed out")
|
|
|
|
|
2020-11-18 09:16:51 +00:00
|
|
|
type Manager struct {
|
2022-03-21 14:18:36 +00:00
|
|
|
persistence *Persistence
|
2022-10-14 09:26:10 +00:00
|
|
|
encryptor *encryption.Protocol
|
2022-03-21 14:18:36 +00:00
|
|
|
ensSubscription chan []*ens.VerificationRecord
|
|
|
|
subscriptions []chan *Subscription
|
|
|
|
ensVerifier *ens.Verifier
|
2022-10-14 09:26:10 +00:00
|
|
|
identity *ecdsa.PrivateKey
|
2022-03-21 14:18:36 +00:00
|
|
|
logger *zap.Logger
|
2022-10-06 20:51:04 +00:00
|
|
|
stdoutLogger *zap.Logger
|
2022-03-21 14:18:36 +00:00
|
|
|
transport *transport.Transport
|
|
|
|
quit chan struct{}
|
|
|
|
torrentConfig *params.TorrentConfig
|
|
|
|
torrentClient *torrent.Client
|
|
|
|
historyArchiveTasksWaitGroup sync.WaitGroup
|
|
|
|
historyArchiveTasks map[string]chan struct{}
|
|
|
|
torrentTasks map[string]metainfo.Hash
|
2022-09-29 11:50:23 +00:00
|
|
|
historyArchiveDownloadTasks map[string]chan struct{}
|
2020-11-18 09:16:51 +00:00
|
|
|
}
|
|
|
|
|
2022-10-14 09:26:10 +00:00
|
|
|
func NewManager(identity *ecdsa.PrivateKey, db *sql.DB, encryptor *encryption.Protocol, logger *zap.Logger, verifier *ens.Verifier, transport *transport.Transport, torrentConfig *params.TorrentConfig) (*Manager, error) {
|
2021-01-11 10:32:51 +00:00
|
|
|
if identity == nil {
|
|
|
|
return nil, errors.New("empty identity")
|
|
|
|
}
|
|
|
|
|
2020-11-18 09:16:51 +00:00
|
|
|
var err error
|
|
|
|
if logger == nil {
|
|
|
|
if logger, err = zap.NewDevelopment(); err != nil {
|
|
|
|
return nil, errors.Wrap(err, "failed to create a logger")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-10-06 20:51:04 +00:00
|
|
|
stdoutLogger, err := zap.NewDevelopment()
|
|
|
|
if err != nil {
|
|
|
|
return nil, errors.Wrap(err, "failed to create archive logger")
|
|
|
|
}
|
|
|
|
|
2021-01-11 10:32:51 +00:00
|
|
|
manager := &Manager{
|
2022-09-29 11:50:23 +00:00
|
|
|
logger: logger,
|
|
|
|
stdoutLogger: stdoutLogger,
|
|
|
|
encryptor: encryptor,
|
|
|
|
identity: identity,
|
|
|
|
quit: make(chan struct{}),
|
|
|
|
transport: transport,
|
|
|
|
torrentConfig: torrentConfig,
|
|
|
|
historyArchiveTasks: make(map[string]chan struct{}),
|
|
|
|
torrentTasks: make(map[string]metainfo.Hash),
|
|
|
|
historyArchiveDownloadTasks: make(map[string]chan struct{}),
|
2020-11-18 09:16:51 +00:00
|
|
|
persistence: &Persistence{
|
|
|
|
logger: logger,
|
|
|
|
db: db,
|
|
|
|
},
|
2021-01-11 10:32:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if verifier != nil {
|
|
|
|
|
|
|
|
sub := verifier.Subscribe()
|
|
|
|
manager.ensSubscription = sub
|
|
|
|
manager.ensVerifier = verifier
|
|
|
|
}
|
|
|
|
|
|
|
|
return manager, nil
|
2020-11-18 09:16:51 +00:00
|
|
|
}
|
|
|
|
|
2022-10-06 20:51:04 +00:00
|
|
|
func (m *Manager) LogStdout(msg string, fields ...zap.Field) {
|
|
|
|
m.stdoutLogger.Info(msg, fields...)
|
|
|
|
m.logger.Debug(msg, fields...)
|
|
|
|
}
|
|
|
|
|
2022-04-22 07:42:22 +00:00
|
|
|
type archiveMDSlice []*archiveMetadata
|
|
|
|
|
|
|
|
type archiveMetadata struct {
|
|
|
|
hash string
|
|
|
|
from uint64
|
|
|
|
}
|
|
|
|
|
|
|
|
func (md archiveMDSlice) Len() int {
|
|
|
|
return len(md)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (md archiveMDSlice) Swap(i, j int) {
|
|
|
|
md[i], md[j] = md[j], md[i]
|
|
|
|
}
|
|
|
|
|
|
|
|
func (md archiveMDSlice) Less(i, j int) bool {
|
|
|
|
return md[i].from > md[j].from
|
|
|
|
}
|
|
|
|
|
2020-11-18 09:16:51 +00:00
|
|
|
type Subscription struct {
|
2022-09-15 07:59:02 +00:00
|
|
|
Community *Community
|
|
|
|
Invitations []*protobuf.CommunityInvitation
|
|
|
|
CreatingHistoryArchivesSignal *signal.CreatingHistoryArchivesSignal
|
|
|
|
HistoryArchivesCreatedSignal *signal.HistoryArchivesCreatedSignal
|
|
|
|
NoHistoryArchivesCreatedSignal *signal.NoHistoryArchivesCreatedSignal
|
|
|
|
HistoryArchivesSeedingSignal *signal.HistoryArchivesSeedingSignal
|
|
|
|
HistoryArchivesUnseededSignal *signal.HistoryArchivesUnseededSignal
|
|
|
|
HistoryArchiveDownloadedSignal *signal.HistoryArchiveDownloadedSignal
|
2022-12-01 14:02:17 +00:00
|
|
|
DownloadingHistoryArchivesStartedSignal *signal.DownloadingHistoryArchivesStartedSignal
|
2022-09-15 07:59:02 +00:00
|
|
|
DownloadingHistoryArchivesFinishedSignal *signal.DownloadingHistoryArchivesFinishedSignal
|
2021-01-11 10:32:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type CommunityResponse struct {
|
|
|
|
Community *Community `json:"community"`
|
|
|
|
Changes *CommunityChanges `json:"changes"`
|
2020-11-18 09:16:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (m *Manager) Subscribe() chan *Subscription {
|
|
|
|
subscription := make(chan *Subscription, 100)
|
|
|
|
m.subscriptions = append(m.subscriptions, subscription)
|
|
|
|
return subscription
|
|
|
|
}
|
|
|
|
|
2021-01-11 10:32:51 +00:00
|
|
|
func (m *Manager) Start() error {
|
|
|
|
if m.ensVerifier != nil {
|
|
|
|
m.runENSVerificationLoop()
|
|
|
|
}
|
2022-03-21 14:18:36 +00:00
|
|
|
|
|
|
|
if m.torrentConfig != nil && m.torrentConfig.Enabled {
|
|
|
|
err := m.StartTorrentClient()
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2021-01-11 10:32:51 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *Manager) runENSVerificationLoop() {
|
|
|
|
go func() {
|
|
|
|
for {
|
|
|
|
select {
|
|
|
|
case <-m.quit:
|
|
|
|
m.logger.Debug("quitting ens verification loop")
|
|
|
|
return
|
|
|
|
case records, more := <-m.ensSubscription:
|
|
|
|
if !more {
|
|
|
|
m.logger.Debug("no more ens records, quitting")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
m.logger.Info("received records", zap.Any("records", records))
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
}
|
|
|
|
|
2020-11-18 09:16:51 +00:00
|
|
|
func (m *Manager) Stop() error {
|
2021-01-11 10:32:51 +00:00
|
|
|
close(m.quit)
|
2020-11-18 09:16:51 +00:00
|
|
|
for _, c := range m.subscriptions {
|
|
|
|
close(c)
|
|
|
|
}
|
2022-03-21 14:18:36 +00:00
|
|
|
m.StopTorrentClient()
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *Manager) SetTorrentConfig(config *params.TorrentConfig) {
|
|
|
|
m.torrentConfig = config
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *Manager) StartTorrentClient() error {
|
|
|
|
if m.torrentConfig == nil {
|
|
|
|
return fmt.Errorf("Can't start torrent client: missing torrentConfig")
|
|
|
|
}
|
|
|
|
|
|
|
|
if m.TorrentClientStarted() {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
config := torrent.NewDefaultClientConfig()
|
|
|
|
config.SetListenAddr(":" + fmt.Sprint(m.torrentConfig.Port))
|
|
|
|
config.Seed = true
|
|
|
|
|
|
|
|
config.DataDir = m.torrentConfig.DataDir
|
|
|
|
|
|
|
|
if _, err := os.Stat(m.torrentConfig.DataDir); os.IsNotExist(err) {
|
|
|
|
err := os.MkdirAll(m.torrentConfig.DataDir, 0700)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
m.logger.Info("Starting torrent client", zap.Any("port", m.torrentConfig.Port))
|
|
|
|
// Instantiating the client will make it bootstrap and listen eagerly,
|
|
|
|
// so no go routine is needed here
|
|
|
|
client, err := torrent.NewClient(config)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
m.torrentClient = client
|
2020-11-18 09:16:51 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2022-03-21 14:18:36 +00:00
|
|
|
func (m *Manager) StopTorrentClient() []error {
|
|
|
|
if m.TorrentClientStarted() {
|
|
|
|
m.StopHistoryArchiveTasksIntervals()
|
|
|
|
m.logger.Info("Stopping torrent client")
|
|
|
|
errs := m.torrentClient.Close()
|
|
|
|
if len(errs) > 0 {
|
|
|
|
return errs
|
|
|
|
}
|
|
|
|
m.torrentClient = nil
|
|
|
|
}
|
|
|
|
return make([]error, 0)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *Manager) TorrentClientStarted() bool {
|
|
|
|
return m.torrentClient != nil
|
|
|
|
}
|
|
|
|
|
2020-11-18 09:16:51 +00:00
|
|
|
func (m *Manager) publish(subscription *Subscription) {
|
|
|
|
for _, s := range m.subscriptions {
|
|
|
|
select {
|
|
|
|
case s <- subscription:
|
|
|
|
default:
|
|
|
|
m.logger.Warn("subscription channel full, dropping message")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *Manager) All() ([]*Community, error) {
|
2022-10-14 09:26:10 +00:00
|
|
|
return m.persistence.AllCommunities(&m.identity.PublicKey)
|
2020-11-18 09:16:51 +00:00
|
|
|
}
|
|
|
|
|
2022-06-02 12:17:52 +00:00
|
|
|
type KnownCommunitiesResponse struct {
|
|
|
|
ContractCommunities []string `json:"contractCommunities"`
|
|
|
|
Descriptions map[string]*Community `json:"communities"`
|
|
|
|
UnknownCommunities []string `json:"unknownCommunities"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *Manager) GetStoredDescriptionForCommunities(communityIDs []types.HexBytes) (response *KnownCommunitiesResponse, err error) {
|
|
|
|
response = &KnownCommunitiesResponse{
|
|
|
|
Descriptions: make(map[string]*Community),
|
|
|
|
}
|
|
|
|
|
|
|
|
for i := range communityIDs {
|
|
|
|
communityID := communityIDs[i].String()
|
|
|
|
var community *Community
|
|
|
|
community, err = m.GetByID(communityIDs[i])
|
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
response.ContractCommunities = append(response.ContractCommunities, communityID)
|
|
|
|
|
|
|
|
if community != nil {
|
|
|
|
response.Descriptions[community.IDString()] = community
|
|
|
|
} else {
|
|
|
|
response.UnknownCommunities = append(response.UnknownCommunities, communityID)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2020-11-18 09:16:51 +00:00
|
|
|
func (m *Manager) Joined() ([]*Community, error) {
|
2022-10-14 09:26:10 +00:00
|
|
|
return m.persistence.JoinedCommunities(&m.identity.PublicKey)
|
2020-11-18 09:16:51 +00:00
|
|
|
}
|
|
|
|
|
2022-09-20 19:57:39 +00:00
|
|
|
func (m *Manager) Spectated() ([]*Community, error) {
|
2022-10-14 09:26:10 +00:00
|
|
|
return m.persistence.SpectatedCommunities(&m.identity.PublicKey)
|
2022-09-20 19:57:39 +00:00
|
|
|
}
|
|
|
|
|
2021-08-06 15:40:23 +00:00
|
|
|
func (m *Manager) JoinedAndPendingCommunitiesWithRequests() ([]*Community, error) {
|
2022-10-14 09:26:10 +00:00
|
|
|
return m.persistence.JoinedAndPendingCommunitiesWithRequests(&m.identity.PublicKey)
|
2021-08-06 15:40:23 +00:00
|
|
|
}
|
|
|
|
|
2022-04-11 16:14:08 +00:00
|
|
|
func (m *Manager) DeletedCommunities() ([]*Community, error) {
|
2022-10-14 09:26:10 +00:00
|
|
|
return m.persistence.DeletedCommunities(&m.identity.PublicKey)
|
2022-04-11 16:14:08 +00:00
|
|
|
}
|
|
|
|
|
2020-11-18 09:16:51 +00:00
|
|
|
func (m *Manager) Created() ([]*Community, error) {
|
2022-10-14 09:26:10 +00:00
|
|
|
return m.persistence.CreatedCommunities(&m.identity.PublicKey)
|
2020-11-18 09:16:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// CreateCommunity takes a description, generates an ID for it, saves it and return it
|
2022-08-19 12:51:21 +00:00
|
|
|
func (m *Manager) CreateCommunity(request *requests.CreateCommunity, publish bool) (*Community, error) {
|
2021-05-18 19:32:15 +00:00
|
|
|
|
|
|
|
description, err := request.ToCommunityDescription()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
description.Members = make(map[string]*protobuf.CommunityMember)
|
2022-10-14 09:26:10 +00:00
|
|
|
description.Members[common.PubkeyToHex(&m.identity.PublicKey)] = &protobuf.CommunityMember{Roles: []protobuf.CommunityMember_Roles{protobuf.CommunityMember_ROLE_ALL}}
|
2021-05-18 19:32:15 +00:00
|
|
|
|
|
|
|
err = ValidateCommunityDescription(description)
|
2020-11-18 09:16:51 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
description.Clock = 1
|
|
|
|
|
|
|
|
key, err := crypto.GenerateKey()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
config := Config{
|
|
|
|
ID: &key.PublicKey,
|
|
|
|
PrivateKey: key,
|
|
|
|
Logger: m.logger,
|
|
|
|
Joined: true,
|
2022-10-14 09:26:10 +00:00
|
|
|
MemberIdentity: &m.identity.PublicKey,
|
2020-11-18 09:16:51 +00:00
|
|
|
CommunityDescription: description,
|
|
|
|
}
|
2020-12-17 14:36:09 +00:00
|
|
|
community, err := New(config)
|
2020-11-18 09:16:51 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2021-01-11 10:32:51 +00:00
|
|
|
// We join any community we create
|
|
|
|
community.Join()
|
|
|
|
|
2020-12-17 14:36:09 +00:00
|
|
|
err = m.persistence.SaveCommunity(community)
|
2020-11-18 09:16:51 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2022-08-19 12:51:21 +00:00
|
|
|
if publish {
|
|
|
|
m.publish(&Subscription{Community: community})
|
|
|
|
}
|
2020-11-18 09:16:51 +00:00
|
|
|
|
2020-12-17 14:36:09 +00:00
|
|
|
return community, nil
|
2020-11-18 09:16:51 +00:00
|
|
|
}
|
|
|
|
|
2022-09-29 11:50:23 +00:00
|
|
|
func (m *Manager) DeleteCommunity(id types.HexBytes) error {
|
|
|
|
err := m.persistence.DeleteCommunity(id)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return m.persistence.DeleteCommunitySettings(id)
|
|
|
|
}
|
|
|
|
|
2022-04-15 18:20:12 +00:00
|
|
|
// EditCommunity takes a description, updates the community with the description,
|
2021-05-18 19:32:15 +00:00
|
|
|
// saves it and returns it
|
|
|
|
func (m *Manager) EditCommunity(request *requests.EditCommunity) (*Community, error) {
|
|
|
|
community, err := m.GetByID(request.CommunityID)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
if community == nil {
|
|
|
|
return nil, ErrOrgNotFound
|
|
|
|
}
|
|
|
|
if !community.IsAdmin() {
|
|
|
|
return nil, errors.New("not an admin")
|
|
|
|
}
|
|
|
|
|
|
|
|
newDescription, err := request.ToCommunityDescription()
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("Can't create community description: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// If permissions weren't explicitly set on original request, use existing ones
|
|
|
|
if newDescription.Permissions.Access == protobuf.CommunityPermissions_UNKNOWN_ACCESS {
|
|
|
|
newDescription.Permissions.Access = community.config.CommunityDescription.Permissions.Access
|
|
|
|
}
|
2022-04-15 18:20:12 +00:00
|
|
|
// Use existing images for the entries that were not updated
|
2021-05-18 19:32:15 +00:00
|
|
|
// NOTE: This will NOT allow deletion of the community image; it will need to
|
|
|
|
// be handled separately.
|
2022-04-15 18:20:12 +00:00
|
|
|
for imageName := range community.config.CommunityDescription.Identity.Images {
|
|
|
|
_, exists := newDescription.Identity.Images[imageName]
|
|
|
|
if !exists {
|
|
|
|
// If no image was set in ToCommunityDescription then Images is nil.
|
|
|
|
if newDescription.Identity.Images == nil {
|
|
|
|
newDescription.Identity.Images = make(map[string]*protobuf.IdentityImage)
|
|
|
|
}
|
|
|
|
newDescription.Identity.Images[imageName] = community.config.CommunityDescription.Identity.Images[imageName]
|
|
|
|
}
|
2021-05-18 19:32:15 +00:00
|
|
|
}
|
|
|
|
// TODO: handle delete image (if needed)
|
|
|
|
|
|
|
|
err = ValidateCommunityDescription(newDescription)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// Edit the community values
|
|
|
|
community.Edit(newDescription)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
err = m.persistence.SaveCommunity(community)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
m.publish(&Subscription{Community: community})
|
|
|
|
|
|
|
|
return community, nil
|
|
|
|
}
|
|
|
|
|
2021-01-11 10:32:51 +00:00
|
|
|
func (m *Manager) ExportCommunity(id types.HexBytes) (*ecdsa.PrivateKey, error) {
|
|
|
|
community, err := m.GetByID(id)
|
2020-11-18 09:16:51 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2021-05-18 19:32:15 +00:00
|
|
|
if !community.IsAdmin() {
|
2020-11-18 09:16:51 +00:00
|
|
|
return nil, errors.New("not an admin")
|
|
|
|
}
|
|
|
|
|
2020-12-17 14:36:09 +00:00
|
|
|
return community.config.PrivateKey, nil
|
2020-11-18 09:16:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (m *Manager) ImportCommunity(key *ecdsa.PrivateKey) (*Community, error) {
|
2020-12-17 14:36:09 +00:00
|
|
|
communityID := crypto.CompressPubkey(&key.PublicKey)
|
2020-11-18 09:16:51 +00:00
|
|
|
|
2022-10-14 09:26:10 +00:00
|
|
|
community, err := m.persistence.GetByID(&m.identity.PublicKey, communityID)
|
2020-11-18 09:16:51 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2020-12-17 14:36:09 +00:00
|
|
|
if community == nil {
|
|
|
|
description := &protobuf.CommunityDescription{
|
|
|
|
Permissions: &protobuf.CommunityPermissions{},
|
|
|
|
}
|
|
|
|
|
|
|
|
config := Config{
|
|
|
|
ID: &key.PublicKey,
|
|
|
|
PrivateKey: key,
|
|
|
|
Logger: m.logger,
|
|
|
|
Joined: true,
|
2022-10-14 09:26:10 +00:00
|
|
|
MemberIdentity: &m.identity.PublicKey,
|
2020-12-17 14:36:09 +00:00
|
|
|
CommunityDescription: description,
|
|
|
|
}
|
|
|
|
community, err = New(config)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
community.config.PrivateKey = key
|
|
|
|
}
|
|
|
|
|
2022-07-01 13:54:02 +00:00
|
|
|
community.Join()
|
2020-12-17 14:36:09 +00:00
|
|
|
err = m.persistence.SaveCommunity(community)
|
2020-11-18 09:16:51 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2020-12-17 14:36:09 +00:00
|
|
|
return community, nil
|
2020-11-18 09:16:51 +00:00
|
|
|
}
|
|
|
|
|
2022-08-19 12:51:21 +00:00
|
|
|
func (m *Manager) CreateChat(communityID types.HexBytes, chat *protobuf.CommunityChat, publish bool) (*Community, *CommunityChanges, error) {
|
2021-01-11 10:32:51 +00:00
|
|
|
community, err := m.GetByID(communityID)
|
2020-11-18 09:16:51 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, nil, err
|
|
|
|
}
|
2020-12-17 14:36:09 +00:00
|
|
|
if community == nil {
|
2020-11-18 09:16:51 +00:00
|
|
|
return nil, nil, ErrOrgNotFound
|
|
|
|
}
|
|
|
|
chatID := uuid.New().String()
|
2020-12-17 14:36:09 +00:00
|
|
|
changes, err := community.CreateChat(chatID, chat)
|
2020-11-18 09:16:51 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, nil, err
|
|
|
|
}
|
|
|
|
|
2020-12-17 14:36:09 +00:00
|
|
|
err = m.persistence.SaveCommunity(community)
|
2020-11-18 09:16:51 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// Advertise changes
|
2022-08-19 12:51:21 +00:00
|
|
|
if publish {
|
|
|
|
m.publish(&Subscription{Community: community})
|
|
|
|
}
|
2020-11-18 09:16:51 +00:00
|
|
|
|
2020-12-17 14:36:09 +00:00
|
|
|
return community, changes, nil
|
2020-11-18 09:16:51 +00:00
|
|
|
}
|
|
|
|
|
2021-06-01 12:13:17 +00:00
|
|
|
func (m *Manager) EditChat(communityID types.HexBytes, chatID string, chat *protobuf.CommunityChat) (*Community, *CommunityChanges, error) {
|
|
|
|
community, err := m.GetByID(communityID)
|
|
|
|
if err != nil {
|
|
|
|
return nil, nil, err
|
|
|
|
}
|
|
|
|
if community == nil {
|
|
|
|
return nil, nil, ErrOrgNotFound
|
|
|
|
}
|
2021-07-02 18:07:49 +00:00
|
|
|
|
|
|
|
// Remove communityID prefix from chatID if exists
|
|
|
|
if strings.HasPrefix(chatID, communityID.String()) {
|
|
|
|
chatID = strings.TrimPrefix(chatID, communityID.String())
|
|
|
|
}
|
|
|
|
|
2021-06-01 12:13:17 +00:00
|
|
|
changes, err := community.EditChat(chatID, chat)
|
|
|
|
if err != nil {
|
|
|
|
return nil, nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
err = m.persistence.SaveCommunity(community)
|
|
|
|
if err != nil {
|
|
|
|
return nil, nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// Advertise changes
|
|
|
|
m.publish(&Subscription{Community: community})
|
|
|
|
|
|
|
|
return community, changes, nil
|
|
|
|
}
|
|
|
|
|
2021-07-30 17:05:44 +00:00
|
|
|
func (m *Manager) DeleteChat(communityID types.HexBytes, chatID string) (*Community, *protobuf.CommunityDescription, error) {
|
|
|
|
community, err := m.GetByID(communityID)
|
|
|
|
if err != nil {
|
|
|
|
return nil, nil, err
|
|
|
|
}
|
|
|
|
if community == nil {
|
|
|
|
return nil, nil, ErrOrgNotFound
|
|
|
|
}
|
|
|
|
|
|
|
|
// Remove communityID prefix from chatID if exists
|
|
|
|
if strings.HasPrefix(chatID, communityID.String()) {
|
|
|
|
chatID = strings.TrimPrefix(chatID, communityID.String())
|
|
|
|
}
|
|
|
|
description, err := community.DeleteChat(chatID)
|
|
|
|
if err != nil {
|
|
|
|
return nil, nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
err = m.persistence.SaveCommunity(community)
|
|
|
|
if err != nil {
|
|
|
|
return nil, nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// Advertise changes
|
|
|
|
m.publish(&Subscription{Community: community})
|
|
|
|
|
|
|
|
return community, description, nil
|
|
|
|
}
|
|
|
|
|
2022-08-19 12:51:21 +00:00
|
|
|
func (m *Manager) CreateCategory(request *requests.CreateCommunityCategory, publish bool) (*Community, *CommunityChanges, error) {
|
2021-05-23 13:34:17 +00:00
|
|
|
community, err := m.GetByID(request.CommunityID)
|
|
|
|
if err != nil {
|
|
|
|
return nil, nil, err
|
|
|
|
}
|
|
|
|
if community == nil {
|
|
|
|
return nil, nil, ErrOrgNotFound
|
|
|
|
}
|
|
|
|
categoryID := uuid.New().String()
|
2021-07-02 18:07:49 +00:00
|
|
|
|
|
|
|
// Remove communityID prefix from chatID if exists
|
|
|
|
for i, cid := range request.ChatIDs {
|
|
|
|
if strings.HasPrefix(cid, request.CommunityID.String()) {
|
|
|
|
request.ChatIDs[i] = strings.TrimPrefix(cid, request.CommunityID.String())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-05-23 13:34:17 +00:00
|
|
|
changes, err := community.CreateCategory(categoryID, request.CategoryName, request.ChatIDs)
|
|
|
|
if err != nil {
|
|
|
|
return nil, nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
err = m.persistence.SaveCommunity(community)
|
|
|
|
if err != nil {
|
|
|
|
return nil, nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// Advertise changes
|
2022-08-19 12:51:21 +00:00
|
|
|
if publish {
|
|
|
|
m.publish(&Subscription{Community: community})
|
|
|
|
}
|
2021-05-23 13:34:17 +00:00
|
|
|
|
|
|
|
return community, changes, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *Manager) EditCategory(request *requests.EditCommunityCategory) (*Community, *CommunityChanges, error) {
|
|
|
|
community, err := m.GetByID(request.CommunityID)
|
|
|
|
if err != nil {
|
|
|
|
return nil, nil, err
|
|
|
|
}
|
|
|
|
if community == nil {
|
|
|
|
return nil, nil, ErrOrgNotFound
|
|
|
|
}
|
|
|
|
|
2021-07-02 18:07:49 +00:00
|
|
|
// Remove communityID prefix from chatID if exists
|
|
|
|
for i, cid := range request.ChatIDs {
|
|
|
|
if strings.HasPrefix(cid, request.CommunityID.String()) {
|
|
|
|
request.ChatIDs[i] = strings.TrimPrefix(cid, request.CommunityID.String())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-05-23 13:34:17 +00:00
|
|
|
changes, err := community.EditCategory(request.CategoryID, request.CategoryName, request.ChatIDs)
|
|
|
|
if err != nil {
|
|
|
|
return nil, nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
err = m.persistence.SaveCommunity(community)
|
|
|
|
if err != nil {
|
|
|
|
return nil, nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// Advertise changes
|
|
|
|
m.publish(&Subscription{Community: community})
|
|
|
|
|
|
|
|
return community, changes, nil
|
|
|
|
}
|
|
|
|
|
2022-09-02 08:36:07 +00:00
|
|
|
func (m *Manager) EditChatFirstMessageTimestamp(communityID types.HexBytes, chatID string, timestamp uint32) (*Community, *CommunityChanges, error) {
|
|
|
|
community, err := m.GetByID(communityID)
|
|
|
|
if err != nil {
|
|
|
|
return nil, nil, err
|
|
|
|
}
|
|
|
|
if community == nil {
|
|
|
|
return nil, nil, ErrOrgNotFound
|
|
|
|
}
|
|
|
|
|
|
|
|
// Remove communityID prefix from chatID if exists
|
|
|
|
if strings.HasPrefix(chatID, communityID.String()) {
|
|
|
|
chatID = strings.TrimPrefix(chatID, communityID.String())
|
|
|
|
}
|
|
|
|
|
|
|
|
changes, err := community.UpdateChatFirstMessageTimestamp(chatID, timestamp)
|
|
|
|
if err != nil {
|
|
|
|
return nil, nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
err = m.persistence.SaveCommunity(community)
|
|
|
|
if err != nil {
|
|
|
|
return nil, nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// Advertise changes
|
|
|
|
m.publish(&Subscription{Community: community})
|
|
|
|
|
|
|
|
return community, changes, nil
|
|
|
|
}
|
|
|
|
|
2021-05-23 13:34:17 +00:00
|
|
|
func (m *Manager) ReorderCategories(request *requests.ReorderCommunityCategories) (*Community, *CommunityChanges, error) {
|
|
|
|
community, err := m.GetByID(request.CommunityID)
|
|
|
|
if err != nil {
|
|
|
|
return nil, nil, err
|
|
|
|
}
|
|
|
|
if community == nil {
|
|
|
|
return nil, nil, ErrOrgNotFound
|
|
|
|
}
|
|
|
|
|
|
|
|
changes, err := community.ReorderCategories(request.CategoryID, request.Position)
|
|
|
|
if err != nil {
|
|
|
|
return nil, nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
err = m.persistence.SaveCommunity(community)
|
|
|
|
if err != nil {
|
|
|
|
return nil, nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// Advertise changes
|
|
|
|
m.publish(&Subscription{Community: community})
|
|
|
|
|
|
|
|
return community, changes, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *Manager) ReorderChat(request *requests.ReorderCommunityChat) (*Community, *CommunityChanges, error) {
|
|
|
|
community, err := m.GetByID(request.CommunityID)
|
|
|
|
if err != nil {
|
|
|
|
return nil, nil, err
|
|
|
|
}
|
|
|
|
if community == nil {
|
|
|
|
return nil, nil, ErrOrgNotFound
|
|
|
|
}
|
|
|
|
|
2021-07-02 18:07:49 +00:00
|
|
|
// Remove communityID prefix from chatID if exists
|
|
|
|
if strings.HasPrefix(request.ChatID, request.CommunityID.String()) {
|
|
|
|
request.ChatID = strings.TrimPrefix(request.ChatID, request.CommunityID.String())
|
|
|
|
}
|
|
|
|
|
2021-05-23 13:34:17 +00:00
|
|
|
changes, err := community.ReorderChat(request.CategoryID, request.ChatID, request.Position)
|
|
|
|
if err != nil {
|
|
|
|
return nil, nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
err = m.persistence.SaveCommunity(community)
|
|
|
|
if err != nil {
|
|
|
|
return nil, nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// Advertise changes
|
|
|
|
m.publish(&Subscription{Community: community})
|
|
|
|
|
|
|
|
return community, changes, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *Manager) DeleteCategory(request *requests.DeleteCommunityCategory) (*Community, *CommunityChanges, error) {
|
|
|
|
community, err := m.GetByID(request.CommunityID)
|
|
|
|
if err != nil {
|
|
|
|
return nil, nil, err
|
|
|
|
}
|
|
|
|
if community == nil {
|
|
|
|
return nil, nil, ErrOrgNotFound
|
|
|
|
}
|
|
|
|
|
|
|
|
changes, err := community.DeleteCategory(request.CategoryID)
|
|
|
|
if err != nil {
|
|
|
|
return nil, nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
err = m.persistence.SaveCommunity(community)
|
|
|
|
if err != nil {
|
|
|
|
return nil, nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// Advertise changes
|
|
|
|
m.publish(&Subscription{Community: community})
|
|
|
|
|
|
|
|
return community, changes, nil
|
|
|
|
}
|
|
|
|
|
2021-01-11 10:32:51 +00:00
|
|
|
func (m *Manager) HandleCommunityDescriptionMessage(signer *ecdsa.PublicKey, description *protobuf.CommunityDescription, payload []byte) (*CommunityResponse, error) {
|
2020-11-18 09:16:51 +00:00
|
|
|
id := crypto.CompressPubkey(signer)
|
2022-10-14 09:26:10 +00:00
|
|
|
community, err := m.persistence.GetByID(&m.identity.PublicKey, id)
|
2020-11-18 09:16:51 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2020-12-17 14:36:09 +00:00
|
|
|
if community == nil {
|
2020-11-18 09:16:51 +00:00
|
|
|
config := Config{
|
|
|
|
CommunityDescription: description,
|
|
|
|
Logger: m.logger,
|
|
|
|
MarshaledCommunityDescription: payload,
|
2022-10-14 09:26:10 +00:00
|
|
|
MemberIdentity: &m.identity.PublicKey,
|
2020-11-18 09:16:51 +00:00
|
|
|
ID: signer,
|
|
|
|
}
|
|
|
|
|
2020-12-17 14:36:09 +00:00
|
|
|
community, err = New(config)
|
2020-11-18 09:16:51 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-01-11 10:32:51 +00:00
|
|
|
changes, err := community.UpdateCommunityDescription(signer, description, payload)
|
2020-11-18 09:16:51 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2022-04-22 07:42:22 +00:00
|
|
|
hasCommunityArchiveInfo, err := m.persistence.HasCommunityArchiveInfo(community.ID())
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
cdMagnetlinkClock := community.config.CommunityDescription.ArchiveMagnetlinkClock
|
|
|
|
if !hasCommunityArchiveInfo {
|
|
|
|
err = m.persistence.SaveCommunityArchiveInfo(community.ID(), cdMagnetlinkClock, 0)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
magnetlinkClock, err := m.persistence.GetMagnetlinkMessageClock(community.ID())
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
if cdMagnetlinkClock > magnetlinkClock {
|
|
|
|
err = m.persistence.UpdateMagnetlinkMessageClock(community.ID(), cdMagnetlinkClock)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-10-14 09:26:10 +00:00
|
|
|
pkString := common.PubkeyToHex(&m.identity.PublicKey)
|
2021-01-11 10:32:51 +00:00
|
|
|
|
|
|
|
// If the community require membership, we set whether we should leave/join the community after a state change
|
2022-07-01 13:54:02 +00:00
|
|
|
if community.InvitationOnly() || community.OnRequest() || community.AcceptRequestToJoinAutomatically() {
|
2021-01-11 10:32:51 +00:00
|
|
|
if changes.HasNewMember(pkString) {
|
|
|
|
hasPendingRequest, err := m.persistence.HasPendingRequestsToJoinForUserAndCommunity(pkString, changes.Community.ID())
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
// If there's any pending request, we should join the community
|
|
|
|
// automatically
|
|
|
|
changes.ShouldMemberJoin = hasPendingRequest
|
|
|
|
}
|
|
|
|
|
|
|
|
if changes.HasMemberLeft(pkString) {
|
|
|
|
// If we joined previously the community, we should leave it
|
|
|
|
changes.ShouldMemberLeave = community.Joined()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-12-17 14:36:09 +00:00
|
|
|
err = m.persistence.SaveCommunity(community)
|
2020-11-18 09:16:51 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2021-01-11 10:32:51 +00:00
|
|
|
// We mark our requests as completed, though maybe we should mark
|
|
|
|
// any request for any user that has been added as completed
|
2022-10-14 09:26:10 +00:00
|
|
|
if err := m.markRequestToJoin(&m.identity.PublicKey, community); err != nil {
|
2021-01-11 10:32:51 +00:00
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
// Check if there's a change and we should be joining
|
|
|
|
|
|
|
|
return &CommunityResponse{
|
|
|
|
Community: community,
|
|
|
|
Changes: changes,
|
|
|
|
}, nil
|
2020-11-18 09:16:51 +00:00
|
|
|
}
|
|
|
|
|
2021-01-11 10:32:51 +00:00
|
|
|
// TODO: This is not fully implemented, we want to save the grant passed at
|
|
|
|
// this stage and make sure it's used when publishing.
|
|
|
|
func (m *Manager) HandleCommunityInvitation(signer *ecdsa.PublicKey, invitation *protobuf.CommunityInvitation, payload []byte) (*CommunityResponse, error) {
|
2020-11-18 09:16:51 +00:00
|
|
|
m.logger.Debug("Handling wrapped community description message")
|
|
|
|
|
2020-12-17 14:36:09 +00:00
|
|
|
community, err := m.HandleWrappedCommunityDescriptionMessage(payload)
|
2020-11-18 09:16:51 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// Save grant
|
|
|
|
|
2020-12-17 14:36:09 +00:00
|
|
|
return community, nil
|
2020-11-18 09:16:51 +00:00
|
|
|
}
|
|
|
|
|
2021-01-11 10:32:51 +00:00
|
|
|
// markRequestToJoin marks all the pending requests to join as completed
|
|
|
|
// if we are members
|
|
|
|
func (m *Manager) markRequestToJoin(pk *ecdsa.PublicKey, community *Community) error {
|
|
|
|
if community.HasMember(pk) {
|
|
|
|
return m.persistence.SetRequestToJoinState(common.PubkeyToHex(pk), community.ID(), RequestToJoinStateAccepted)
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2022-10-28 08:41:20 +00:00
|
|
|
func (m *Manager) markRequestToJoinAsCanceled(pk *ecdsa.PublicKey, community *Community) error {
|
|
|
|
return m.persistence.SetRequestToJoinState(common.PubkeyToHex(pk), community.ID(), RequestToJoinStateCanceled)
|
|
|
|
}
|
|
|
|
|
2021-06-30 13:29:43 +00:00
|
|
|
func (m *Manager) SetMuted(id types.HexBytes, muted bool) error {
|
|
|
|
return m.persistence.SetMuted(id, muted)
|
|
|
|
}
|
|
|
|
|
2022-10-28 08:41:20 +00:00
|
|
|
func (m *Manager) CancelRequestToJoin(request *requests.CancelRequestToJoinCommunity) (*RequestToJoin, *Community, error) {
|
|
|
|
dbRequest, err := m.persistence.GetRequestToJoin(request.ID)
|
|
|
|
if err != nil {
|
|
|
|
return nil, nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
community, err := m.GetByID(dbRequest.CommunityID)
|
|
|
|
if err != nil {
|
|
|
|
return nil, nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
pk, err := common.HexToPubkey(dbRequest.PublicKey)
|
|
|
|
if err != nil {
|
|
|
|
return nil, nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := m.markRequestToJoinAsCanceled(pk, community); err != nil {
|
|
|
|
return nil, nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
err = m.persistence.SaveCommunity(community)
|
|
|
|
if err != nil {
|
|
|
|
return nil, nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return dbRequest, community, nil
|
|
|
|
}
|
|
|
|
|
2021-01-11 10:32:51 +00:00
|
|
|
func (m *Manager) AcceptRequestToJoin(request *requests.AcceptRequestToJoinCommunity) (*Community, error) {
|
|
|
|
dbRequest, err := m.persistence.GetRequestToJoin(request.ID)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
community, err := m.GetByID(dbRequest.CommunityID)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
pk, err := common.HexToPubkey(dbRequest.PublicKey)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2022-07-01 13:54:02 +00:00
|
|
|
err = community.AddMember(pk)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := m.markRequestToJoin(pk, community); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
err = m.persistence.SaveCommunity(community)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
m.publish(&Subscription{Community: community})
|
|
|
|
|
|
|
|
return community, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *Manager) GetRequestToJoin(ID types.HexBytes) (*RequestToJoin, error) {
|
|
|
|
return m.persistence.GetRequestToJoin(ID)
|
2021-01-11 10:32:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (m *Manager) DeclineRequestToJoin(request *requests.DeclineRequestToJoinCommunity) error {
|
|
|
|
dbRequest, err := m.persistence.GetRequestToJoin(request.ID)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
return m.persistence.SetRequestToJoinState(dbRequest.PublicKey, dbRequest.CommunityID, RequestToJoinStateDeclined)
|
|
|
|
}
|
|
|
|
|
2022-10-28 08:41:20 +00:00
|
|
|
func (m *Manager) HandleCommunityCancelRequestToJoin(signer *ecdsa.PublicKey, request *protobuf.CommunityCancelRequestToJoin) (*RequestToJoin, error) {
|
|
|
|
community, err := m.persistence.GetByID(&m.identity.PublicKey, request.CommunityId)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
if community == nil {
|
|
|
|
return nil, ErrOrgNotFound
|
|
|
|
}
|
|
|
|
|
|
|
|
err = m.markRequestToJoinAsCanceled(signer, community)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
requestToJoin, err := m.persistence.GetRequestToJoinByPk(common.PubkeyToHex(signer), community.ID(), RequestToJoinStateCanceled)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return requestToJoin, nil
|
|
|
|
}
|
|
|
|
|
2021-01-11 10:32:51 +00:00
|
|
|
func (m *Manager) HandleCommunityRequestToJoin(signer *ecdsa.PublicKey, request *protobuf.CommunityRequestToJoin) (*RequestToJoin, error) {
|
2022-10-14 09:26:10 +00:00
|
|
|
community, err := m.persistence.GetByID(&m.identity.PublicKey, request.CommunityId)
|
2021-01-11 10:32:51 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
if community == nil {
|
|
|
|
return nil, ErrOrgNotFound
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := community.ValidateRequestToJoin(signer, request); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
requestToJoin := &RequestToJoin{
|
|
|
|
PublicKey: common.PubkeyToHex(signer),
|
|
|
|
Clock: request.Clock,
|
|
|
|
ENSName: request.EnsName,
|
|
|
|
CommunityID: request.CommunityId,
|
|
|
|
State: RequestToJoinStatePending,
|
|
|
|
}
|
|
|
|
|
|
|
|
requestToJoin.CalculateID()
|
|
|
|
|
|
|
|
if err := m.persistence.SaveRequestToJoin(requestToJoin); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2022-08-22 10:10:31 +00:00
|
|
|
// If user is already a member, then accept request automatically
|
|
|
|
// It may happen when member removes itself from community and then tries to rejoin
|
|
|
|
// More specifically, CommunityRequestToLeave may be delivered later than CommunityRequestToJoin, or not delivered at all
|
|
|
|
acceptAutomatically := community.AcceptRequestToJoinAutomatically() || community.HasMember(signer)
|
|
|
|
if acceptAutomatically {
|
2022-07-01 13:54:02 +00:00
|
|
|
err = m.markRequestToJoin(signer, community)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
requestToJoin.State = RequestToJoinStateAccepted
|
|
|
|
}
|
|
|
|
|
2021-01-11 10:32:51 +00:00
|
|
|
return requestToJoin, nil
|
|
|
|
}
|
|
|
|
|
2022-07-01 13:54:02 +00:00
|
|
|
func (m *Manager) HandleCommunityRequestToJoinResponse(signer *ecdsa.PublicKey, request *protobuf.CommunityRequestToJoinResponse) error {
|
|
|
|
|
2022-10-14 09:26:10 +00:00
|
|
|
community, err := m.persistence.GetByID(&m.identity.PublicKey, request.CommunityId)
|
2022-07-01 13:54:02 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if community == nil {
|
|
|
|
return ErrOrgNotFound
|
|
|
|
}
|
|
|
|
|
|
|
|
communityDescriptionBytes, err := proto.Marshal(request.Community)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
// We need to wrap `request.Community` in an `ApplicationMetadataMessage`
|
|
|
|
// of type `CommunityDescription` because `UpdateCommunityDescription` expects this.
|
|
|
|
//
|
|
|
|
// This is merely for marsheling/unmarsheling, hence we attaching a `Signature`
|
|
|
|
// is not needed.
|
|
|
|
metadataMessage := &protobuf.ApplicationMetadataMessage{
|
|
|
|
Payload: communityDescriptionBytes,
|
|
|
|
Type: protobuf.ApplicationMetadataMessage_COMMUNITY_DESCRIPTION,
|
|
|
|
}
|
|
|
|
|
|
|
|
appMetadataMsg, err := proto.Marshal(metadataMessage)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
_, err = community.UpdateCommunityDescription(signer, request.Community, appMetadataMsg)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
err = m.persistence.SaveCommunity(community)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
if request.Accepted {
|
2022-10-14 09:26:10 +00:00
|
|
|
return m.markRequestToJoin(&m.identity.PublicKey, community)
|
2022-07-01 13:54:02 +00:00
|
|
|
}
|
2022-10-14 09:26:10 +00:00
|
|
|
return m.persistence.SetRequestToJoinState(common.PubkeyToHex(&m.identity.PublicKey), community.ID(), RequestToJoinStateDeclined)
|
2022-07-01 13:54:02 +00:00
|
|
|
}
|
|
|
|
|
2022-08-22 10:10:31 +00:00
|
|
|
func (m *Manager) HandleCommunityRequestToLeave(signer *ecdsa.PublicKey, proto *protobuf.CommunityRequestToLeave) error {
|
|
|
|
requestToLeave := NewRequestToLeave(common.PubkeyToHex(signer), proto)
|
|
|
|
if err := m.persistence.SaveRequestToLeave(requestToLeave); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
// Ensure corresponding requestToJoin clock is older than requestToLeave
|
|
|
|
requestToJoin, err := m.persistence.GetRequestToJoin(requestToLeave.ID)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if requestToJoin.Clock > requestToLeave.Clock {
|
|
|
|
return ErrOldRequestToLeave
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2021-01-11 10:32:51 +00:00
|
|
|
func (m *Manager) HandleWrappedCommunityDescriptionMessage(payload []byte) (*CommunityResponse, error) {
|
2020-11-18 09:16:51 +00:00
|
|
|
m.logger.Debug("Handling wrapped community description message")
|
|
|
|
|
|
|
|
applicationMetadataMessage := &protobuf.ApplicationMetadataMessage{}
|
|
|
|
err := proto.Unmarshal(payload, applicationMetadataMessage)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
if applicationMetadataMessage.Type != protobuf.ApplicationMetadataMessage_COMMUNITY_DESCRIPTION {
|
|
|
|
return nil, ErrInvalidMessage
|
|
|
|
}
|
|
|
|
signer, err := applicationMetadataMessage.RecoverKey()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
description := &protobuf.CommunityDescription{}
|
|
|
|
|
|
|
|
err = proto.Unmarshal(applicationMetadataMessage.Payload, description)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return m.HandleCommunityDescriptionMessage(signer, description, payload)
|
|
|
|
}
|
|
|
|
|
2021-01-11 10:32:51 +00:00
|
|
|
func (m *Manager) JoinCommunity(id types.HexBytes) (*Community, error) {
|
|
|
|
community, err := m.GetByID(id)
|
2020-11-18 09:16:51 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2020-12-17 14:36:09 +00:00
|
|
|
if community == nil {
|
2020-11-18 09:16:51 +00:00
|
|
|
return nil, ErrOrgNotFound
|
|
|
|
}
|
2020-12-17 14:36:09 +00:00
|
|
|
community.Join()
|
|
|
|
err = m.persistence.SaveCommunity(community)
|
2020-11-18 09:16:51 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2020-12-17 14:36:09 +00:00
|
|
|
return community, nil
|
2020-11-18 09:16:51 +00:00
|
|
|
}
|
|
|
|
|
2022-09-20 19:57:39 +00:00
|
|
|
func (m *Manager) SpectateCommunity(id types.HexBytes) (*Community, error) {
|
|
|
|
community, err := m.GetByID(id)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
if community == nil {
|
|
|
|
return nil, ErrOrgNotFound
|
|
|
|
}
|
|
|
|
community.Spectate()
|
|
|
|
if err = m.persistence.SaveCommunity(community); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return community, nil
|
|
|
|
}
|
|
|
|
|
2022-03-21 14:18:36 +00:00
|
|
|
func (m *Manager) GetMagnetlinkMessageClock(communityID types.HexBytes) (uint64, error) {
|
|
|
|
return m.persistence.GetMagnetlinkMessageClock(communityID)
|
|
|
|
}
|
|
|
|
|
2022-10-25 22:06:20 +00:00
|
|
|
func (m *Manager) GetRequestToJoinIDByPkAndCommunityID(pk *ecdsa.PublicKey, communityID []byte) ([]byte, error) {
|
|
|
|
return m.persistence.GetRequestToJoinIDByPkAndCommunityID(common.PubkeyToHex(pk), communityID)
|
|
|
|
}
|
|
|
|
|
2022-03-21 14:18:36 +00:00
|
|
|
func (m *Manager) UpdateCommunityDescriptionMagnetlinkMessageClock(communityID types.HexBytes, clock uint64) error {
|
|
|
|
community, err := m.GetByIDString(communityID.String())
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
community.config.CommunityDescription.ArchiveMagnetlinkClock = clock
|
|
|
|
return m.persistence.SaveCommunity(community)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *Manager) UpdateMagnetlinkMessageClock(communityID types.HexBytes, clock uint64) error {
|
|
|
|
return m.persistence.UpdateMagnetlinkMessageClock(communityID, clock)
|
|
|
|
}
|
|
|
|
|
2021-01-11 10:32:51 +00:00
|
|
|
func (m *Manager) LeaveCommunity(id types.HexBytes) (*Community, error) {
|
|
|
|
community, err := m.GetByID(id)
|
2020-11-18 09:16:51 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2020-12-17 14:36:09 +00:00
|
|
|
if community == nil {
|
2020-11-18 09:16:51 +00:00
|
|
|
return nil, ErrOrgNotFound
|
|
|
|
}
|
2022-09-14 12:39:55 +00:00
|
|
|
|
2022-10-14 09:26:10 +00:00
|
|
|
community.RemoveOurselvesFromOrg(&m.identity.PublicKey)
|
2020-12-17 14:36:09 +00:00
|
|
|
community.Leave()
|
2021-11-12 10:23:59 +00:00
|
|
|
|
2022-09-14 12:39:55 +00:00
|
|
|
if err = m.persistence.SaveCommunity(community); err != nil {
|
2020-11-18 09:16:51 +00:00
|
|
|
return nil, err
|
|
|
|
}
|
2022-09-14 12:39:55 +00:00
|
|
|
|
2020-12-17 14:36:09 +00:00
|
|
|
return community, nil
|
2020-11-18 09:16:51 +00:00
|
|
|
}
|
|
|
|
|
2021-01-11 10:32:51 +00:00
|
|
|
func (m *Manager) inviteUsersToCommunity(community *Community, pks []*ecdsa.PublicKey) (*Community, error) {
|
|
|
|
var invitations []*protobuf.CommunityInvitation
|
|
|
|
for _, pk := range pks {
|
|
|
|
invitation, err := community.InviteUserToOrg(pk)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
// We mark the user request (if any) as completed
|
|
|
|
if err := m.markRequestToJoin(pk, community); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
invitations = append(invitations, invitation)
|
2020-11-18 09:16:51 +00:00
|
|
|
}
|
|
|
|
|
2021-01-11 10:32:51 +00:00
|
|
|
err := m.persistence.SaveCommunity(community)
|
2020-11-18 09:16:51 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2021-01-11 10:32:51 +00:00
|
|
|
m.publish(&Subscription{Community: community, Invitations: invitations})
|
|
|
|
|
|
|
|
return community, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *Manager) InviteUsersToCommunity(communityID types.HexBytes, pks []*ecdsa.PublicKey) (*Community, error) {
|
|
|
|
community, err := m.GetByID(communityID)
|
2020-11-18 09:16:51 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2021-01-11 10:32:51 +00:00
|
|
|
if community == nil {
|
|
|
|
return nil, ErrOrgNotFound
|
|
|
|
}
|
2020-11-18 09:16:51 +00:00
|
|
|
|
2021-01-11 10:32:51 +00:00
|
|
|
return m.inviteUsersToCommunity(community, pks)
|
2020-11-18 09:16:51 +00:00
|
|
|
}
|
|
|
|
|
2022-07-01 13:54:02 +00:00
|
|
|
func (m *Manager) AddMemberToCommunity(communityID types.HexBytes, pk *ecdsa.PublicKey) (*Community, error) {
|
|
|
|
community, err := m.GetByID(communityID)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
if community == nil {
|
|
|
|
return nil, ErrOrgNotFound
|
|
|
|
}
|
|
|
|
|
|
|
|
err = community.AddMember(pk)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
err = m.persistence.SaveCommunity(community)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
m.publish(&Subscription{Community: community})
|
|
|
|
return community, nil
|
|
|
|
}
|
|
|
|
|
2021-01-11 10:32:51 +00:00
|
|
|
func (m *Manager) RemoveUserFromCommunity(id types.HexBytes, pk *ecdsa.PublicKey) (*Community, error) {
|
|
|
|
community, err := m.GetByID(id)
|
2020-12-21 15:10:52 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
if community == nil {
|
|
|
|
return nil, ErrOrgNotFound
|
|
|
|
}
|
|
|
|
|
|
|
|
_, err = community.RemoveUserFromOrg(pk)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
err = m.persistence.SaveCommunity(community)
|
2021-03-19 09:15:45 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
m.publish(&Subscription{Community: community})
|
|
|
|
|
|
|
|
return community, nil
|
|
|
|
}
|
|
|
|
|
2022-06-23 07:12:15 +00:00
|
|
|
func (m *Manager) UnbanUserFromCommunity(request *requests.UnbanUserFromCommunity) (*Community, error) {
|
|
|
|
id := request.CommunityID
|
|
|
|
publicKey, err := common.HexToPubkey(request.User.String())
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
community, err := m.GetByID(id)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
if community == nil {
|
|
|
|
return nil, ErrOrgNotFound
|
|
|
|
}
|
|
|
|
|
|
|
|
_, err = community.UnbanUserFromCommunity(publicKey)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
err = m.persistence.SaveCommunity(community)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
m.publish(&Subscription{Community: community})
|
2022-12-02 11:34:02 +00:00
|
|
|
|
|
|
|
return community, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *Manager) AddRoleToMember(request *requests.AddRoleToMember) (*Community, error) {
|
|
|
|
id := request.CommunityID
|
|
|
|
publicKey, err := common.HexToPubkey(request.User.String())
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
community, err := m.GetByID(id)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
if community == nil {
|
|
|
|
return nil, ErrOrgNotFound
|
|
|
|
}
|
|
|
|
|
|
|
|
if !community.hasMember(publicKey) {
|
|
|
|
return nil, ErrMemberNotFound
|
|
|
|
}
|
|
|
|
|
|
|
|
_, err = community.AddRoleToMember(publicKey, request.Role)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
err = m.persistence.SaveCommunity(community)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
m.publish(&Subscription{Community: community})
|
|
|
|
|
|
|
|
return community, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *Manager) RemoveRoleFromMember(request *requests.RemoveRoleFromMember) (*Community, error) {
|
|
|
|
id := request.CommunityID
|
|
|
|
publicKey, err := common.HexToPubkey(request.User.String())
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
community, err := m.GetByID(id)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
if community == nil {
|
|
|
|
return nil, ErrOrgNotFound
|
|
|
|
}
|
|
|
|
|
|
|
|
if !community.hasMember(publicKey) {
|
|
|
|
return nil, ErrMemberNotFound
|
|
|
|
}
|
|
|
|
|
|
|
|
_, err = community.RemoveRoleFromMember(publicKey, request.Role)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
err = m.persistence.SaveCommunity(community)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
m.publish(&Subscription{Community: community})
|
2022-06-23 07:12:15 +00:00
|
|
|
|
|
|
|
return community, nil
|
|
|
|
}
|
|
|
|
|
2021-03-19 09:15:45 +00:00
|
|
|
func (m *Manager) BanUserFromCommunity(request *requests.BanUserFromCommunity) (*Community, error) {
|
|
|
|
id := request.CommunityID
|
|
|
|
|
|
|
|
publicKey, err := common.HexToPubkey(request.User.String())
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
community, err := m.GetByID(id)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
if community == nil {
|
|
|
|
return nil, ErrOrgNotFound
|
|
|
|
}
|
|
|
|
|
|
|
|
_, err = community.BanUserFromCommunity(publicKey)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
err = m.persistence.SaveCommunity(community)
|
2020-12-21 15:10:52 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
m.publish(&Subscription{Community: community})
|
|
|
|
|
|
|
|
return community, nil
|
|
|
|
}
|
|
|
|
|
2021-01-11 10:32:51 +00:00
|
|
|
func (m *Manager) GetByID(id []byte) (*Community, error) {
|
2022-10-14 09:26:10 +00:00
|
|
|
return m.persistence.GetByID(&m.identity.PublicKey, id)
|
2021-01-11 10:32:51 +00:00
|
|
|
}
|
|
|
|
|
2020-11-18 09:16:51 +00:00
|
|
|
func (m *Manager) GetByIDString(idString string) (*Community, error) {
|
|
|
|
id, err := types.DecodeHex(idString)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2021-01-11 10:32:51 +00:00
|
|
|
return m.GetByID(id)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *Manager) RequestToJoin(requester *ecdsa.PublicKey, request *requests.RequestToJoinCommunity) (*Community, *RequestToJoin, error) {
|
2022-10-14 09:26:10 +00:00
|
|
|
community, err := m.persistence.GetByID(&m.identity.PublicKey, request.CommunityID)
|
2021-01-11 10:32:51 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, nil, err
|
|
|
|
}
|
|
|
|
|
2022-08-22 10:10:31 +00:00
|
|
|
// We don't allow requesting access if already joined
|
|
|
|
if community.Joined() {
|
|
|
|
return nil, nil, ErrAlreadyJoined
|
2021-01-11 10:32:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
clock := uint64(time.Now().Unix())
|
|
|
|
requestToJoin := &RequestToJoin{
|
|
|
|
PublicKey: common.PubkeyToHex(requester),
|
|
|
|
Clock: clock,
|
|
|
|
ENSName: request.ENSName,
|
|
|
|
CommunityID: request.CommunityID,
|
|
|
|
State: RequestToJoinStatePending,
|
|
|
|
Our: true,
|
|
|
|
}
|
|
|
|
|
|
|
|
requestToJoin.CalculateID()
|
|
|
|
|
|
|
|
if err := m.persistence.SaveRequestToJoin(requestToJoin); err != nil {
|
|
|
|
return nil, nil, err
|
|
|
|
}
|
|
|
|
community.config.RequestedToJoinAt = uint64(time.Now().Unix())
|
2021-08-06 15:40:23 +00:00
|
|
|
community.AddRequestToJoin(requestToJoin)
|
2021-01-11 10:32:51 +00:00
|
|
|
|
|
|
|
return community, requestToJoin, nil
|
|
|
|
}
|
|
|
|
|
2021-08-06 15:40:23 +00:00
|
|
|
func (m *Manager) SaveRequestToJoin(request *RequestToJoin) error {
|
|
|
|
return m.persistence.SaveRequestToJoin(request)
|
|
|
|
}
|
|
|
|
|
2022-10-28 08:41:20 +00:00
|
|
|
func (m *Manager) CanceledRequestsToJoinForUser(pk *ecdsa.PublicKey) ([]*RequestToJoin, error) {
|
|
|
|
return m.persistence.CanceledRequestsToJoinForUser(common.PubkeyToHex(pk))
|
|
|
|
}
|
|
|
|
|
2021-01-11 10:32:51 +00:00
|
|
|
func (m *Manager) PendingRequestsToJoinForUser(pk *ecdsa.PublicKey) ([]*RequestToJoin, error) {
|
|
|
|
return m.persistence.PendingRequestsToJoinForUser(common.PubkeyToHex(pk))
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *Manager) PendingRequestsToJoinForCommunity(id types.HexBytes) ([]*RequestToJoin, error) {
|
|
|
|
m.logger.Info("fetching pending invitations", zap.String("community-id", id.String()))
|
|
|
|
return m.persistence.PendingRequestsToJoinForCommunity(id)
|
2020-11-18 09:16:51 +00:00
|
|
|
}
|
|
|
|
|
2022-08-04 07:44:35 +00:00
|
|
|
func (m *Manager) DeclinedRequestsToJoinForCommunity(id types.HexBytes) ([]*RequestToJoin, error) {
|
|
|
|
m.logger.Info("fetching declined invitations", zap.String("community-id", id.String()))
|
|
|
|
return m.persistence.DeclinedRequestsToJoinForCommunity(id)
|
|
|
|
}
|
|
|
|
|
2022-10-28 08:41:20 +00:00
|
|
|
func (m *Manager) CanceledRequestsToJoinForCommunity(id types.HexBytes) ([]*RequestToJoin, error) {
|
|
|
|
m.logger.Info("fetching canceled invitations", zap.String("community-id", id.String()))
|
|
|
|
return m.persistence.CanceledRequestsToJoinForCommunity(id)
|
|
|
|
}
|
|
|
|
|
2021-01-11 10:32:51 +00:00
|
|
|
func (m *Manager) CanPost(pk *ecdsa.PublicKey, communityID string, chatID string, grant []byte) (bool, error) {
|
|
|
|
community, err := m.GetByIDString(communityID)
|
2020-11-18 09:16:51 +00:00
|
|
|
if err != nil {
|
|
|
|
return false, err
|
|
|
|
}
|
2020-12-17 14:36:09 +00:00
|
|
|
if community == nil {
|
2020-11-18 09:16:51 +00:00
|
|
|
return false, nil
|
|
|
|
}
|
2020-12-17 14:36:09 +00:00
|
|
|
return community.CanPost(pk, chatID, grant)
|
2020-11-18 09:16:51 +00:00
|
|
|
}
|
2021-08-06 15:40:23 +00:00
|
|
|
|
2022-05-27 09:14:40 +00:00
|
|
|
func (m *Manager) IsEncrypted(communityID string) (bool, error) {
|
|
|
|
community, err := m.GetByIDString(communityID)
|
|
|
|
if err != nil {
|
|
|
|
return false, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return community.Encrypted(), nil
|
|
|
|
|
|
|
|
}
|
2021-08-06 15:40:23 +00:00
|
|
|
func (m *Manager) ShouldHandleSyncCommunity(community *protobuf.SyncCommunity) (bool, error) {
|
|
|
|
return m.persistence.ShouldHandleSyncCommunity(community)
|
|
|
|
}
|
|
|
|
|
2022-06-01 07:55:48 +00:00
|
|
|
func (m *Manager) ShouldHandleSyncCommunitySettings(communitySettings *protobuf.SyncCommunitySettings) (bool, error) {
|
|
|
|
return m.persistence.ShouldHandleSyncCommunitySettings(communitySettings)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *Manager) HandleSyncCommunitySettings(syncCommunitySettings *protobuf.SyncCommunitySettings) (*CommunitySettings, error) {
|
|
|
|
id, err := types.DecodeHex(syncCommunitySettings.CommunityId)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
settings, err := m.persistence.GetCommunitySettingsByID(id)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
if settings == nil {
|
|
|
|
settings = &CommunitySettings{
|
|
|
|
CommunityID: syncCommunitySettings.CommunityId,
|
|
|
|
HistoryArchiveSupportEnabled: syncCommunitySettings.HistoryArchiveSupportEnabled,
|
|
|
|
Clock: syncCommunitySettings.Clock,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if syncCommunitySettings.Clock > settings.Clock {
|
|
|
|
settings.CommunityID = syncCommunitySettings.CommunityId
|
|
|
|
settings.HistoryArchiveSupportEnabled = syncCommunitySettings.HistoryArchiveSupportEnabled
|
|
|
|
settings.Clock = syncCommunitySettings.Clock
|
|
|
|
}
|
|
|
|
|
|
|
|
err = m.persistence.SaveCommunitySettings(*settings)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return settings, nil
|
|
|
|
}
|
|
|
|
|
2021-08-06 15:40:23 +00:00
|
|
|
func (m *Manager) SetSyncClock(id []byte, clock uint64) error {
|
|
|
|
return m.persistence.SetSyncClock(id, clock)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *Manager) SetPrivateKey(id []byte, privKey *ecdsa.PrivateKey) error {
|
|
|
|
return m.persistence.SetPrivateKey(id, privKey)
|
|
|
|
}
|
|
|
|
|
2022-03-28 10:10:40 +00:00
|
|
|
func (m *Manager) GetSyncedRawCommunity(id []byte) (*RawCommunityRow, error) {
|
2021-08-06 15:40:23 +00:00
|
|
|
return m.persistence.getSyncedRawCommunity(id)
|
|
|
|
}
|
2022-03-08 15:25:00 +00:00
|
|
|
|
|
|
|
func (m *Manager) GetCommunitySettingsByID(id types.HexBytes) (*CommunitySettings, error) {
|
|
|
|
return m.persistence.GetCommunitySettingsByID(id)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *Manager) GetCommunitiesSettings() ([]CommunitySettings, error) {
|
|
|
|
return m.persistence.GetCommunitiesSettings()
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *Manager) SaveCommunitySettings(settings CommunitySettings) error {
|
|
|
|
return m.persistence.SaveCommunitySettings(settings)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *Manager) CommunitySettingsExist(id types.HexBytes) (bool, error) {
|
|
|
|
return m.persistence.CommunitySettingsExist(id)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *Manager) DeleteCommunitySettings(id types.HexBytes) error {
|
|
|
|
return m.persistence.DeleteCommunitySettings(id)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *Manager) UpdateCommunitySettings(settings CommunitySettings) error {
|
|
|
|
return m.persistence.UpdateCommunitySettings(settings)
|
|
|
|
}
|
2022-03-09 09:58:05 +00:00
|
|
|
|
|
|
|
func (m *Manager) GetAdminCommunitiesChatIDs() (map[string]bool, error) {
|
|
|
|
adminCommunities, err := m.Created()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
chatIDs := make(map[string]bool)
|
|
|
|
for _, c := range adminCommunities {
|
|
|
|
if c.Joined() {
|
|
|
|
for _, id := range c.ChatIDs() {
|
|
|
|
chatIDs[id] = true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return chatIDs, nil
|
|
|
|
}
|
|
|
|
|
2022-08-22 10:10:31 +00:00
|
|
|
func (m *Manager) IsAdminCommunityByID(communityID types.HexBytes) (bool, error) {
|
|
|
|
pubKey, err := crypto.DecompressPubkey(communityID)
|
|
|
|
if err != nil {
|
|
|
|
return false, err
|
|
|
|
}
|
|
|
|
return m.IsAdminCommunity(pubKey)
|
|
|
|
}
|
|
|
|
|
2022-04-22 07:42:22 +00:00
|
|
|
func (m *Manager) IsAdminCommunity(pubKey *ecdsa.PublicKey) (bool, error) {
|
|
|
|
adminCommunities, err := m.Created()
|
|
|
|
if err != nil {
|
|
|
|
return false, err
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, c := range adminCommunities {
|
|
|
|
if c.PrivateKey().PublicKey.Equal(pubKey) {
|
|
|
|
return true, nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *Manager) IsJoinedCommunity(pubKey *ecdsa.PublicKey) (bool, error) {
|
|
|
|
community, err := m.GetByID(crypto.CompressPubkey(pubKey))
|
|
|
|
if err != nil {
|
|
|
|
return false, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return community != nil && community.Joined(), nil
|
|
|
|
}
|
|
|
|
|
2022-03-21 14:18:36 +00:00
|
|
|
func (m *Manager) GetCommunityChatsFilters(communityID types.HexBytes) ([]*transport.Filter, error) {
|
|
|
|
chatIDs, err := m.persistence.GetCommunityChatIDs(communityID)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
filters := []*transport.Filter{}
|
|
|
|
for _, cid := range chatIDs {
|
|
|
|
filters = append(filters, m.transport.FilterByChatID(cid))
|
|
|
|
}
|
|
|
|
return filters, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *Manager) GetCommunityChatsTopics(communityID types.HexBytes) ([]types.TopicType, error) {
|
|
|
|
filters, err := m.GetCommunityChatsFilters(communityID)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
topics := []types.TopicType{}
|
|
|
|
for _, filter := range filters {
|
|
|
|
topics = append(topics, filter.Topic)
|
|
|
|
}
|
|
|
|
|
|
|
|
return topics, nil
|
|
|
|
}
|
|
|
|
|
2022-03-09 09:58:05 +00:00
|
|
|
func (m *Manager) StoreWakuMessage(message *types.Message) error {
|
|
|
|
return m.persistence.SaveWakuMessage(message)
|
|
|
|
}
|
2022-03-21 14:18:36 +00:00
|
|
|
|
2022-09-29 11:50:23 +00:00
|
|
|
func (m *Manager) StoreWakuMessages(messages []*types.Message) error {
|
|
|
|
return m.persistence.SaveWakuMessages(messages)
|
|
|
|
}
|
|
|
|
|
2022-03-21 14:18:36 +00:00
|
|
|
func (m *Manager) GetLatestWakuMessageTimestamp(topics []types.TopicType) (uint64, error) {
|
|
|
|
return m.persistence.GetLatestWakuMessageTimestamp(topics)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *Manager) GetOldestWakuMessageTimestamp(topics []types.TopicType) (uint64, error) {
|
|
|
|
return m.persistence.GetOldestWakuMessageTimestamp(topics)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *Manager) GetLastMessageArchiveEndDate(communityID types.HexBytes) (uint64, error) {
|
|
|
|
return m.persistence.GetLastMessageArchiveEndDate(communityID)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *Manager) GetHistoryArchivePartitionStartTimestamp(communityID types.HexBytes) (uint64, error) {
|
|
|
|
filters, err := m.GetCommunityChatsFilters(communityID)
|
|
|
|
if err != nil {
|
2022-10-06 20:51:04 +00:00
|
|
|
m.LogStdout("failed to get community chats filters", zap.Error(err))
|
2022-03-21 14:18:36 +00:00
|
|
|
return 0, err
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(filters) == 0 {
|
|
|
|
// If we don't have chat filters, we likely don't have any chats
|
|
|
|
// associated to this community, which means there's nothing more
|
|
|
|
// to do here
|
|
|
|
return 0, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
topics := []types.TopicType{}
|
|
|
|
|
|
|
|
for _, filter := range filters {
|
|
|
|
topics = append(topics, filter.Topic)
|
|
|
|
}
|
|
|
|
|
|
|
|
lastArchiveEndDateTimestamp, err := m.GetLastMessageArchiveEndDate(communityID)
|
|
|
|
if err != nil {
|
2022-10-06 20:51:04 +00:00
|
|
|
m.LogStdout("failed to get last archive end date", zap.Error(err))
|
2022-03-21 14:18:36 +00:00
|
|
|
return 0, err
|
|
|
|
}
|
|
|
|
|
|
|
|
if lastArchiveEndDateTimestamp == 0 {
|
|
|
|
// If we don't have a tracked last message archive end date, it
|
|
|
|
// means we haven't created an archive before, which means
|
|
|
|
// the next thing to look at is the oldest waku message timestamp for
|
|
|
|
// this community
|
|
|
|
lastArchiveEndDateTimestamp, err = m.GetOldestWakuMessageTimestamp(topics)
|
|
|
|
if err != nil {
|
2022-10-06 20:51:04 +00:00
|
|
|
m.LogStdout("failed to get oldest waku message timestamp", zap.Error(err))
|
2022-03-21 14:18:36 +00:00
|
|
|
return 0, err
|
|
|
|
}
|
|
|
|
if lastArchiveEndDateTimestamp == 0 {
|
|
|
|
// This means there's no waku message stored for this community so far
|
|
|
|
// (even after requesting possibly missed messages), so no messages exist yet that can be archived
|
2022-10-06 20:51:04 +00:00
|
|
|
m.LogStdout("can't find valid `lastArchiveEndTimestamp`")
|
2022-03-21 14:18:36 +00:00
|
|
|
return 0, nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return lastArchiveEndDateTimestamp, nil
|
|
|
|
}
|
|
|
|
|
2022-10-14 09:26:10 +00:00
|
|
|
func (m *Manager) CreateAndSeedHistoryArchive(communityID types.HexBytes, topics []types.TopicType, startDate time.Time, endDate time.Time, partition time.Duration, encrypt bool) error {
|
2022-03-21 14:18:36 +00:00
|
|
|
m.UnseedHistoryArchiveTorrent(communityID)
|
feat(CommunitiesManager): introduce `CreateHistoryArchiveTorrentFromMessages` API
Prior to this commit we had a `CreateHistoryArchiveTorrent()` API which
takes a `startDate`, an `endDate` and a `partition` to create a bunch of
message archives, given a certain time range.
The function expects the messages to live in the database, which means,
all messages that need to be archived have to be saved there at some
point.
This turns out to be an issue when importing communities from third
party services, where, sometimes, there are several thousands of messages
including attachment payloads, that have to be save to the database
first.
There are only two options to get the messages into the database:
1. Make one write operation with all messages - this slow, takes a long
time and blocks the database until done
2. Create message chunks and perform multiple write operations - this is
also slow, takes long but makes the database a bit more responsive as
it's many smaller operations instead of one big one
Option 2) turned out to not be super feasible either as sometimes,
inserting even a single such message can take up to 10 seconds
(depending on payload)
Which brings me to the third option.
**A third option** is to not store those imported messages as waku
message into the database, just to later query them again to create the
archives, but instead create the archives right away from all the
messages that have been loaded into memory.
This is significantly faster and doesn't block the database.
To make this possible, this commit introduces
a `CreateHistoryArchiveTorrentFromMessages()` API, and
a `CreateHistoryArchiveTorrentFromDB()` API which can be used for
different use cases.
2022-10-20 14:37:04 +00:00
|
|
|
_, err := m.CreateHistoryArchiveTorrentFromDB(communityID, topics, startDate, endDate, partition, encrypt)
|
2022-03-21 14:18:36 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return m.SeedHistoryArchiveTorrent(communityID)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *Manager) StartHistoryArchiveTasksInterval(community *Community, interval time.Duration) {
|
|
|
|
id := community.IDString()
|
|
|
|
_, exists := m.historyArchiveTasks[id]
|
|
|
|
|
|
|
|
if exists {
|
2022-10-06 20:51:04 +00:00
|
|
|
m.LogStdout("history archive tasks interval already in progres", zap.String("id", id))
|
2022-03-21 14:18:36 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
cancel := make(chan struct{})
|
|
|
|
m.historyArchiveTasks[id] = cancel
|
|
|
|
m.historyArchiveTasksWaitGroup.Add(1)
|
|
|
|
|
|
|
|
ticker := time.NewTicker(interval)
|
|
|
|
defer ticker.Stop()
|
|
|
|
|
2022-10-06 20:51:04 +00:00
|
|
|
m.LogStdout("starting history archive tasks interval", zap.String("id", id))
|
2022-03-21 14:18:36 +00:00
|
|
|
for {
|
|
|
|
select {
|
|
|
|
case <-ticker.C:
|
2022-10-06 20:51:04 +00:00
|
|
|
m.LogStdout("starting archive task...", zap.String("id", id))
|
2022-03-21 14:18:36 +00:00
|
|
|
lastArchiveEndDateTimestamp, err := m.GetHistoryArchivePartitionStartTimestamp(community.ID())
|
|
|
|
if err != nil {
|
2022-10-06 20:51:04 +00:00
|
|
|
m.LogStdout("failed to get last archive end date", zap.Error(err))
|
2022-03-21 14:18:36 +00:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
if lastArchiveEndDateTimestamp == 0 {
|
|
|
|
// This means there are no waku messages for this community,
|
|
|
|
// so nothing to do here
|
2022-10-06 20:51:04 +00:00
|
|
|
m.LogStdout("couldn't determine archive start date - skipping")
|
2022-03-21 14:18:36 +00:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
topics, err := m.GetCommunityChatsTopics(community.ID())
|
|
|
|
if err != nil {
|
2022-10-06 20:51:04 +00:00
|
|
|
m.LogStdout("failed to get community chat topics ", zap.Error(err))
|
2022-03-21 14:18:36 +00:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
ts := time.Now().Unix()
|
|
|
|
to := time.Unix(ts, 0)
|
|
|
|
lastArchiveEndDate := time.Unix(int64(lastArchiveEndDateTimestamp), 0)
|
|
|
|
|
2022-10-14 09:26:10 +00:00
|
|
|
err = m.CreateAndSeedHistoryArchive(community.ID(), topics, lastArchiveEndDate, to, interval, community.Encrypted())
|
2022-03-21 14:18:36 +00:00
|
|
|
if err != nil {
|
2022-10-06 20:51:04 +00:00
|
|
|
m.LogStdout("failed to create and seed history archive", zap.Error(err))
|
2022-03-21 14:18:36 +00:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
case <-cancel:
|
|
|
|
m.UnseedHistoryArchiveTorrent(community.ID())
|
|
|
|
delete(m.historyArchiveTasks, id)
|
|
|
|
m.historyArchiveTasksWaitGroup.Done()
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *Manager) StopHistoryArchiveTasksIntervals() {
|
|
|
|
for _, t := range m.historyArchiveTasks {
|
|
|
|
close(t)
|
|
|
|
}
|
|
|
|
// Stoping archive interval tasks is async, so we need
|
|
|
|
// to wait for all of them to be closed before we shutdown
|
|
|
|
// the torrent client
|
|
|
|
m.historyArchiveTasksWaitGroup.Wait()
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *Manager) StopHistoryArchiveTasksInterval(communityID types.HexBytes) {
|
|
|
|
task, ok := m.historyArchiveTasks[communityID.String()]
|
|
|
|
if ok {
|
|
|
|
m.logger.Info("Stopping history archive tasks interval", zap.Any("id", communityID.String()))
|
|
|
|
close(task)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
type EncodedArchiveData struct {
|
|
|
|
padding int
|
|
|
|
bytes []byte
|
|
|
|
}
|
|
|
|
|
feat(CommunitiesManager): introduce `CreateHistoryArchiveTorrentFromMessages` API
Prior to this commit we had a `CreateHistoryArchiveTorrent()` API which
takes a `startDate`, an `endDate` and a `partition` to create a bunch of
message archives, given a certain time range.
The function expects the messages to live in the database, which means,
all messages that need to be archived have to be saved there at some
point.
This turns out to be an issue when importing communities from third
party services, where, sometimes, there are several thousands of messages
including attachment payloads, that have to be save to the database
first.
There are only two options to get the messages into the database:
1. Make one write operation with all messages - this slow, takes a long
time and blocks the database until done
2. Create message chunks and perform multiple write operations - this is
also slow, takes long but makes the database a bit more responsive as
it's many smaller operations instead of one big one
Option 2) turned out to not be super feasible either as sometimes,
inserting even a single such message can take up to 10 seconds
(depending on payload)
Which brings me to the third option.
**A third option** is to not store those imported messages as waku
message into the database, just to later query them again to create the
archives, but instead create the archives right away from all the
messages that have been loaded into memory.
This is significantly faster and doesn't block the database.
To make this possible, this commit introduces
a `CreateHistoryArchiveTorrentFromMessages()` API, and
a `CreateHistoryArchiveTorrentFromDB()` API which can be used for
different use cases.
2022-10-20 14:37:04 +00:00
|
|
|
func (m *Manager) CreateHistoryArchiveTorrentFromMessages(communityID types.HexBytes, messages []*types.Message, topics []types.TopicType, startDate time.Time, endDate time.Time, partition time.Duration, encrypt bool) ([]string, error) {
|
|
|
|
return m.CreateHistoryArchiveTorrent(communityID, messages, topics, startDate, endDate, partition, encrypt)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *Manager) CreateHistoryArchiveTorrentFromDB(communityID types.HexBytes, topics []types.TopicType, startDate time.Time, endDate time.Time, partition time.Duration, encrypt bool) ([]string, error) {
|
|
|
|
|
|
|
|
return m.CreateHistoryArchiveTorrent(communityID, make([]*types.Message, 0), topics, startDate, endDate, partition, encrypt)
|
|
|
|
}
|
|
|
|
func (m *Manager) CreateHistoryArchiveTorrent(communityID types.HexBytes, msgs []*types.Message, topics []types.TopicType, startDate time.Time, endDate time.Time, partition time.Duration, encrypt bool) ([]string, error) {
|
|
|
|
|
|
|
|
loadFromDB := len(msgs) == 0
|
2022-03-21 14:18:36 +00:00
|
|
|
|
|
|
|
from := startDate
|
|
|
|
to := from.Add(partition)
|
|
|
|
if to.After(endDate) {
|
|
|
|
to = endDate
|
|
|
|
}
|
|
|
|
|
|
|
|
archiveDir := m.torrentConfig.DataDir + "/" + communityID.String()
|
|
|
|
torrentDir := m.torrentConfig.TorrentDir
|
|
|
|
indexPath := archiveDir + "/index"
|
|
|
|
dataPath := archiveDir + "/data"
|
|
|
|
|
|
|
|
wakuMessageArchiveIndexProto := &protobuf.WakuMessageArchiveIndex{}
|
|
|
|
wakuMessageArchiveIndex := make(map[string]*protobuf.WakuMessageArchiveIndexMetadata)
|
2022-04-22 07:42:22 +00:00
|
|
|
archiveIDs := make([]string, 0)
|
2022-03-21 14:18:36 +00:00
|
|
|
|
|
|
|
if _, err := os.Stat(archiveDir); os.IsNotExist(err) {
|
|
|
|
err := os.MkdirAll(archiveDir, 0700)
|
|
|
|
if err != nil {
|
2022-04-22 07:42:22 +00:00
|
|
|
return archiveIDs, err
|
2022-03-21 14:18:36 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if _, err := os.Stat(torrentDir); os.IsNotExist(err) {
|
|
|
|
err := os.MkdirAll(torrentDir, 0700)
|
|
|
|
if err != nil {
|
2022-04-22 07:42:22 +00:00
|
|
|
return archiveIDs, err
|
2022-03-21 14:18:36 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
_, err := os.Stat(indexPath)
|
|
|
|
if err == nil {
|
2022-10-14 09:26:10 +00:00
|
|
|
wakuMessageArchiveIndexProto, err = m.LoadHistoryArchiveIndexFromFile(m.identity, communityID)
|
2022-03-21 14:18:36 +00:00
|
|
|
if err != nil {
|
2022-04-22 07:42:22 +00:00
|
|
|
return archiveIDs, err
|
2022-03-21 14:18:36 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
var offset uint64 = 0
|
|
|
|
|
|
|
|
for hash, metadata := range wakuMessageArchiveIndexProto.Archives {
|
|
|
|
offset = offset + metadata.Size
|
|
|
|
wakuMessageArchiveIndex[hash] = metadata
|
|
|
|
}
|
|
|
|
|
|
|
|
var encodedArchives []*EncodedArchiveData
|
|
|
|
topicsAsByteArrays := topicsAsByteArrays(topics)
|
|
|
|
|
|
|
|
m.publish(&Subscription{CreatingHistoryArchivesSignal: &signal.CreatingHistoryArchivesSignal{
|
|
|
|
CommunityID: communityID.String(),
|
|
|
|
}})
|
|
|
|
|
2022-10-06 20:51:04 +00:00
|
|
|
m.LogStdout("creating archives",
|
2022-03-21 14:18:36 +00:00
|
|
|
zap.Any("startDate", startDate),
|
|
|
|
zap.Any("endDate", endDate),
|
|
|
|
zap.Duration("partition", partition),
|
|
|
|
)
|
|
|
|
for {
|
|
|
|
if from.Equal(endDate) || from.After(endDate) {
|
|
|
|
break
|
|
|
|
}
|
2022-10-06 20:51:04 +00:00
|
|
|
m.LogStdout("creating message archive",
|
2022-03-21 14:18:36 +00:00
|
|
|
zap.Any("from", from),
|
|
|
|
zap.Any("to", to),
|
|
|
|
)
|
2022-10-06 20:51:04 +00:00
|
|
|
|
feat(CommunitiesManager): introduce `CreateHistoryArchiveTorrentFromMessages` API
Prior to this commit we had a `CreateHistoryArchiveTorrent()` API which
takes a `startDate`, an `endDate` and a `partition` to create a bunch of
message archives, given a certain time range.
The function expects the messages to live in the database, which means,
all messages that need to be archived have to be saved there at some
point.
This turns out to be an issue when importing communities from third
party services, where, sometimes, there are several thousands of messages
including attachment payloads, that have to be save to the database
first.
There are only two options to get the messages into the database:
1. Make one write operation with all messages - this slow, takes a long
time and blocks the database until done
2. Create message chunks and perform multiple write operations - this is
also slow, takes long but makes the database a bit more responsive as
it's many smaller operations instead of one big one
Option 2) turned out to not be super feasible either as sometimes,
inserting even a single such message can take up to 10 seconds
(depending on payload)
Which brings me to the third option.
**A third option** is to not store those imported messages as waku
message into the database, just to later query them again to create the
archives, but instead create the archives right away from all the
messages that have been loaded into memory.
This is significantly faster and doesn't block the database.
To make this possible, this commit introduces
a `CreateHistoryArchiveTorrentFromMessages()` API, and
a `CreateHistoryArchiveTorrentFromDB()` API which can be used for
different use cases.
2022-10-20 14:37:04 +00:00
|
|
|
var messages []types.Message
|
|
|
|
if loadFromDB {
|
|
|
|
messages, err = m.persistence.GetWakuMessagesByFilterTopic(topics, uint64(from.Unix()), uint64(to.Unix()))
|
|
|
|
if err != nil {
|
|
|
|
return archiveIDs, err
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
for _, msg := range msgs {
|
|
|
|
if int64(msg.Timestamp) >= from.Unix() && int64(msg.Timestamp) < to.Unix() {
|
|
|
|
messages = append(messages, *msg)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-03-21 14:18:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if len(messages) == 0 {
|
|
|
|
// No need to create an archive with zero messages
|
2022-10-06 20:51:04 +00:00
|
|
|
m.LogStdout("no messages in this partition")
|
2022-03-21 14:18:36 +00:00
|
|
|
from = to
|
|
|
|
to = to.Add(partition)
|
|
|
|
if to.After(endDate) {
|
|
|
|
to = endDate
|
|
|
|
}
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
wakuMessageArchive := m.createWakuMessageArchive(from, to, messages, topicsAsByteArrays)
|
|
|
|
encodedArchive, err := proto.Marshal(wakuMessageArchive)
|
|
|
|
if err != nil {
|
2022-04-22 07:42:22 +00:00
|
|
|
return archiveIDs, err
|
2022-03-21 14:18:36 +00:00
|
|
|
}
|
|
|
|
|
2022-10-14 09:26:10 +00:00
|
|
|
if encrypt {
|
|
|
|
messageSpec, err := m.encryptor.BuildHashRatchetMessage(communityID, encodedArchive)
|
|
|
|
if err != nil {
|
|
|
|
return archiveIDs, err
|
|
|
|
}
|
|
|
|
|
|
|
|
encodedArchive, err = proto.Marshal(messageSpec.Message)
|
|
|
|
if err != nil {
|
|
|
|
return archiveIDs, err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-03-21 14:18:36 +00:00
|
|
|
rawSize := len(encodedArchive)
|
|
|
|
padding := 0
|
|
|
|
size := 0
|
|
|
|
|
|
|
|
if rawSize > pieceLength {
|
|
|
|
size = rawSize + pieceLength - (rawSize % pieceLength)
|
|
|
|
padding = size - rawSize
|
|
|
|
} else {
|
|
|
|
padding = pieceLength - rawSize
|
|
|
|
size = rawSize + padding
|
|
|
|
}
|
|
|
|
|
|
|
|
wakuMessageArchiveIndexMetadata := &protobuf.WakuMessageArchiveIndexMetadata{
|
|
|
|
Metadata: wakuMessageArchive.Metadata,
|
|
|
|
Offset: offset,
|
|
|
|
Size: uint64(size),
|
|
|
|
Padding: uint64(padding),
|
|
|
|
}
|
|
|
|
|
|
|
|
wakuMessageArchiveIndexMetadataBytes, err := proto.Marshal(wakuMessageArchiveIndexMetadata)
|
|
|
|
if err != nil {
|
2022-04-22 07:42:22 +00:00
|
|
|
return archiveIDs, err
|
2022-03-21 14:18:36 +00:00
|
|
|
}
|
|
|
|
|
2022-04-22 07:42:22 +00:00
|
|
|
archiveID := crypto.Keccak256Hash(wakuMessageArchiveIndexMetadataBytes).String()
|
|
|
|
archiveIDs = append(archiveIDs, archiveID)
|
|
|
|
wakuMessageArchiveIndex[archiveID] = wakuMessageArchiveIndexMetadata
|
2022-03-21 14:18:36 +00:00
|
|
|
encodedArchives = append(encodedArchives, &EncodedArchiveData{bytes: encodedArchive, padding: padding})
|
|
|
|
from = to
|
|
|
|
to = to.Add(partition)
|
|
|
|
if to.After(endDate) {
|
|
|
|
to = endDate
|
|
|
|
}
|
|
|
|
offset = offset + uint64(rawSize) + uint64(padding)
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(encodedArchives) > 0 {
|
|
|
|
|
|
|
|
dataBytes := make([]byte, 0)
|
|
|
|
|
|
|
|
for _, encodedArchiveData := range encodedArchives {
|
|
|
|
dataBytes = append(dataBytes, encodedArchiveData.bytes...)
|
|
|
|
dataBytes = append(dataBytes, make([]byte, encodedArchiveData.padding)...)
|
|
|
|
}
|
|
|
|
|
|
|
|
wakuMessageArchiveIndexProto.Archives = wakuMessageArchiveIndex
|
|
|
|
indexBytes, err := proto.Marshal(wakuMessageArchiveIndexProto)
|
|
|
|
if err != nil {
|
2022-04-22 07:42:22 +00:00
|
|
|
return archiveIDs, err
|
2022-03-21 14:18:36 +00:00
|
|
|
}
|
|
|
|
|
2022-10-14 09:26:10 +00:00
|
|
|
if encrypt {
|
|
|
|
messageSpec, err := m.encryptor.BuildHashRatchetMessage(communityID, indexBytes)
|
|
|
|
if err != nil {
|
|
|
|
return archiveIDs, err
|
|
|
|
}
|
|
|
|
indexBytes, err = proto.Marshal(messageSpec.Message)
|
|
|
|
if err != nil {
|
|
|
|
return archiveIDs, err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-03-21 14:18:36 +00:00
|
|
|
err = os.WriteFile(indexPath, indexBytes, 0644) // nolint: gosec
|
|
|
|
if err != nil {
|
2022-04-22 07:42:22 +00:00
|
|
|
return archiveIDs, err
|
2022-03-21 14:18:36 +00:00
|
|
|
}
|
|
|
|
|
2022-09-29 11:50:23 +00:00
|
|
|
file, err := os.OpenFile(dataPath, os.O_WRONLY|os.O_CREATE|os.O_APPEND, 0644)
|
|
|
|
if err != nil {
|
|
|
|
return archiveIDs, err
|
|
|
|
}
|
|
|
|
defer file.Close()
|
|
|
|
|
|
|
|
_, err = file.Write(dataBytes)
|
2022-03-21 14:18:36 +00:00
|
|
|
if err != nil {
|
2022-04-22 07:42:22 +00:00
|
|
|
return archiveIDs, err
|
2022-03-21 14:18:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
metaInfo := metainfo.MetaInfo{
|
|
|
|
AnnounceList: defaultAnnounceList,
|
|
|
|
}
|
|
|
|
metaInfo.SetDefaults()
|
2022-10-14 09:26:10 +00:00
|
|
|
metaInfo.CreatedBy = common.PubkeyToHex(&m.identity.PublicKey)
|
2022-03-21 14:18:36 +00:00
|
|
|
|
|
|
|
info := metainfo.Info{
|
|
|
|
PieceLength: int64(pieceLength),
|
|
|
|
}
|
|
|
|
|
|
|
|
err = info.BuildFromFilePath(archiveDir)
|
|
|
|
if err != nil {
|
2022-04-22 07:42:22 +00:00
|
|
|
return archiveIDs, err
|
2022-03-21 14:18:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
metaInfo.InfoBytes, err = bencode.Marshal(info)
|
|
|
|
if err != nil {
|
2022-04-22 07:42:22 +00:00
|
|
|
return archiveIDs, err
|
2022-03-21 14:18:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
metaInfoBytes, err := bencode.Marshal(metaInfo)
|
|
|
|
if err != nil {
|
2022-04-22 07:42:22 +00:00
|
|
|
return archiveIDs, err
|
2022-03-21 14:18:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
err = os.WriteFile(m.torrentFile(communityID.String()), metaInfoBytes, 0644) // nolint: gosec
|
|
|
|
if err != nil {
|
2022-04-22 07:42:22 +00:00
|
|
|
return archiveIDs, err
|
2022-03-21 14:18:36 +00:00
|
|
|
}
|
|
|
|
|
2022-10-06 20:51:04 +00:00
|
|
|
m.LogStdout("torrent created", zap.Any("from", startDate.Unix()), zap.Any("to", endDate.Unix()))
|
|
|
|
|
2022-03-21 14:18:36 +00:00
|
|
|
m.publish(&Subscription{
|
|
|
|
HistoryArchivesCreatedSignal: &signal.HistoryArchivesCreatedSignal{
|
|
|
|
CommunityID: communityID.String(),
|
|
|
|
From: int(startDate.Unix()),
|
|
|
|
To: int(endDate.Unix()),
|
|
|
|
},
|
|
|
|
})
|
|
|
|
} else {
|
2022-10-06 20:51:04 +00:00
|
|
|
m.LogStdout("no archives created")
|
2022-03-21 14:18:36 +00:00
|
|
|
m.publish(&Subscription{
|
|
|
|
NoHistoryArchivesCreatedSignal: &signal.NoHistoryArchivesCreatedSignal{
|
|
|
|
CommunityID: communityID.String(),
|
|
|
|
From: int(startDate.Unix()),
|
|
|
|
To: int(endDate.Unix()),
|
|
|
|
},
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
lastMessageArchiveEndDate, err := m.persistence.GetLastMessageArchiveEndDate(communityID)
|
|
|
|
if err != nil {
|
2022-04-22 07:42:22 +00:00
|
|
|
return archiveIDs, err
|
2022-03-21 14:18:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if lastMessageArchiveEndDate > 0 {
|
|
|
|
err = m.persistence.UpdateLastMessageArchiveEndDate(communityID, uint64(from.Unix()))
|
|
|
|
} else {
|
|
|
|
err = m.persistence.SaveLastMessageArchiveEndDate(communityID, uint64(from.Unix()))
|
|
|
|
}
|
|
|
|
if err != nil {
|
2022-04-22 07:42:22 +00:00
|
|
|
return archiveIDs, err
|
2022-03-21 14:18:36 +00:00
|
|
|
}
|
2022-04-22 07:42:22 +00:00
|
|
|
return archiveIDs, nil
|
2022-03-21 14:18:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (m *Manager) SeedHistoryArchiveTorrent(communityID types.HexBytes) error {
|
|
|
|
m.UnseedHistoryArchiveTorrent(communityID)
|
|
|
|
|
|
|
|
id := communityID.String()
|
|
|
|
torrentFile := m.torrentFile(id)
|
|
|
|
|
|
|
|
metaInfo, err := metainfo.LoadFromFile(torrentFile)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
info, err := metaInfo.UnmarshalInfo()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
hash := metaInfo.HashInfoBytes()
|
|
|
|
m.torrentTasks[id] = hash
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
torrent, err := m.torrentClient.AddTorrent(metaInfo)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
torrent.DownloadAll()
|
|
|
|
|
|
|
|
m.publish(&Subscription{
|
|
|
|
HistoryArchivesSeedingSignal: &signal.HistoryArchivesSeedingSignal{
|
|
|
|
CommunityID: communityID.String(),
|
|
|
|
},
|
|
|
|
})
|
2022-10-06 20:51:04 +00:00
|
|
|
|
|
|
|
magnetLink := metaInfo.Magnet(nil, &info).String()
|
|
|
|
|
|
|
|
m.LogStdout("seeding torrent", zap.String("id", id), zap.String("magnetLink", magnetLink))
|
2022-03-21 14:18:36 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *Manager) UnseedHistoryArchiveTorrent(communityID types.HexBytes) {
|
|
|
|
id := communityID.String()
|
2022-09-29 11:50:23 +00:00
|
|
|
|
2022-03-21 14:18:36 +00:00
|
|
|
hash, exists := m.torrentTasks[id]
|
|
|
|
|
|
|
|
if exists {
|
|
|
|
torrent, ok := m.torrentClient.Torrent(hash)
|
|
|
|
if ok {
|
|
|
|
m.logger.Debug("Unseeding and dropping torrent for community: ", zap.Any("id", id))
|
|
|
|
torrent.Drop()
|
|
|
|
delete(m.torrentTasks, id)
|
|
|
|
|
|
|
|
m.publish(&Subscription{
|
|
|
|
HistoryArchivesUnseededSignal: &signal.HistoryArchivesUnseededSignal{
|
|
|
|
CommunityID: id,
|
|
|
|
},
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *Manager) IsSeedingHistoryArchiveTorrent(communityID types.HexBytes) bool {
|
|
|
|
id := communityID.String()
|
|
|
|
hash := m.torrentTasks[id]
|
|
|
|
torrent, ok := m.torrentClient.Torrent(hash)
|
|
|
|
return ok && torrent.Seeding()
|
|
|
|
}
|
|
|
|
|
2022-04-22 07:42:22 +00:00
|
|
|
func (m *Manager) DownloadHistoryArchivesByMagnetlink(communityID types.HexBytes, magnetlink string) ([]string, error) {
|
|
|
|
|
|
|
|
id := communityID.String()
|
|
|
|
ml, err := metainfo.ParseMagnetUri(magnetlink)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2022-09-29 11:50:23 +00:00
|
|
|
// If we're in the middle of downloading archives from the current
|
|
|
|
// torrent, we want to cancel that first.
|
|
|
|
stop, exists := m.historyArchiveDownloadTasks[id]
|
|
|
|
if exists {
|
|
|
|
close(stop)
|
|
|
|
}
|
|
|
|
|
|
|
|
cancel := make(chan struct{})
|
|
|
|
m.historyArchiveDownloadTasks[id] = cancel
|
|
|
|
|
2022-04-22 07:42:22 +00:00
|
|
|
m.logger.Debug("adding torrent via magnetlink for community", zap.String("id", id), zap.String("magnetlink", magnetlink))
|
|
|
|
torrent, err := m.torrentClient.AddMagnet(magnetlink)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
m.torrentTasks[id] = ml.InfoHash
|
|
|
|
timeout := time.After(20 * time.Second)
|
2022-10-06 20:51:04 +00:00
|
|
|
|
|
|
|
m.LogStdout("fetching torrent info", zap.String("magnetlink", magnetlink))
|
2022-04-22 07:42:22 +00:00
|
|
|
select {
|
|
|
|
case <-timeout:
|
2022-10-07 10:24:50 +00:00
|
|
|
return nil, ErrTorrentTimedout
|
2022-04-22 07:42:22 +00:00
|
|
|
case <-torrent.GotInfo():
|
|
|
|
files := torrent.Files()
|
|
|
|
|
|
|
|
i, ok := findIndexFile(files)
|
|
|
|
if !ok {
|
|
|
|
// We're dealing with a malformed torrent, so don't do anything
|
|
|
|
return nil, errors.New("malformed torrent data")
|
|
|
|
}
|
|
|
|
|
|
|
|
indexFile := files[i]
|
|
|
|
indexFile.Download()
|
|
|
|
|
2022-10-06 20:51:04 +00:00
|
|
|
m.LogStdout("downloading history archive index")
|
2022-04-22 07:42:22 +00:00
|
|
|
ticker := time.NewTicker(100 * time.Millisecond)
|
|
|
|
defer ticker.Stop()
|
|
|
|
|
|
|
|
for {
|
2022-09-29 11:50:23 +00:00
|
|
|
select {
|
|
|
|
case <-cancel:
|
|
|
|
return []string{}, nil
|
|
|
|
case <-ticker.C:
|
|
|
|
if indexFile.BytesCompleted() == indexFile.Length() {
|
|
|
|
index, err := m.LoadHistoryArchiveIndexFromFile(m.identity, communityID)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2022-04-22 07:42:22 +00:00
|
|
|
|
2022-09-29 11:50:23 +00:00
|
|
|
var archiveIDs []string
|
2022-04-22 07:42:22 +00:00
|
|
|
|
2022-09-29 11:50:23 +00:00
|
|
|
archiveHashes := make(archiveMDSlice, 0, len(index.Archives))
|
2022-04-22 07:42:22 +00:00
|
|
|
|
2022-09-29 11:50:23 +00:00
|
|
|
for hash, metadata := range index.Archives {
|
|
|
|
archiveHashes = append(archiveHashes, &archiveMetadata{hash: hash, from: metadata.Metadata.From})
|
|
|
|
}
|
2022-04-22 07:42:22 +00:00
|
|
|
|
2022-09-29 11:50:23 +00:00
|
|
|
sort.Sort(sort.Reverse(archiveHashes))
|
2022-04-22 07:42:22 +00:00
|
|
|
|
2022-12-01 14:02:17 +00:00
|
|
|
m.publish(&Subscription{
|
|
|
|
DownloadingHistoryArchivesStartedSignal: &signal.DownloadingHistoryArchivesStartedSignal{
|
|
|
|
CommunityID: communityID.String(),
|
|
|
|
},
|
|
|
|
})
|
|
|
|
|
2022-09-29 11:50:23 +00:00
|
|
|
for _, hd := range archiveHashes {
|
|
|
|
hash := hd.hash
|
|
|
|
metadata := index.Archives[hash]
|
|
|
|
hasArchive, err := m.persistence.HasMessageArchiveID(communityID, hash)
|
|
|
|
if err != nil {
|
|
|
|
m.logger.Debug("Failed to check if has message archive id", zap.Error(err))
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
if hasArchive {
|
|
|
|
continue
|
|
|
|
}
|
2022-04-22 07:42:22 +00:00
|
|
|
|
2022-09-29 11:50:23 +00:00
|
|
|
startIndex := int(metadata.Offset) / pieceLength
|
|
|
|
endIndex := startIndex + int(metadata.Size)/pieceLength
|
2022-04-22 07:42:22 +00:00
|
|
|
|
2022-09-29 11:50:23 +00:00
|
|
|
m.LogStdout("downloading data for message archive", zap.String("hash", hash))
|
|
|
|
m.LogStdout("pieces (start, end)", zap.Any("startIndex", startIndex), zap.Any("endIndex", endIndex-1))
|
|
|
|
torrent.DownloadPieces(startIndex, endIndex)
|
|
|
|
|
|
|
|
piecesCompleted := make(map[int]bool)
|
|
|
|
for i = startIndex; i < endIndex; i++ {
|
|
|
|
piecesCompleted[i] = false
|
|
|
|
}
|
2022-04-22 07:42:22 +00:00
|
|
|
|
2022-09-29 11:50:23 +00:00
|
|
|
psc := torrent.SubscribePieceStateChanges()
|
|
|
|
downloadTicker := time.NewTicker(1 * time.Second)
|
|
|
|
defer downloadTicker.Stop()
|
|
|
|
|
|
|
|
downloadLoop:
|
2022-04-22 07:42:22 +00:00
|
|
|
for {
|
2022-09-29 11:50:23 +00:00
|
|
|
select {
|
|
|
|
case <-downloadTicker.C:
|
|
|
|
done := true
|
|
|
|
for i = startIndex; i < endIndex; i++ {
|
|
|
|
piecesCompleted[i] = torrent.PieceState(i).Complete
|
|
|
|
if !piecesCompleted[i] {
|
|
|
|
done = false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if done {
|
|
|
|
psc.Close()
|
|
|
|
break downloadLoop
|
|
|
|
}
|
|
|
|
case <-cancel:
|
|
|
|
return archiveIDs, nil
|
2022-10-05 10:38:14 +00:00
|
|
|
}
|
2022-04-22 07:42:22 +00:00
|
|
|
}
|
2022-09-29 11:50:23 +00:00
|
|
|
archiveIDs = append(archiveIDs, hash)
|
|
|
|
err = m.persistence.SaveMessageArchiveID(communityID, hash)
|
|
|
|
if err != nil {
|
|
|
|
m.logger.Debug("couldn't save message archive ID", zap.Error(err))
|
|
|
|
continue
|
2022-04-22 07:42:22 +00:00
|
|
|
}
|
2022-09-29 11:50:23 +00:00
|
|
|
m.publish(&Subscription{
|
|
|
|
HistoryArchiveDownloadedSignal: &signal.HistoryArchiveDownloadedSignal{
|
|
|
|
CommunityID: communityID.String(),
|
|
|
|
From: int(metadata.Metadata.From),
|
|
|
|
To: int(metadata.Metadata.To),
|
|
|
|
},
|
|
|
|
})
|
2022-04-22 07:42:22 +00:00
|
|
|
}
|
|
|
|
m.publish(&Subscription{
|
2022-09-29 11:50:23 +00:00
|
|
|
HistoryArchivesSeedingSignal: &signal.HistoryArchivesSeedingSignal{
|
2022-04-22 07:42:22 +00:00
|
|
|
CommunityID: communityID.String(),
|
|
|
|
},
|
|
|
|
})
|
2022-09-29 11:50:23 +00:00
|
|
|
m.LogStdout("finished download archives")
|
|
|
|
return archiveIDs, nil
|
2022-04-22 07:42:22 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *Manager) ExtractMessagesFromHistoryArchives(communityID types.HexBytes, archiveIDs []string) (map[transport.Filter][]*types.Message, error) {
|
|
|
|
id := communityID.String()
|
|
|
|
|
2022-10-14 09:26:10 +00:00
|
|
|
index, err := m.LoadHistoryArchiveIndexFromFile(m.identity, communityID)
|
2022-04-22 07:42:22 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
totalData, err := os.ReadFile(m.archiveDataFile(id))
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
messages := make(map[transport.Filter][]*types.Message)
|
|
|
|
|
|
|
|
for _, hash := range archiveIDs {
|
|
|
|
metadata := index.Archives[hash]
|
|
|
|
|
|
|
|
archive := &protobuf.WakuMessageArchive{}
|
|
|
|
data := totalData[metadata.Offset : metadata.Offset+metadata.Size-metadata.Padding]
|
|
|
|
|
|
|
|
err := proto.Unmarshal(data, archive)
|
|
|
|
if err != nil {
|
2022-10-14 09:26:10 +00:00
|
|
|
// The archive data might eb encrypted so we try to decrypt instead first
|
|
|
|
var protocolMessage encryption.ProtocolMessage
|
|
|
|
err := proto.Unmarshal(data, &protocolMessage)
|
|
|
|
if err != nil {
|
|
|
|
m.LogStdout("failed to unmarshal protocol message", zap.Error(err))
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
pk, err := crypto.DecompressPubkey(communityID)
|
|
|
|
if err != nil {
|
|
|
|
m.logger.Debug("failed to decompress community pubkey", zap.Error(err))
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
decryptedBytes, err := m.encryptor.HandleMessage(m.identity, pk, &protocolMessage, make([]byte, 0))
|
|
|
|
if err != nil {
|
|
|
|
m.LogStdout("failed to decrypt message archive", zap.Error(err))
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
err = proto.Unmarshal(decryptedBytes.DecryptedMessage, archive)
|
|
|
|
if err != nil {
|
|
|
|
m.LogStdout("failed to unmarshal message archive data", zap.Error(err))
|
|
|
|
return nil, err
|
|
|
|
}
|
2022-04-22 07:42:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
for _, message := range archive.Messages {
|
|
|
|
filter := m.transport.FilterByTopic(message.Topic)
|
|
|
|
if filter != nil {
|
|
|
|
shhMessage := &types.Message{
|
2022-09-28 12:45:34 +00:00
|
|
|
Sig: message.Sig,
|
|
|
|
Timestamp: uint32(message.Timestamp),
|
|
|
|
Topic: types.BytesToTopic(message.Topic),
|
|
|
|
Payload: message.Payload,
|
|
|
|
Padding: message.Padding,
|
|
|
|
Hash: message.Hash,
|
|
|
|
ThirdPartyID: message.ThirdPartyId,
|
2022-04-22 07:42:22 +00:00
|
|
|
}
|
|
|
|
messages[*filter] = append(messages[*filter], shhMessage)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return messages, nil
|
|
|
|
}
|
|
|
|
|
2022-03-21 14:18:36 +00:00
|
|
|
func (m *Manager) GetHistoryArchiveMagnetlink(communityID types.HexBytes) (string, error) {
|
|
|
|
id := communityID.String()
|
|
|
|
torrentFile := m.torrentFile(id)
|
|
|
|
|
|
|
|
metaInfo, err := metainfo.LoadFromFile(torrentFile)
|
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
|
|
|
|
info, err := metaInfo.UnmarshalInfo()
|
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
|
|
|
|
return metaInfo.Magnet(nil, &info).String(), nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *Manager) createWakuMessageArchive(from time.Time, to time.Time, messages []types.Message, topics [][]byte) *protobuf.WakuMessageArchive {
|
|
|
|
var wakuMessages []*protobuf.WakuMessage
|
|
|
|
|
|
|
|
for _, msg := range messages {
|
|
|
|
topic := types.TopicTypeToByteArray(msg.Topic)
|
|
|
|
wakuMessage := &protobuf.WakuMessage{
|
2022-09-28 12:45:34 +00:00
|
|
|
Sig: msg.Sig,
|
|
|
|
Timestamp: uint64(msg.Timestamp),
|
|
|
|
Topic: topic,
|
|
|
|
Payload: msg.Payload,
|
|
|
|
Padding: msg.Padding,
|
|
|
|
Hash: msg.Hash,
|
|
|
|
ThirdPartyId: msg.ThirdPartyID,
|
2022-03-21 14:18:36 +00:00
|
|
|
}
|
|
|
|
wakuMessages = append(wakuMessages, wakuMessage)
|
|
|
|
}
|
|
|
|
|
|
|
|
metadata := protobuf.WakuMessageArchiveMetadata{
|
|
|
|
From: uint64(from.Unix()),
|
|
|
|
To: uint64(to.Unix()),
|
|
|
|
ContentTopic: topics,
|
|
|
|
}
|
|
|
|
|
|
|
|
wakuMessageArchive := &protobuf.WakuMessageArchive{
|
|
|
|
Metadata: &metadata,
|
|
|
|
Messages: wakuMessages,
|
|
|
|
}
|
|
|
|
return wakuMessageArchive
|
|
|
|
}
|
|
|
|
|
2022-10-14 09:26:10 +00:00
|
|
|
func (m *Manager) LoadHistoryArchiveIndexFromFile(myKey *ecdsa.PrivateKey, communityID types.HexBytes) (*protobuf.WakuMessageArchiveIndex, error) {
|
2022-03-21 14:18:36 +00:00
|
|
|
wakuMessageArchiveIndexProto := &protobuf.WakuMessageArchiveIndex{}
|
|
|
|
|
|
|
|
indexPath := m.archiveIndexFile(communityID.String())
|
|
|
|
indexData, err := os.ReadFile(indexPath)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
err = proto.Unmarshal(indexData, wakuMessageArchiveIndexProto)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2022-10-14 09:26:10 +00:00
|
|
|
|
|
|
|
if len(wakuMessageArchiveIndexProto.Archives) == 0 && len(indexData) > 0 {
|
|
|
|
// This means we're dealing with an encrypted index file, so we have to decrypt it first
|
|
|
|
var protocolMessage encryption.ProtocolMessage
|
|
|
|
err := proto.Unmarshal(indexData, &protocolMessage)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
pk, err := crypto.DecompressPubkey(communityID)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
decryptedBytes, err := m.encryptor.HandleMessage(myKey, pk, &protocolMessage, make([]byte, 0))
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
err = proto.Unmarshal(decryptedBytes.DecryptedMessage, wakuMessageArchiveIndexProto)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-03-21 14:18:36 +00:00
|
|
|
return wakuMessageArchiveIndexProto, nil
|
|
|
|
}
|
|
|
|
|
2022-09-15 10:15:19 +00:00
|
|
|
func (m *Manager) TorrentFileExists(communityID string) bool {
|
|
|
|
_, err := os.Stat(m.torrentFile(communityID))
|
|
|
|
return err == nil
|
|
|
|
}
|
|
|
|
|
2022-03-21 14:18:36 +00:00
|
|
|
func (m *Manager) torrentFile(communityID string) string {
|
|
|
|
return m.torrentConfig.TorrentDir + "/" + communityID + ".torrent"
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *Manager) archiveIndexFile(communityID string) string {
|
|
|
|
return m.torrentConfig.DataDir + "/" + communityID + "/index"
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *Manager) archiveDataFile(communityID string) string {
|
|
|
|
return m.torrentConfig.DataDir + "/" + communityID + "/data"
|
|
|
|
}
|
|
|
|
|
|
|
|
func topicsAsByteArrays(topics []types.TopicType) [][]byte {
|
|
|
|
var topicsAsByteArrays [][]byte
|
|
|
|
for _, t := range topics {
|
|
|
|
topic := types.TopicTypeToByteArray(t)
|
|
|
|
topicsAsByteArrays = append(topicsAsByteArrays, topic)
|
|
|
|
}
|
|
|
|
return topicsAsByteArrays
|
|
|
|
}
|
2022-04-22 07:42:22 +00:00
|
|
|
|
|
|
|
func findIndexFile(files []*torrent.File) (index int, ok bool) {
|
|
|
|
for i, f := range files {
|
|
|
|
if f.DisplayPath() == "index" {
|
|
|
|
return i, true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 0, false
|
|
|
|
}
|