2021-08-25 14:34:33 +01:00
|
|
|
/*
|
|
|
|
GoToSocial
|
2021-12-20 17:42:19 +00:00
|
|
|
Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
|
2021-08-25 14:34:33 +01:00
|
|
|
|
|
|
|
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 bundb
|
|
|
|
|
|
|
|
import (
|
|
|
|
"container/list"
|
|
|
|
"context"
|
2022-07-10 16:18:21 +01:00
|
|
|
"database/sql"
|
2022-09-12 12:03:23 +01:00
|
|
|
"errors"
|
2021-08-25 14:34:33 +01:00
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/cache"
|
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/db"
|
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/gtsmodel"
|
2022-07-19 09:47:55 +01:00
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/log"
|
2021-08-25 14:34:33 +01:00
|
|
|
"github.com/uptrace/bun"
|
|
|
|
)
|
|
|
|
|
|
|
|
type statusDB struct {
|
2021-12-07 12:31:39 +00:00
|
|
|
conn *DBConn
|
|
|
|
cache *cache.StatusCache
|
2021-09-01 10:08:21 +01:00
|
|
|
|
|
|
|
// TODO: keep method definitions in same place but instead have receiver
|
|
|
|
// all point to one single "db" type, so they can all share methods
|
|
|
|
// and caches where necessary
|
|
|
|
accounts *accountDB
|
2021-08-25 14:34:33 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
func (s *statusDB) newStatusQ(status interface{}) *bun.SelectQuery {
|
|
|
|
return s.conn.
|
|
|
|
NewSelect().
|
|
|
|
Model(status).
|
|
|
|
Relation("Attachments").
|
|
|
|
Relation("Tags").
|
|
|
|
Relation("Mentions").
|
|
|
|
Relation("Emojis").
|
|
|
|
Relation("Account").
|
|
|
|
Relation("InReplyToAccount").
|
|
|
|
Relation("BoostOfAccount").
|
|
|
|
Relation("CreatedWithApplication")
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *statusDB) newFaveQ(faves interface{}) *bun.SelectQuery {
|
|
|
|
return s.conn.
|
|
|
|
NewSelect().
|
|
|
|
Model(faves).
|
|
|
|
Relation("Account").
|
|
|
|
Relation("TargetAccount").
|
|
|
|
Relation("Status")
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *statusDB) GetStatusByID(ctx context.Context, id string) (*gtsmodel.Status, db.Error) {
|
2021-09-01 10:08:21 +01:00
|
|
|
return s.getStatus(
|
|
|
|
ctx,
|
|
|
|
func() (*gtsmodel.Status, bool) {
|
|
|
|
return s.cache.GetByID(id)
|
|
|
|
},
|
|
|
|
func(status *gtsmodel.Status) error {
|
2022-05-02 11:53:46 +01:00
|
|
|
return s.newStatusQ(status).Where("status.id = ?", id).Scan(ctx)
|
2021-09-01 10:08:21 +01:00
|
|
|
},
|
|
|
|
)
|
2021-08-25 14:34:33 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
func (s *statusDB) GetStatusByURI(ctx context.Context, uri string) (*gtsmodel.Status, db.Error) {
|
2021-09-01 10:08:21 +01:00
|
|
|
return s.getStatus(
|
|
|
|
ctx,
|
|
|
|
func() (*gtsmodel.Status, bool) {
|
|
|
|
return s.cache.GetByURI(uri)
|
|
|
|
},
|
|
|
|
func(status *gtsmodel.Status) error {
|
2022-05-02 11:53:46 +01:00
|
|
|
return s.newStatusQ(status).Where("status.uri = ?", uri).Scan(ctx)
|
2021-09-01 10:08:21 +01:00
|
|
|
},
|
|
|
|
)
|
|
|
|
}
|
2021-08-25 14:34:33 +01:00
|
|
|
|
2021-09-01 10:08:21 +01:00
|
|
|
func (s *statusDB) GetStatusByURL(ctx context.Context, url string) (*gtsmodel.Status, db.Error) {
|
|
|
|
return s.getStatus(
|
|
|
|
ctx,
|
|
|
|
func() (*gtsmodel.Status, bool) {
|
|
|
|
return s.cache.GetByURL(url)
|
|
|
|
},
|
|
|
|
func(status *gtsmodel.Status) error {
|
2022-05-02 11:53:46 +01:00
|
|
|
return s.newStatusQ(status).Where("status.url = ?", url).Scan(ctx)
|
2021-09-01 10:08:21 +01:00
|
|
|
},
|
|
|
|
)
|
|
|
|
}
|
2021-08-25 14:34:33 +01:00
|
|
|
|
2021-09-01 10:08:21 +01:00
|
|
|
func (s *statusDB) getStatus(ctx context.Context, cacheGet func() (*gtsmodel.Status, bool), dbQuery func(*gtsmodel.Status) error) (*gtsmodel.Status, db.Error) {
|
|
|
|
// Attempt to fetch cached status
|
|
|
|
status, cached := cacheGet()
|
2021-08-25 14:34:33 +01:00
|
|
|
|
2021-09-01 10:08:21 +01:00
|
|
|
if !cached {
|
|
|
|
status = >smodel.Status{}
|
2021-08-25 14:34:33 +01:00
|
|
|
|
2021-09-01 10:08:21 +01:00
|
|
|
// Not cached! Perform database query
|
|
|
|
err := dbQuery(status)
|
|
|
|
if err != nil {
|
|
|
|
return nil, s.conn.ProcessError(err)
|
|
|
|
}
|
2021-08-25 14:34:33 +01:00
|
|
|
|
2021-09-01 10:08:21 +01:00
|
|
|
// If there is boosted, fetch from DB also
|
|
|
|
if status.BoostOfID != "" {
|
|
|
|
boostOf, err := s.GetStatusByID(ctx, status.BoostOfID)
|
|
|
|
if err == nil {
|
|
|
|
status.BoostOf = boostOf
|
|
|
|
}
|
|
|
|
}
|
2021-08-25 14:34:33 +01:00
|
|
|
|
2021-09-01 10:08:21 +01:00
|
|
|
// Place in the cache
|
|
|
|
s.cache.Put(status)
|
|
|
|
}
|
2021-08-25 14:34:33 +01:00
|
|
|
|
2021-09-01 10:08:21 +01:00
|
|
|
// Set the status author account
|
|
|
|
author, err := s.accounts.GetAccountByID(ctx, status.AccountID)
|
2021-08-25 14:34:33 +01:00
|
|
|
if err != nil {
|
2021-09-01 10:08:21 +01:00
|
|
|
return nil, err
|
2021-08-25 14:34:33 +01:00
|
|
|
}
|
|
|
|
|
2021-09-01 10:08:21 +01:00
|
|
|
// Return the prepared status
|
|
|
|
status.Account = author
|
|
|
|
return status, nil
|
2021-08-25 14:34:33 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
func (s *statusDB) PutStatus(ctx context.Context, status *gtsmodel.Status) db.Error {
|
2021-09-01 10:08:21 +01:00
|
|
|
return s.conn.RunInTx(ctx, func(tx bun.Tx) error {
|
2021-08-25 14:34:33 +01:00
|
|
|
// create links between this status and any emojis it uses
|
|
|
|
for _, i := range status.EmojiIDs {
|
|
|
|
if _, err := tx.NewInsert().Model(>smodel.StatusToEmoji{
|
|
|
|
StatusID: status.ID,
|
|
|
|
EmojiID: i,
|
|
|
|
}).Exec(ctx); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// create links between this status and any tags it uses
|
|
|
|
for _, i := range status.TagIDs {
|
|
|
|
if _, err := tx.NewInsert().Model(>smodel.StatusToTag{
|
|
|
|
StatusID: status.ID,
|
|
|
|
TagID: i,
|
|
|
|
}).Exec(ctx); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// change the status ID of the media attachments to the new status
|
|
|
|
for _, a := range status.Attachments {
|
|
|
|
a.StatusID = status.ID
|
|
|
|
a.UpdatedAt = time.Now()
|
2021-08-27 10:38:24 +01:00
|
|
|
if _, err := tx.NewUpdate().Model(a).
|
2021-08-25 14:34:33 +01:00
|
|
|
Where("id = ?", a.ID).
|
|
|
|
Exec(ctx); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-09-01 10:08:21 +01:00
|
|
|
// Finally, insert the status
|
2021-08-25 14:34:33 +01:00
|
|
|
_, err := tx.NewInsert().Model(status).Exec(ctx)
|
|
|
|
return err
|
2021-09-01 10:08:21 +01:00
|
|
|
})
|
2021-08-25 14:34:33 +01:00
|
|
|
}
|
|
|
|
|
2022-09-12 12:03:23 +01:00
|
|
|
func (s *statusDB) UpdateStatus(ctx context.Context, status *gtsmodel.Status) (*gtsmodel.Status, db.Error) {
|
|
|
|
err := s.conn.RunInTx(ctx, func(tx bun.Tx) error {
|
|
|
|
// create links between this status and any emojis it uses
|
|
|
|
for _, i := range status.EmojiIDs {
|
|
|
|
if _, err := tx.NewInsert().Model(>smodel.StatusToEmoji{
|
|
|
|
StatusID: status.ID,
|
|
|
|
EmojiID: i,
|
|
|
|
}).Exec(ctx); err != nil {
|
|
|
|
err = s.conn.errProc(err)
|
|
|
|
if !errors.Is(err, db.ErrAlreadyExists) {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// create links between this status and any tags it uses
|
|
|
|
for _, i := range status.TagIDs {
|
|
|
|
if _, err := tx.NewInsert().Model(>smodel.StatusToTag{
|
|
|
|
StatusID: status.ID,
|
|
|
|
TagID: i,
|
|
|
|
}).Exec(ctx); err != nil {
|
|
|
|
err = s.conn.errProc(err)
|
|
|
|
if !errors.Is(err, db.ErrAlreadyExists) {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// change the status ID of the media attachments to this status
|
|
|
|
for _, a := range status.Attachments {
|
|
|
|
a.StatusID = status.ID
|
|
|
|
a.UpdatedAt = time.Now()
|
|
|
|
if _, err := tx.NewUpdate().Model(a).
|
|
|
|
Where("id = ?", a.ID).
|
|
|
|
Exec(ctx); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Finally, update the status itself
|
|
|
|
if _, err := tx.NewUpdate().Model(status).WherePK().Exec(ctx); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
s.cache.Put(status)
|
|
|
|
return nil
|
|
|
|
})
|
|
|
|
|
|
|
|
return status, err
|
|
|
|
}
|
|
|
|
|
2021-08-25 14:34:33 +01:00
|
|
|
func (s *statusDB) GetStatusParents(ctx context.Context, status *gtsmodel.Status, onlyDirect bool) ([]*gtsmodel.Status, db.Error) {
|
|
|
|
parents := []*gtsmodel.Status{}
|
|
|
|
s.statusParent(ctx, status, &parents, onlyDirect)
|
|
|
|
return parents, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *statusDB) statusParent(ctx context.Context, status *gtsmodel.Status, foundStatuses *[]*gtsmodel.Status, onlyDirect bool) {
|
|
|
|
if status.InReplyToID == "" {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
parentStatus, err := s.GetStatusByID(ctx, status.InReplyToID)
|
|
|
|
if err == nil {
|
|
|
|
*foundStatuses = append(*foundStatuses, parentStatus)
|
|
|
|
}
|
|
|
|
|
|
|
|
if onlyDirect {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
s.statusParent(ctx, parentStatus, foundStatuses, false)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *statusDB) GetStatusChildren(ctx context.Context, status *gtsmodel.Status, onlyDirect bool, minID string) ([]*gtsmodel.Status, db.Error) {
|
|
|
|
foundStatuses := &list.List{}
|
|
|
|
foundStatuses.PushFront(status)
|
|
|
|
s.statusChildren(ctx, status, foundStatuses, onlyDirect, minID)
|
|
|
|
|
|
|
|
children := []*gtsmodel.Status{}
|
|
|
|
for e := foundStatuses.Front(); e != nil; e = e.Next() {
|
|
|
|
// only append children, not the overall parent status
|
2021-11-22 07:46:19 +00:00
|
|
|
entry, ok := e.Value.(*gtsmodel.Status)
|
|
|
|
if !ok {
|
2022-07-19 09:47:55 +01:00
|
|
|
log.Panic("GetStatusChildren: found status could not be asserted to *gtsmodel.Status")
|
2021-11-22 07:46:19 +00:00
|
|
|
}
|
|
|
|
|
2021-08-25 14:34:33 +01:00
|
|
|
if entry.ID != status.ID {
|
|
|
|
children = append(children, entry)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return children, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *statusDB) statusChildren(ctx context.Context, status *gtsmodel.Status, foundStatuses *list.List, onlyDirect bool, minID string) {
|
2022-07-10 16:18:21 +01:00
|
|
|
childIDs := []string{}
|
2021-08-25 14:34:33 +01:00
|
|
|
|
|
|
|
q := s.conn.
|
|
|
|
NewSelect().
|
2022-07-10 16:18:21 +01:00
|
|
|
Table("statuses").
|
|
|
|
Column("id").
|
2021-08-25 14:34:33 +01:00
|
|
|
Where("in_reply_to_id = ?", status.ID)
|
|
|
|
if minID != "" {
|
2022-07-10 16:18:21 +01:00
|
|
|
q = q.Where("id > ?", minID)
|
2021-08-25 14:34:33 +01:00
|
|
|
}
|
|
|
|
|
2022-07-10 16:18:21 +01:00
|
|
|
if err := q.Scan(ctx, &childIDs); err != nil {
|
|
|
|
if err != sql.ErrNoRows {
|
2022-07-19 09:47:55 +01:00
|
|
|
log.Errorf("statusChildren: error getting children for %q: %v", status.ID, err)
|
2022-07-10 16:18:21 +01:00
|
|
|
}
|
2021-08-25 14:34:33 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2022-07-10 16:18:21 +01:00
|
|
|
for _, id := range childIDs {
|
|
|
|
// Fetch child with ID from database
|
|
|
|
child, err := s.GetStatusByID(ctx, id)
|
|
|
|
if err != nil {
|
2022-07-19 09:47:55 +01:00
|
|
|
log.Errorf("statusChildren: error getting child status %q: %v", id, err)
|
2022-07-10 16:18:21 +01:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2021-08-25 14:34:33 +01:00
|
|
|
insertLoop:
|
|
|
|
for e := foundStatuses.Front(); e != nil; e = e.Next() {
|
2021-11-22 07:46:19 +00:00
|
|
|
entry, ok := e.Value.(*gtsmodel.Status)
|
|
|
|
if !ok {
|
2022-07-19 09:47:55 +01:00
|
|
|
log.Panic("statusChildren: found status could not be asserted to *gtsmodel.Status")
|
2021-11-22 07:46:19 +00:00
|
|
|
}
|
|
|
|
|
2021-08-25 14:34:33 +01:00
|
|
|
if child.InReplyToAccountID != "" && entry.ID == child.InReplyToID {
|
|
|
|
foundStatuses.InsertAfter(child, e)
|
|
|
|
break insertLoop
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-09-09 15:15:25 +01:00
|
|
|
// if we're not only looking for direct children of status, then do the same children-finding
|
|
|
|
// operation for the found child status too.
|
|
|
|
if !onlyDirect {
|
|
|
|
s.statusChildren(ctx, child, foundStatuses, false, minID)
|
2021-08-25 14:34:33 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *statusDB) CountStatusReplies(ctx context.Context, status *gtsmodel.Status) (int, db.Error) {
|
|
|
|
return s.conn.NewSelect().Model(>smodel.Status{}).Where("in_reply_to_id = ?", status.ID).Count(ctx)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *statusDB) CountStatusReblogs(ctx context.Context, status *gtsmodel.Status) (int, db.Error) {
|
|
|
|
return s.conn.NewSelect().Model(>smodel.Status{}).Where("boost_of_id = ?", status.ID).Count(ctx)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *statusDB) CountStatusFaves(ctx context.Context, status *gtsmodel.Status) (int, db.Error) {
|
|
|
|
return s.conn.NewSelect().Model(>smodel.StatusFave{}).Where("status_id = ?", status.ID).Count(ctx)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *statusDB) IsStatusFavedBy(ctx context.Context, status *gtsmodel.Status, accountID string) (bool, db.Error) {
|
|
|
|
q := s.conn.
|
|
|
|
NewSelect().
|
|
|
|
Model(>smodel.StatusFave{}).
|
|
|
|
Where("status_id = ?", status.ID).
|
|
|
|
Where("account_id = ?", accountID)
|
|
|
|
|
2021-08-29 15:41:41 +01:00
|
|
|
return s.conn.Exists(ctx, q)
|
2021-08-25 14:34:33 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
func (s *statusDB) IsStatusRebloggedBy(ctx context.Context, status *gtsmodel.Status, accountID string) (bool, db.Error) {
|
|
|
|
q := s.conn.
|
|
|
|
NewSelect().
|
|
|
|
Model(>smodel.Status{}).
|
|
|
|
Where("boost_of_id = ?", status.ID).
|
|
|
|
Where("account_id = ?", accountID)
|
|
|
|
|
2021-08-29 15:41:41 +01:00
|
|
|
return s.conn.Exists(ctx, q)
|
2021-08-25 14:34:33 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
func (s *statusDB) IsStatusMutedBy(ctx context.Context, status *gtsmodel.Status, accountID string) (bool, db.Error) {
|
|
|
|
q := s.conn.
|
|
|
|
NewSelect().
|
|
|
|
Model(>smodel.StatusMute{}).
|
|
|
|
Where("status_id = ?", status.ID).
|
|
|
|
Where("account_id = ?", accountID)
|
|
|
|
|
2021-08-29 15:41:41 +01:00
|
|
|
return s.conn.Exists(ctx, q)
|
2021-08-25 14:34:33 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
func (s *statusDB) IsStatusBookmarkedBy(ctx context.Context, status *gtsmodel.Status, accountID string) (bool, db.Error) {
|
|
|
|
q := s.conn.
|
|
|
|
NewSelect().
|
|
|
|
Model(>smodel.StatusBookmark{}).
|
|
|
|
Where("status_id = ?", status.ID).
|
|
|
|
Where("account_id = ?", accountID)
|
|
|
|
|
2021-08-29 15:41:41 +01:00
|
|
|
return s.conn.Exists(ctx, q)
|
2021-08-25 14:34:33 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
func (s *statusDB) GetStatusFaves(ctx context.Context, status *gtsmodel.Status) ([]*gtsmodel.StatusFave, db.Error) {
|
|
|
|
faves := []*gtsmodel.StatusFave{}
|
|
|
|
|
|
|
|
q := s.newFaveQ(&faves).
|
|
|
|
Where("status_id = ?", status.ID)
|
|
|
|
|
2021-11-22 07:46:19 +00:00
|
|
|
if err := q.Scan(ctx); err != nil {
|
2021-08-29 15:41:41 +01:00
|
|
|
return nil, s.conn.ProcessError(err)
|
|
|
|
}
|
|
|
|
return faves, nil
|
2021-08-25 14:34:33 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
func (s *statusDB) GetStatusReblogs(ctx context.Context, status *gtsmodel.Status) ([]*gtsmodel.Status, db.Error) {
|
|
|
|
reblogs := []*gtsmodel.Status{}
|
|
|
|
|
|
|
|
q := s.newStatusQ(&reblogs).
|
|
|
|
Where("boost_of_id = ?", status.ID)
|
|
|
|
|
2021-11-22 07:46:19 +00:00
|
|
|
if err := q.Scan(ctx); err != nil {
|
2021-08-29 15:41:41 +01:00
|
|
|
return nil, s.conn.ProcessError(err)
|
|
|
|
}
|
|
|
|
return reblogs, nil
|
2021-08-25 14:34:33 +01:00
|
|
|
}
|