| 
									
										
										
										
											2021-08-25 15:34:33 +02:00
										 |  |  | /* | 
					
						
							|  |  |  |    GoToSocial | 
					
						
							| 
									
										
										
										
											2021-12-20 18:42:19 +01:00
										 |  |  |    Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org | 
					
						
							| 
									
										
										
										
											2021-08-25 15:34:33 +02: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" | 
					
						
							|  |  |  | 	"time" | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-11-22 08:46:19 +01:00
										 |  |  | 	"github.com/sirupsen/logrus" | 
					
						
							| 
									
										
										
										
											2021-08-25 15:34:33 +02:00
										 |  |  | 	"github.com/superseriousbusiness/gotosocial/internal/cache" | 
					
						
							|  |  |  | 	"github.com/superseriousbusiness/gotosocial/internal/db" | 
					
						
							|  |  |  | 	"github.com/superseriousbusiness/gotosocial/internal/gtsmodel" | 
					
						
							|  |  |  | 	"github.com/uptrace/bun" | 
					
						
							|  |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | type statusDB struct { | 
					
						
							| 
									
										
										
										
											2021-12-07 13:31:39 +01: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 15:34:33 +02: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 12:53:46 +02:00
										 |  |  | 			return s.newStatusQ(status).Where("status.id = ?", id).Scan(ctx) | 
					
						
							| 
									
										
										
										
											2021-09-01 10:08:21 +01:00
										 |  |  | 		}, | 
					
						
							|  |  |  | 	) | 
					
						
							| 
									
										
										
										
											2021-08-25 15:34:33 +02: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 12:53:46 +02:00
										 |  |  | 			return s.newStatusQ(status).Where("status.uri = ?", uri).Scan(ctx) | 
					
						
							| 
									
										
										
										
											2021-09-01 10:08:21 +01:00
										 |  |  | 		}, | 
					
						
							|  |  |  | 	) | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2021-08-25 15:34:33 +02: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 12:53:46 +02:00
										 |  |  | 			return s.newStatusQ(status).Where("status.url = ?", url).Scan(ctx) | 
					
						
							| 
									
										
										
										
											2021-09-01 10:08:21 +01:00
										 |  |  | 		}, | 
					
						
							|  |  |  | 	) | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2021-08-25 15:34:33 +02: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 15:34:33 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-01 10:08:21 +01:00
										 |  |  | 	if !cached { | 
					
						
							|  |  |  | 		status = >smodel.Status{} | 
					
						
							| 
									
										
										
										
											2021-08-25 15:34:33 +02: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 15:34:33 +02: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 15:34:33 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-01 10:08:21 +01:00
										 |  |  | 		// Place in the cache | 
					
						
							|  |  |  | 		s.cache.Put(status) | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2021-08-25 15:34:33 +02: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 15:34:33 +02:00
										 |  |  | 	if err != nil { | 
					
						
							| 
									
										
										
										
											2021-09-01 10:08:21 +01:00
										 |  |  | 		return nil, err | 
					
						
							| 
									
										
										
										
											2021-08-25 15:34:33 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-01 10:08:21 +01:00
										 |  |  | 	// Return the prepared status | 
					
						
							|  |  |  | 	status.Account = author | 
					
						
							|  |  |  | 	return status, nil | 
					
						
							| 
									
										
										
										
											2021-08-25 15:34:33 +02: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 15:34:33 +02: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 15:34:33 +02: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 15:34:33 +02:00
										 |  |  | 		_, err := tx.NewInsert().Model(status).Exec(ctx) | 
					
						
							|  |  |  | 		return err | 
					
						
							| 
									
										
										
										
											2021-09-01 10:08:21 +01:00
										 |  |  | 	}) | 
					
						
							| 
									
										
										
										
											2021-08-25 15:34:33 +02: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 08:46:19 +01:00
										 |  |  | 		entry, ok := e.Value.(*gtsmodel.Status) | 
					
						
							|  |  |  | 		if !ok { | 
					
						
							|  |  |  | 			logrus.Panic("GetStatusChildren: found status could not be asserted to *gtsmodel.Status") | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-08-25 15:34:33 +02: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) { | 
					
						
							|  |  |  | 	immediateChildren := []*gtsmodel.Status{} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	q := s.conn. | 
					
						
							|  |  |  | 		NewSelect(). | 
					
						
							|  |  |  | 		Model(&immediateChildren). | 
					
						
							|  |  |  | 		Where("in_reply_to_id = ?", status.ID) | 
					
						
							|  |  |  | 	if minID != "" { | 
					
						
							|  |  |  | 		q = q.Where("status.id > ?", minID) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if err := q.Scan(ctx); err != nil { | 
					
						
							|  |  |  | 		return | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	for _, child := range immediateChildren { | 
					
						
							|  |  |  | 	insertLoop: | 
					
						
							|  |  |  | 		for e := foundStatuses.Front(); e != nil; e = e.Next() { | 
					
						
							| 
									
										
										
										
											2021-11-22 08:46:19 +01:00
										 |  |  | 			entry, ok := e.Value.(*gtsmodel.Status) | 
					
						
							|  |  |  | 			if !ok { | 
					
						
							|  |  |  | 				logrus.Panic("statusChildren: found status could not be asserted to *gtsmodel.Status") | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-08-25 15:34:33 +02:00
										 |  |  | 			if child.InReplyToAccountID != "" && entry.ID == child.InReplyToID { | 
					
						
							|  |  |  | 				foundStatuses.InsertAfter(child, e) | 
					
						
							|  |  |  | 				break insertLoop | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-09 16:15:25 +02: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 15:34:33 +02: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 15:34:33 +02: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 15:34:33 +02: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 15:34:33 +02: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 15:34:33 +02: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 08:46:19 +01: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 15:34:33 +02: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 08:46:19 +01: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 15:34:33 +02:00
										 |  |  | } |