2021-08-20 11:26:56 +01:00
|
|
|
/*
|
|
|
|
GoToSocial
|
|
|
|
Copyright (C) 2021 GoToSocial Authors admin@gotosocial.org
|
|
|
|
|
|
|
|
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/config"
|
|
|
|
"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 notificationDB struct {
|
|
|
|
config *config.Config
|
2021-08-29 15:41:41 +01:00
|
|
|
conn *DBConn
|
|
|
|
cache *ttlcache.Cache
|
2021-08-20 11:26:56 +01:00
|
|
|
}
|
|
|
|
|
2021-08-25 14:34:33 +01:00
|
|
|
func (n *notificationDB) newNotificationQ(i interface{}) *bun.SelectQuery {
|
|
|
|
return n.conn.
|
|
|
|
NewSelect().
|
|
|
|
Model(i).
|
2021-08-20 11:26:56 +01:00
|
|
|
Relation("OriginAccount").
|
|
|
|
Relation("TargetAccount").
|
|
|
|
Relation("Status")
|
|
|
|
}
|
|
|
|
|
2021-08-25 14:34:33 +01:00
|
|
|
func (n *notificationDB) GetNotification(ctx context.Context, id string) (*gtsmodel.Notification, db.Error) {
|
2021-08-29 15:41:41 +01:00
|
|
|
if notification, cached := n.getNotificationCache(id); cached {
|
2021-08-20 11:26:56 +01:00
|
|
|
return notification, nil
|
|
|
|
}
|
|
|
|
|
2021-08-29 15:41:41 +01:00
|
|
|
notif := >smodel.Notification{}
|
|
|
|
err := n.getNotificationDB(ctx, id, notif)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
2021-08-20 11:26:56 +01:00
|
|
|
}
|
2021-08-29 15:41:41 +01:00
|
|
|
return notif, nil
|
2021-08-20 11:26:56 +01:00
|
|
|
}
|
|
|
|
|
2021-08-25 14:34:33 +01:00
|
|
|
func (n *notificationDB) GetNotifications(ctx context.Context, accountID string, limit int, maxID string, sinceID string) ([]*gtsmodel.Notification, db.Error) {
|
2021-08-29 15:41:41 +01:00
|
|
|
// Ensure reasonable
|
|
|
|
if limit < 0 {
|
|
|
|
limit = 0
|
|
|
|
}
|
|
|
|
|
|
|
|
// Make a guess for slice size
|
|
|
|
notifications := make([]*gtsmodel.Notification, 0, limit)
|
|
|
|
|
2021-08-20 11:26:56 +01:00
|
|
|
q := n.conn.
|
2021-08-25 14:34:33 +01:00
|
|
|
NewSelect().
|
2021-08-29 15:41:41 +01:00
|
|
|
Model(¬ifications).
|
2021-08-20 11:26:56 +01:00
|
|
|
Column("id").
|
|
|
|
Where("target_account_id = ?", accountID).
|
|
|
|
Order("id DESC")
|
|
|
|
|
|
|
|
if maxID != "" {
|
|
|
|
q = q.Where("id < ?", maxID)
|
|
|
|
}
|
|
|
|
|
|
|
|
if sinceID != "" {
|
|
|
|
q = q.Where("id > ?", sinceID)
|
|
|
|
}
|
|
|
|
|
|
|
|
if limit != 0 {
|
|
|
|
q = q.Limit(limit)
|
|
|
|
}
|
|
|
|
|
2021-08-29 15:41:41 +01:00
|
|
|
err := q.Scan(ctx)
|
2021-08-20 11:26:56 +01:00
|
|
|
if err != nil {
|
2021-08-29 15:41:41 +01:00
|
|
|
return nil, n.conn.ProcessError(err)
|
2021-08-20 11:26:56 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// now we have the IDs, select the notifs one by one
|
|
|
|
// reason for this is that for each notif, we can instead get it from our cache if it's cached
|
2021-08-29 15:41:41 +01:00
|
|
|
for i, notif := range notifications {
|
|
|
|
// Check cache for notification
|
|
|
|
nn, cached := n.getNotificationCache(notif.ID)
|
|
|
|
if cached {
|
|
|
|
notifications[i] = nn
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check DB for notification
|
|
|
|
err := n.getNotificationDB(ctx, notif.ID, notif)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
2021-08-20 11:26:56 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return notifications, nil
|
|
|
|
}
|
2021-08-29 15:41:41 +01:00
|
|
|
|
|
|
|
func (n *notificationDB) getNotificationCache(id string) (*gtsmodel.Notification, bool) {
|
|
|
|
v, ok := n.cache.Get(id)
|
|
|
|
if !ok {
|
|
|
|
return nil, false
|
|
|
|
}
|
|
|
|
return v.(*gtsmodel.Notification), true
|
|
|
|
}
|
|
|
|
|
|
|
|
func (n *notificationDB) putNotificationCache(notif *gtsmodel.Notification) {
|
|
|
|
n.cache.Set(notif.ID, notif)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (n *notificationDB) getNotificationDB(ctx context.Context, id string, dst *gtsmodel.Notification) error {
|
|
|
|
q := n.newNotificationQ(dst).
|
|
|
|
Where("notification.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 n.conn.ProcessError(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
n.putNotificationCache(dst)
|
|
|
|
return nil
|
|
|
|
}
|