2021-08-20 11:26:56 +01:00
|
|
|
/*
|
|
|
|
GoToSocial
|
2021-12-20 17:42:19 +00:00
|
|
|
Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
|
2021-08-20 11:26:56 +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/>.
|
|
|
|
*/
|
|
|
|
|
2021-08-25 14:34:33 +01:00
|
|
|
package bundb
|
2021-08-20 11:26:56 +01:00
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
|
2022-07-10 16:18:21 +01:00
|
|
|
"codeberg.org/gruf/go-cache/v2"
|
|
|
|
"github.com/sirupsen/logrus"
|
2021-08-20 11:26:56 +01:00
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/db"
|
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/gtsmodel"
|
2021-08-25 14:34:33 +01:00
|
|
|
"github.com/uptrace/bun"
|
2021-08-20 11:26:56 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
type mentionDB struct {
|
2021-12-07 12:31:39 +00:00
|
|
|
conn *DBConn
|
2022-07-10 16:18:21 +01:00
|
|
|
cache cache.Cache[string, *gtsmodel.Mention]
|
2021-08-20 11:26:56 +01:00
|
|
|
}
|
|
|
|
|
2021-08-25 14:34:33 +01:00
|
|
|
func (m *mentionDB) newMentionQ(i interface{}) *bun.SelectQuery {
|
|
|
|
return m.conn.
|
|
|
|
NewSelect().
|
|
|
|
Model(i).
|
2021-08-20 11:26:56 +01:00
|
|
|
Relation("Status").
|
|
|
|
Relation("OriginAccount").
|
|
|
|
Relation("TargetAccount")
|
|
|
|
}
|
|
|
|
|
2021-08-29 15:41:41 +01:00
|
|
|
func (m *mentionDB) getMentionDB(ctx context.Context, id string) (*gtsmodel.Mention, db.Error) {
|
2022-07-10 16:18:21 +01:00
|
|
|
mention := gtsmodel.Mention{}
|
2021-08-20 11:26:56 +01:00
|
|
|
|
2022-07-10 16:18:21 +01:00
|
|
|
q := m.newMentionQ(&mention).
|
2021-08-20 11:26:56 +01:00
|
|
|
Where("mention.id = ?", 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, m.conn.ProcessError(err)
|
2021-08-20 11:26:56 +01:00
|
|
|
}
|
|
|
|
|
2022-07-10 16:18:21 +01:00
|
|
|
copy := mention
|
|
|
|
m.cache.Set(mention.ID, ©)
|
|
|
|
|
|
|
|
return &mention, nil
|
2021-08-29 15:41:41 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
func (m *mentionDB) GetMention(ctx context.Context, id string) (*gtsmodel.Mention, db.Error) {
|
2022-07-10 16:18:21 +01:00
|
|
|
if mention, ok := m.cache.Get(id); ok {
|
2021-08-29 15:41:41 +01:00
|
|
|
return mention, nil
|
|
|
|
}
|
|
|
|
return m.getMentionDB(ctx, id)
|
2021-08-20 11:26:56 +01:00
|
|
|
}
|
|
|
|
|
2021-08-25 14:34:33 +01:00
|
|
|
func (m *mentionDB) GetMentions(ctx context.Context, ids []string) ([]*gtsmodel.Mention, db.Error) {
|
2021-08-29 15:41:41 +01:00
|
|
|
mentions := make([]*gtsmodel.Mention, 0, len(ids))
|
|
|
|
|
|
|
|
for _, id := range ids {
|
|
|
|
// Attempt fetch from DB
|
2022-07-10 16:18:21 +01:00
|
|
|
mention, err := m.GetMention(ctx, id)
|
2021-08-20 11:26:56 +01:00
|
|
|
if err != nil {
|
2022-07-10 16:18:21 +01:00
|
|
|
logrus.Errorf("GetMentions: error getting mention %q: %v", id, err)
|
|
|
|
continue
|
2021-08-20 11:26:56 +01:00
|
|
|
}
|
2021-08-29 15:41:41 +01:00
|
|
|
|
|
|
|
// Append mention
|
2021-08-20 11:26:56 +01:00
|
|
|
mentions = append(mentions, mention)
|
|
|
|
}
|
|
|
|
|
|
|
|
return mentions, nil
|
|
|
|
}
|