2021-04-01 18:46:45 +00:00
|
|
|
/*
|
|
|
|
GoToSocial
|
|
|
|
Copyright (C) 2021 GoToSocial Authors admin@gotosocial.org
|
|
|
|
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU Affero General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU Affero General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU Affero General Public License
|
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
package db
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"errors"
|
|
|
|
"net/url"
|
|
|
|
"sync"
|
|
|
|
|
|
|
|
"github.com/go-fed/activity/pub"
|
|
|
|
"github.com/go-fed/activity/streams/vocab"
|
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/config"
|
|
|
|
)
|
|
|
|
|
|
|
|
// FederatingDB uses the underlying DB interface to implement the go-fed pub.Database interface.
|
|
|
|
// It doesn't care what the underlying implementation of the DB interface is, as long as it works.
|
|
|
|
type federatingDB struct {
|
|
|
|
locks *sync.Map
|
|
|
|
db DB
|
|
|
|
config *config.Config
|
|
|
|
}
|
|
|
|
|
|
|
|
func newFederatingDB(db DB, config *config.Config) pub.Database {
|
|
|
|
return &federatingDB{
|
|
|
|
locks: new(sync.Map),
|
|
|
|
db: db,
|
|
|
|
config: config,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
GO-FED DB INTERFACE-IMPLEMENTING FUNCTIONS
|
|
|
|
*/
|
2021-04-20 16:14:23 +00:00
|
|
|
|
|
|
|
// Lock takes a lock for the object at the specified id. If an error
|
|
|
|
// is returned, the lock must not have been taken.
|
|
|
|
//
|
|
|
|
// The lock must be able to succeed for an id that does not exist in
|
|
|
|
// the database. This means acquiring the lock does not guarantee the
|
|
|
|
// entry exists in the database.
|
|
|
|
//
|
|
|
|
// Locks are encouraged to be lightweight and in the Go layer, as some
|
|
|
|
// processes require tight loops acquiring and releasing locks.
|
|
|
|
//
|
|
|
|
// Used to ensure race conditions in multiple requests do not occur.
|
|
|
|
func (f *federatingDB) Lock(c context.Context, id *url.URL) error {
|
2021-04-01 18:46:45 +00:00
|
|
|
// Before any other Database methods are called, the relevant `id`
|
|
|
|
// entries are locked to allow for fine-grained concurrency.
|
|
|
|
|
|
|
|
// Strategy: create a new lock, if stored, continue. Otherwise, lock the
|
|
|
|
// existing mutex.
|
|
|
|
mu := &sync.Mutex{}
|
|
|
|
mu.Lock() // Optimistically lock if we do store it.
|
|
|
|
i, loaded := f.locks.LoadOrStore(id.String(), mu)
|
|
|
|
if loaded {
|
|
|
|
mu = i.(*sync.Mutex)
|
|
|
|
mu.Lock()
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2021-04-20 16:14:23 +00:00
|
|
|
// Unlock makes the lock for the object at the specified id available.
|
|
|
|
// If an error is returned, the lock must have still been freed.
|
|
|
|
//
|
|
|
|
// Used to ensure race conditions in multiple requests do not occur.
|
|
|
|
func (f *federatingDB) Unlock(c context.Context, id *url.URL) error {
|
2021-04-01 18:46:45 +00:00
|
|
|
// Once Go-Fed is done calling Database methods, the relevant `id`
|
|
|
|
// entries are unlocked.
|
|
|
|
|
|
|
|
i, ok := f.locks.Load(id.String())
|
|
|
|
if !ok {
|
|
|
|
return errors.New("missing an id in unlock")
|
|
|
|
}
|
|
|
|
mu := i.(*sync.Mutex)
|
|
|
|
mu.Unlock()
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2021-04-20 16:14:23 +00:00
|
|
|
// InboxContains returns true if the OrderedCollection at 'inbox'
|
|
|
|
// contains the specified 'id'.
|
|
|
|
//
|
|
|
|
// The library makes this call only after acquiring a lock first.
|
|
|
|
func (f *federatingDB) InboxContains(c context.Context, inbox, id *url.URL) (contains bool, err error) {
|
2021-04-01 18:46:45 +00:00
|
|
|
return false, nil
|
|
|
|
}
|
|
|
|
|
2021-04-20 16:14:23 +00:00
|
|
|
// GetInbox returns the first ordered collection page of the outbox at
|
|
|
|
// the specified IRI, for prepending new items.
|
|
|
|
//
|
|
|
|
// The library makes this call only after acquiring a lock first.
|
|
|
|
func (f *federatingDB) GetInbox(c context.Context, inboxIRI *url.URL) (inbox vocab.ActivityStreamsOrderedCollectionPage, err error) {
|
2021-04-01 18:46:45 +00:00
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
|
2021-04-20 16:14:23 +00:00
|
|
|
// SetInbox saves the inbox value given from GetInbox, with new items
|
|
|
|
// prepended. Note that the new items must not be added as independent
|
|
|
|
// database entries. Separate calls to Create will do that.
|
|
|
|
//
|
|
|
|
// The library makes this call only after acquiring a lock first.
|
|
|
|
func (f *federatingDB) SetInbox(c context.Context, inbox vocab.ActivityStreamsOrderedCollectionPage) error {
|
2021-04-01 18:46:45 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2021-04-20 16:14:23 +00:00
|
|
|
// Owns returns true if the database has an entry for the IRI and it
|
|
|
|
// exists in the database.
|
|
|
|
//
|
|
|
|
// The library makes this call only after acquiring a lock first.
|
|
|
|
func (f *federatingDB) Owns(c context.Context, id *url.URL) (owns bool, err error) {
|
|
|
|
return false, nil
|
2021-04-01 18:46:45 +00:00
|
|
|
}
|
|
|
|
|
2021-04-20 16:14:23 +00:00
|
|
|
// ActorForOutbox fetches the actor's IRI for the given outbox IRI.
|
|
|
|
//
|
|
|
|
// The library makes this call only after acquiring a lock first.
|
|
|
|
func (f *federatingDB) ActorForOutbox(c context.Context, outboxIRI *url.URL) (actorIRI *url.URL, err error) {
|
2021-04-01 18:46:45 +00:00
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
|
2021-04-20 16:14:23 +00:00
|
|
|
// ActorForInbox fetches the actor's IRI for the given outbox IRI.
|
|
|
|
//
|
|
|
|
// The library makes this call only after acquiring a lock first.
|
|
|
|
func (f *federatingDB) ActorForInbox(c context.Context, inboxIRI *url.URL) (actorIRI *url.URL, err error) {
|
2021-04-01 18:46:45 +00:00
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
|
2021-04-20 16:14:23 +00:00
|
|
|
// OutboxForInbox fetches the corresponding actor's outbox IRI for the
|
|
|
|
// actor's inbox IRI.
|
|
|
|
//
|
|
|
|
// The library makes this call only after acquiring a lock first.
|
|
|
|
func (f *federatingDB) OutboxForInbox(c context.Context, inboxIRI *url.URL) (outboxIRI *url.URL, err error) {
|
2021-04-01 18:46:45 +00:00
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
|
2021-04-20 16:14:23 +00:00
|
|
|
// Exists returns true if the database has an entry for the specified
|
|
|
|
// id. It may not be owned by this application instance.
|
|
|
|
//
|
|
|
|
// The library makes this call only after acquiring a lock first.
|
|
|
|
func (f *federatingDB) Exists(c context.Context, id *url.URL) (exists bool, err error) {
|
2021-04-01 18:46:45 +00:00
|
|
|
return false, nil
|
|
|
|
}
|
|
|
|
|
2021-04-20 16:14:23 +00:00
|
|
|
// Get returns the database entry for the specified id.
|
|
|
|
//
|
|
|
|
// The library makes this call only after acquiring a lock first.
|
|
|
|
func (f *federatingDB) Get(c context.Context, id *url.URL) (value vocab.Type, err error) {
|
2021-04-01 18:46:45 +00:00
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
|
2021-04-20 16:14:23 +00:00
|
|
|
// Create adds a new entry to the database which must be able to be
|
|
|
|
// keyed by its id.
|
|
|
|
//
|
|
|
|
// Note that Activity values received from federated peers may also be
|
|
|
|
// created in the database this way if the Federating Protocol is
|
|
|
|
// enabled. The client may freely decide to store only the id instead of
|
|
|
|
// the entire value.
|
|
|
|
//
|
|
|
|
// The library makes this call only after acquiring a lock first.
|
|
|
|
//
|
|
|
|
// Under certain conditions and network activities, Create may be called
|
|
|
|
// multiple times for the same ActivityStreams object.
|
|
|
|
func (f *federatingDB) Create(c context.Context, asType vocab.Type) error {
|
2021-04-01 18:46:45 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2021-04-20 16:14:23 +00:00
|
|
|
// Update sets an existing entry to the database based on the value's
|
|
|
|
// id.
|
|
|
|
//
|
|
|
|
// Note that Activity values received from federated peers may also be
|
|
|
|
// updated in the database this way if the Federating Protocol is
|
|
|
|
// enabled. The client may freely decide to store only the id instead of
|
|
|
|
// the entire value.
|
|
|
|
//
|
|
|
|
// The library makes this call only after acquiring a lock first.
|
|
|
|
func (f *federatingDB) Update(c context.Context, asType vocab.Type) error {
|
2021-04-01 18:46:45 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2021-04-20 16:14:23 +00:00
|
|
|
// Delete removes the entry with the given id.
|
|
|
|
//
|
|
|
|
// Delete is only called for federated objects. Deletes from the Social
|
|
|
|
// Protocol instead call Update to create a Tombstone.
|
|
|
|
//
|
|
|
|
// The library makes this call only after acquiring a lock first.
|
|
|
|
func (f *federatingDB) Delete(c context.Context, id *url.URL) error {
|
2021-04-01 18:46:45 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2021-04-20 16:14:23 +00:00
|
|
|
// GetOutbox returns the first ordered collection page of the outbox
|
|
|
|
// at the specified IRI, for prepending new items.
|
|
|
|
//
|
|
|
|
// The library makes this call only after acquiring a lock first.
|
|
|
|
func (f *federatingDB) GetOutbox(c context.Context, outboxIRI *url.URL) (inbox vocab.ActivityStreamsOrderedCollectionPage, err error) {
|
2021-04-01 18:46:45 +00:00
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
|
2021-04-20 16:14:23 +00:00
|
|
|
// SetOutbox saves the outbox value given from GetOutbox, with new items
|
|
|
|
// prepended. Note that the new items must not be added as independent
|
|
|
|
// database entries. Separate calls to Create will do that.
|
|
|
|
//
|
|
|
|
// The library makes this call only after acquiring a lock first.
|
|
|
|
func (f *federatingDB) SetOutbox(c context.Context, outbox vocab.ActivityStreamsOrderedCollectionPage) error {
|
2021-04-01 18:46:45 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2021-04-20 16:14:23 +00:00
|
|
|
// NewID creates a new IRI id for the provided activity or object. The
|
|
|
|
// implementation does not need to set the 'id' property and simply
|
|
|
|
// needs to determine the value.
|
|
|
|
//
|
|
|
|
// The go-fed library will handle setting the 'id' property on the
|
|
|
|
// activity or object provided with the value returned.
|
|
|
|
func (f *federatingDB) NewID(c context.Context, t vocab.Type) (id *url.URL, err error) {
|
2021-04-01 18:46:45 +00:00
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
|
2021-04-20 16:14:23 +00:00
|
|
|
// Followers obtains the Followers Collection for an actor with the
|
|
|
|
// given id.
|
|
|
|
//
|
|
|
|
// If modified, the library will then call Update.
|
|
|
|
//
|
|
|
|
// The library makes this call only after acquiring a lock first.
|
|
|
|
func (f *federatingDB) Followers(c context.Context, actorIRI *url.URL) (followers vocab.ActivityStreamsCollection, err error) {
|
2021-04-01 18:46:45 +00:00
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
|
2021-04-20 16:14:23 +00:00
|
|
|
// Following obtains the Following Collection for an actor with the
|
|
|
|
// given id.
|
|
|
|
//
|
|
|
|
// If modified, the library will then call Update.
|
|
|
|
//
|
|
|
|
// The library makes this call only after acquiring a lock first.
|
|
|
|
func (f *federatingDB) Following(c context.Context, actorIRI *url.URL) (followers vocab.ActivityStreamsCollection, err error) {
|
2021-04-01 18:46:45 +00:00
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
|
2021-04-20 16:14:23 +00:00
|
|
|
// Liked obtains the Liked Collection for an actor with the
|
|
|
|
// given id.
|
|
|
|
//
|
|
|
|
// If modified, the library will then call Update.
|
|
|
|
//
|
|
|
|
// The library makes this call only after acquiring a lock first.
|
|
|
|
func (f *federatingDB) Liked(c context.Context, actorIRI *url.URL) (followers vocab.ActivityStreamsCollection, err error) {
|
2021-04-01 18:46:45 +00:00
|
|
|
return nil, nil
|
|
|
|
}
|