2021-08-20 11:26:56 +01:00
|
|
|
/*
|
|
|
|
GoToSocial
|
2023-01-05 11:43:00 +00:00
|
|
|
Copyright (C) 2021-2023 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"
|
|
|
|
|
|
|
|
"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"
|
2022-12-08 17:35:14 +00:00
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/state"
|
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-12-08 17:35:14 +00:00
|
|
|
state *state.State
|
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")
|
|
|
|
}
|
|
|
|
|
2022-11-15 18:45:15 +00:00
|
|
|
func (m *mentionDB) GetMention(ctx context.Context, id string) (*gtsmodel.Mention, db.Error) {
|
2022-12-08 17:35:14 +00:00
|
|
|
return m.state.Caches.GTS.Mention().Load("ID", func() (*gtsmodel.Mention, error) {
|
2022-11-15 18:45:15 +00:00
|
|
|
var mention gtsmodel.Mention
|
2021-08-20 11:26:56 +01:00
|
|
|
|
2022-11-15 18:45:15 +00:00
|
|
|
q := m.newMentionQ(&mention).
|
|
|
|
Where("? = ?", bun.Ident("mention.id"), id)
|
2022-07-10 16:18:21 +01:00
|
|
|
|
2022-11-15 18:45:15 +00:00
|
|
|
if err := q.Scan(ctx); err != nil {
|
|
|
|
return nil, m.conn.ProcessError(err)
|
|
|
|
}
|
2021-08-29 15:41:41 +01:00
|
|
|
|
2022-11-15 18:45:15 +00:00
|
|
|
return &mention, nil
|
|
|
|
}, 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-19 09:47:55 +01:00
|
|
|
log.Errorf("GetMentions: error getting mention %q: %v", id, err)
|
2022-07-10 16:18:21 +01:00
|
|
|
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
|
|
|
|
}
|