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"
|
|
|
|
|
2021-08-29 15:41:41 +01:00
|
|
|
"github.com/ReneKroon/ttlcache"
|
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
|
|
|
|
cache *ttlcache.Cache
|
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) getMentionCached(id string) (*gtsmodel.Mention, bool) {
|
|
|
|
v, ok := m.cache.Get(id)
|
|
|
|
if !ok {
|
|
|
|
return nil, false
|
2021-08-20 11:26:56 +01:00
|
|
|
}
|
2022-04-02 14:40:09 +01:00
|
|
|
|
|
|
|
mention, ok := v.(*gtsmodel.Mention)
|
|
|
|
if !ok {
|
|
|
|
panic("mention cache entry was not a mention")
|
|
|
|
}
|
|
|
|
|
|
|
|
return mention, true
|
2021-08-29 15:41:41 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
func (m *mentionDB) putMentionCache(mention *gtsmodel.Mention) {
|
|
|
|
m.cache.Set(mention.ID, mention)
|
|
|
|
}
|
2021-08-20 11:26:56 +01:00
|
|
|
|
2021-08-29 15:41:41 +01:00
|
|
|
func (m *mentionDB) getMentionDB(ctx context.Context, id string) (*gtsmodel.Mention, db.Error) {
|
2021-08-20 11:26:56 +01:00
|
|
|
mention := >smodel.Mention{}
|
|
|
|
|
|
|
|
q := m.newMentionQ(mention).
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2021-08-29 15:41:41 +01:00
|
|
|
m.putMentionCache(mention)
|
|
|
|
return mention, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *mentionDB) GetMention(ctx context.Context, id string) (*gtsmodel.Mention, db.Error) {
|
|
|
|
if mention, cached := m.getMentionCached(id); cached {
|
|
|
|
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 cache
|
|
|
|
mention, cached := m.getMentionCached(id)
|
|
|
|
if cached {
|
|
|
|
mentions = append(mentions, mention)
|
|
|
|
}
|
2021-08-20 11:26:56 +01:00
|
|
|
|
2021-08-29 15:41:41 +01:00
|
|
|
// Attempt fetch from DB
|
|
|
|
mention, err := m.getMentionDB(ctx, id)
|
2021-08-20 11:26:56 +01:00
|
|
|
if err != nil {
|
2021-08-29 15:41:41 +01:00
|
|
|
return nil, err
|
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
|
|
|
|
}
|