2021-05-17 18:06:58 +01:00
|
|
|
/*
|
|
|
|
GoToSocial
|
2023-01-05 11:43:00 +00:00
|
|
|
Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
|
2021-05-17 18:06:58 +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-05-30 12:12:00 +01:00
|
|
|
package processing
|
2021-05-08 13:25:55 +01:00
|
|
|
|
|
|
|
import (
|
2021-08-25 14:34:33 +01:00
|
|
|
"context"
|
|
|
|
|
2021-05-08 13:25:55 +01:00
|
|
|
apimodel "github.com/superseriousbusiness/gotosocial/internal/api/model"
|
2021-07-05 12:23:03 +01:00
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/gtserror"
|
2021-05-08 13:25:55 +01:00
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/oauth"
|
|
|
|
)
|
|
|
|
|
2022-03-19 11:01:40 +00:00
|
|
|
func (p *processor) AdminAccountAction(ctx context.Context, authed *oauth.Auth, form *apimodel.AdminAccountActionRequest) gtserror.WithCode {
|
|
|
|
return p.adminProcessor.AccountAction(ctx, authed.Account, form)
|
|
|
|
}
|
|
|
|
|
2022-01-15 16:36:15 +00:00
|
|
|
func (p *processor) AdminEmojiCreate(ctx context.Context, authed *oauth.Auth, form *apimodel.EmojiCreateRequest) (*apimodel.Emoji, gtserror.WithCode) {
|
2021-08-25 14:34:33 +01:00
|
|
|
return p.adminProcessor.EmojiCreate(ctx, authed.Account, authed.User, form)
|
2021-07-05 12:23:03 +01:00
|
|
|
}
|
2021-05-08 13:25:55 +01:00
|
|
|
|
2022-10-12 14:01:42 +01:00
|
|
|
func (p *processor) AdminEmojisGet(ctx context.Context, authed *oauth.Auth, domain string, includeDisabled bool, includeEnabled bool, shortcode string, maxShortcodeDomain string, minShortcodeDomain string, limit int) (*apimodel.PageableResponse, gtserror.WithCode) {
|
|
|
|
return p.adminProcessor.EmojisGet(ctx, authed.Account, authed.User, domain, includeDisabled, includeEnabled, shortcode, maxShortcodeDomain, minShortcodeDomain, limit)
|
|
|
|
}
|
|
|
|
|
2022-10-13 15:37:55 +01:00
|
|
|
func (p *processor) AdminEmojiGet(ctx context.Context, authed *oauth.Auth, id string) (*apimodel.AdminEmoji, gtserror.WithCode) {
|
|
|
|
return p.adminProcessor.EmojiGet(ctx, authed.Account, authed.User, id)
|
|
|
|
}
|
|
|
|
|
2022-11-24 18:12:07 +00:00
|
|
|
func (p *processor) AdminEmojiUpdate(ctx context.Context, id string, form *apimodel.EmojiUpdateRequest) (*apimodel.AdminEmoji, gtserror.WithCode) {
|
|
|
|
return p.adminProcessor.EmojiUpdate(ctx, id, form)
|
|
|
|
}
|
|
|
|
|
2022-10-14 16:30:04 +01:00
|
|
|
func (p *processor) AdminEmojiDelete(ctx context.Context, authed *oauth.Auth, id string) (*apimodel.AdminEmoji, gtserror.WithCode) {
|
|
|
|
return p.adminProcessor.EmojiDelete(ctx, id)
|
|
|
|
}
|
|
|
|
|
2022-11-14 22:47:27 +00:00
|
|
|
func (p *processor) AdminEmojiCategoriesGet(ctx context.Context) ([]*apimodel.EmojiCategory, gtserror.WithCode) {
|
|
|
|
return p.adminProcessor.EmojiCategoriesGet(ctx)
|
|
|
|
}
|
|
|
|
|
2021-08-25 14:34:33 +01:00
|
|
|
func (p *processor) AdminDomainBlockCreate(ctx context.Context, authed *oauth.Auth, form *apimodel.DomainBlockCreateRequest) (*apimodel.DomainBlock, gtserror.WithCode) {
|
|
|
|
return p.adminProcessor.DomainBlockCreate(ctx, authed.Account, form.Domain, form.Obfuscate, form.PublicComment, form.PrivateComment, "")
|
2021-07-06 12:29:11 +01:00
|
|
|
}
|
|
|
|
|
2021-08-25 14:34:33 +01:00
|
|
|
func (p *processor) AdminDomainBlocksImport(ctx context.Context, authed *oauth.Auth, form *apimodel.DomainBlockCreateRequest) ([]*apimodel.DomainBlock, gtserror.WithCode) {
|
|
|
|
return p.adminProcessor.DomainBlocksImport(ctx, authed.Account, form.Domains)
|
2021-07-05 12:23:03 +01:00
|
|
|
}
|
2021-06-13 17:42:28 +01:00
|
|
|
|
2021-08-25 14:34:33 +01:00
|
|
|
func (p *processor) AdminDomainBlocksGet(ctx context.Context, authed *oauth.Auth, export bool) ([]*apimodel.DomainBlock, gtserror.WithCode) {
|
|
|
|
return p.adminProcessor.DomainBlocksGet(ctx, authed.Account, export)
|
2021-07-05 12:23:03 +01:00
|
|
|
}
|
2021-05-08 13:25:55 +01:00
|
|
|
|
2021-08-25 14:34:33 +01:00
|
|
|
func (p *processor) AdminDomainBlockGet(ctx context.Context, authed *oauth.Auth, id string, export bool) (*apimodel.DomainBlock, gtserror.WithCode) {
|
|
|
|
return p.adminProcessor.DomainBlockGet(ctx, authed.Account, id, export)
|
2021-07-05 12:23:03 +01:00
|
|
|
}
|
2021-05-08 13:25:55 +01:00
|
|
|
|
2021-08-25 14:34:33 +01:00
|
|
|
func (p *processor) AdminDomainBlockDelete(ctx context.Context, authed *oauth.Auth, id string) (*apimodel.DomainBlock, gtserror.WithCode) {
|
|
|
|
return p.adminProcessor.DomainBlockDelete(ctx, authed.Account, id)
|
2021-05-08 13:25:55 +01:00
|
|
|
}
|
2022-05-03 10:56:18 +01:00
|
|
|
|
2022-05-15 15:45:04 +01:00
|
|
|
func (p *processor) AdminMediaPrune(ctx context.Context, mediaRemoteCacheDays int) gtserror.WithCode {
|
|
|
|
return p.adminProcessor.MediaPrune(ctx, mediaRemoteCacheDays)
|
2022-05-03 10:56:18 +01:00
|
|
|
}
|
2022-12-10 21:43:11 +00:00
|
|
|
|
|
|
|
func (p *processor) AdminMediaRefetch(ctx context.Context, authed *oauth.Auth, domain string) gtserror.WithCode {
|
|
|
|
return p.adminProcessor.MediaRefetch(ctx, authed.Account, domain)
|
|
|
|
}
|
2023-01-25 10:12:17 +00:00
|
|
|
|
|
|
|
func (p *processor) AdminReportsGet(ctx context.Context, authed *oauth.Auth, resolved *bool, accountID string, targetAccountID string, maxID string, sinceID string, minID string, limit int) (*apimodel.PageableResponse, gtserror.WithCode) {
|
|
|
|
return p.adminProcessor.ReportsGet(ctx, authed.Account, resolved, accountID, targetAccountID, maxID, sinceID, minID, limit)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *processor) AdminReportGet(ctx context.Context, authed *oauth.Auth, id string) (*apimodel.AdminReport, gtserror.WithCode) {
|
|
|
|
return p.adminProcessor.ReportGet(ctx, authed.Account, id)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *processor) AdminReportResolve(ctx context.Context, authed *oauth.Auth, id string, actionTakenComment *string) (*apimodel.AdminReport, gtserror.WithCode) {
|
|
|
|
return p.adminProcessor.ReportResolve(ctx, authed.Account, id, actionTakenComment)
|
|
|
|
}
|