2021-07-06 12:29:11 +01:00
|
|
|
/*
|
|
|
|
GoToSocial
|
2021-12-20 17:42:19 +00:00
|
|
|
Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
|
2021-07-06 12:29:11 +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-07-06 12:29:11 +01:00
|
|
|
|
|
|
|
import (
|
2021-08-20 11:26:56 +01:00
|
|
|
"context"
|
2022-03-07 10:08:26 +00:00
|
|
|
"time"
|
2021-07-06 12:29:11 +01:00
|
|
|
|
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/db"
|
2021-08-20 11:26:56 +01:00
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/gtsmodel"
|
2021-08-25 14:34:33 +01:00
|
|
|
"github.com/uptrace/bun"
|
2021-07-06 12:29:11 +01:00
|
|
|
)
|
|
|
|
|
2021-08-20 11:26:56 +01:00
|
|
|
type mediaDB struct {
|
2021-12-07 12:31:39 +00:00
|
|
|
conn *DBConn
|
2021-08-20 11:26:56 +01:00
|
|
|
}
|
|
|
|
|
2021-08-25 14:34:33 +01:00
|
|
|
func (m *mediaDB) newMediaQ(i interface{}) *bun.SelectQuery {
|
|
|
|
return m.conn.
|
|
|
|
NewSelect().
|
|
|
|
Model(i).
|
2021-08-20 11:26:56 +01:00
|
|
|
Relation("Account")
|
|
|
|
}
|
|
|
|
|
2021-08-25 14:34:33 +01:00
|
|
|
func (m *mediaDB) GetAttachmentByID(ctx context.Context, id string) (*gtsmodel.MediaAttachment, db.Error) {
|
2021-08-20 11:26:56 +01:00
|
|
|
attachment := >smodel.MediaAttachment{}
|
|
|
|
|
|
|
|
q := m.newMediaQ(attachment).
|
2022-10-08 12:50:48 +01:00
|
|
|
Where("? = ?", bun.Ident("media_attachment.id"), id)
|
2021-08-20 11:26:56 +01:00
|
|
|
|
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)
|
|
|
|
}
|
|
|
|
return attachment, nil
|
2021-07-06 12:29:11 +01:00
|
|
|
}
|
2022-03-07 10:08:26 +00:00
|
|
|
|
|
|
|
func (m *mediaDB) GetRemoteOlderThan(ctx context.Context, olderThan time.Time, limit int) ([]*gtsmodel.MediaAttachment, db.Error) {
|
|
|
|
attachments := []*gtsmodel.MediaAttachment{}
|
|
|
|
|
|
|
|
q := m.conn.
|
|
|
|
NewSelect().
|
|
|
|
Model(&attachments).
|
2022-10-08 12:50:48 +01:00
|
|
|
Where("? = ?", bun.Ident("media_attachment.cached"), true).
|
|
|
|
Where("? = ?", bun.Ident("media_attachment.avatar"), false).
|
|
|
|
Where("? = ?", bun.Ident("media_attachment.header"), false).
|
|
|
|
Where("? < ?", bun.Ident("media_attachment.created_at"), olderThan).
|
2022-03-07 10:08:26 +00:00
|
|
|
WhereGroup(" AND ", whereNotEmptyAndNotNull("media_attachment.remote_url")).
|
|
|
|
Order("media_attachment.created_at DESC")
|
|
|
|
|
|
|
|
if limit != 0 {
|
|
|
|
q = q.Limit(limit)
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := q.Scan(ctx); err != nil {
|
|
|
|
return nil, m.conn.ProcessError(err)
|
|
|
|
}
|
|
|
|
return attachments, nil
|
|
|
|
}
|
2022-05-15 15:45:04 +01:00
|
|
|
|
|
|
|
func (m *mediaDB) GetAvatarsAndHeaders(ctx context.Context, maxID string, limit int) ([]*gtsmodel.MediaAttachment, db.Error) {
|
|
|
|
attachments := []*gtsmodel.MediaAttachment{}
|
|
|
|
|
|
|
|
q := m.newMediaQ(&attachments).
|
|
|
|
WhereGroup(" AND ", func(innerQ *bun.SelectQuery) *bun.SelectQuery {
|
|
|
|
return innerQ.
|
2022-10-08 12:50:48 +01:00
|
|
|
WhereOr("? = ?", bun.Ident("media_attachment.avatar"), true).
|
|
|
|
WhereOr("? = ?", bun.Ident("media_attachment.header"), true)
|
2022-05-15 15:45:04 +01:00
|
|
|
}).
|
|
|
|
Order("media_attachment.id DESC")
|
|
|
|
|
|
|
|
if maxID != "" {
|
2022-10-08 12:50:48 +01:00
|
|
|
q = q.Where("? < ?", bun.Ident("media_attachment.id"), maxID)
|
2022-05-15 15:45:04 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if limit != 0 {
|
|
|
|
q = q.Limit(limit)
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := q.Scan(ctx); err != nil {
|
|
|
|
return nil, m.conn.ProcessError(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return attachments, nil
|
|
|
|
}
|
2022-06-30 11:22:10 +01:00
|
|
|
|
|
|
|
func (m *mediaDB) GetLocalUnattachedOlderThan(ctx context.Context, olderThan time.Time, maxID string, limit int) ([]*gtsmodel.MediaAttachment, db.Error) {
|
|
|
|
attachments := []*gtsmodel.MediaAttachment{}
|
|
|
|
|
|
|
|
q := m.newMediaQ(&attachments).
|
2022-10-08 12:50:48 +01:00
|
|
|
Where("? = ?", bun.Ident("media_attachment.cached"), true).
|
|
|
|
Where("? = ?", bun.Ident("media_attachment.avatar"), false).
|
|
|
|
Where("? = ?", bun.Ident("media_attachment.header"), false).
|
|
|
|
Where("? < ?", bun.Ident("media_attachment.created_at"), olderThan).
|
|
|
|
Where("? IS NULL", bun.Ident("media_attachment.remote_url")).
|
|
|
|
Where("? IS NULL", bun.Ident("media_attachment.status_id"))
|
2022-06-30 11:22:10 +01:00
|
|
|
|
|
|
|
if maxID != "" {
|
2022-10-08 12:50:48 +01:00
|
|
|
q = q.Where("? < ?", bun.Ident("media_attachment.id"), maxID)
|
2022-06-30 11:22:10 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if limit != 0 {
|
|
|
|
q = q.Limit(limit)
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := q.Scan(ctx); err != nil {
|
|
|
|
return nil, m.conn.ProcessError(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return attachments, nil
|
|
|
|
}
|