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-06-13 17:42:28 +01:00
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/gtserror"
|
2021-05-08 13:25:55 +01:00
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/oauth"
|
|
|
|
)
|
|
|
|
|
2022-06-08 19:38:03 +01:00
|
|
|
func (p *processor) StatusCreate(ctx context.Context, authed *oauth.Auth, form *apimodel.AdvancedStatusCreateForm) (*apimodel.Status, gtserror.WithCode) {
|
2021-08-25 14:34:33 +01:00
|
|
|
return p.statusProcessor.Create(ctx, authed.Account, authed.Application, form)
|
2021-05-08 13:25:55 +01:00
|
|
|
}
|
|
|
|
|
2022-06-08 19:38:03 +01:00
|
|
|
func (p *processor) StatusDelete(ctx context.Context, authed *oauth.Auth, targetStatusID string) (*apimodel.Status, gtserror.WithCode) {
|
2021-08-25 14:34:33 +01:00
|
|
|
return p.statusProcessor.Delete(ctx, authed.Account, targetStatusID)
|
2021-05-08 13:25:55 +01:00
|
|
|
}
|
|
|
|
|
2022-06-08 19:38:03 +01:00
|
|
|
func (p *processor) StatusFave(ctx context.Context, authed *oauth.Auth, targetStatusID string) (*apimodel.Status, gtserror.WithCode) {
|
2021-08-25 14:34:33 +01:00
|
|
|
return p.statusProcessor.Fave(ctx, authed.Account, targetStatusID)
|
2021-05-08 13:25:55 +01:00
|
|
|
}
|
|
|
|
|
2021-08-25 14:34:33 +01:00
|
|
|
func (p *processor) StatusBoost(ctx context.Context, authed *oauth.Auth, targetStatusID string) (*apimodel.Status, gtserror.WithCode) {
|
|
|
|
return p.statusProcessor.Boost(ctx, authed.Account, authed.Application, targetStatusID)
|
2021-05-08 14:16:24 +01:00
|
|
|
}
|
|
|
|
|
2021-08-25 14:34:33 +01:00
|
|
|
func (p *processor) StatusUnboost(ctx context.Context, authed *oauth.Auth, targetStatusID string) (*apimodel.Status, gtserror.WithCode) {
|
|
|
|
return p.statusProcessor.Unboost(ctx, authed.Account, authed.Application, targetStatusID)
|
2021-06-21 14:56:00 +01:00
|
|
|
}
|
|
|
|
|
2021-08-25 14:34:33 +01:00
|
|
|
func (p *processor) StatusBoostedBy(ctx context.Context, authed *oauth.Auth, targetStatusID string) ([]*apimodel.Account, gtserror.WithCode) {
|
|
|
|
return p.statusProcessor.BoostedBy(ctx, authed.Account, targetStatusID)
|
2021-05-31 16:36:35 +01:00
|
|
|
}
|
|
|
|
|
2022-06-08 19:38:03 +01:00
|
|
|
func (p *processor) StatusFavedBy(ctx context.Context, authed *oauth.Auth, targetStatusID string) ([]*apimodel.Account, gtserror.WithCode) {
|
2021-08-25 14:34:33 +01:00
|
|
|
return p.statusProcessor.FavedBy(ctx, authed.Account, targetStatusID)
|
2021-05-08 13:25:55 +01:00
|
|
|
}
|
|
|
|
|
2022-06-08 19:38:03 +01:00
|
|
|
func (p *processor) StatusGet(ctx context.Context, authed *oauth.Auth, targetStatusID string) (*apimodel.Status, gtserror.WithCode) {
|
2021-08-25 14:34:33 +01:00
|
|
|
return p.statusProcessor.Get(ctx, authed.Account, targetStatusID)
|
2021-05-08 13:25:55 +01:00
|
|
|
}
|
|
|
|
|
2022-06-08 19:38:03 +01:00
|
|
|
func (p *processor) StatusUnfave(ctx context.Context, authed *oauth.Auth, targetStatusID string) (*apimodel.Status, gtserror.WithCode) {
|
2021-08-25 14:34:33 +01:00
|
|
|
return p.statusProcessor.Unfave(ctx, authed.Account, targetStatusID)
|
2021-05-08 13:25:55 +01:00
|
|
|
}
|
2021-05-31 16:36:35 +01:00
|
|
|
|
2021-08-25 14:34:33 +01:00
|
|
|
func (p *processor) StatusGetContext(ctx context.Context, authed *oauth.Auth, targetStatusID string) (*apimodel.Context, gtserror.WithCode) {
|
|
|
|
return p.statusProcessor.Context(ctx, authed.Account, targetStatusID)
|
2021-05-31 16:36:35 +01:00
|
|
|
}
|
2022-12-09 10:37:12 +00:00
|
|
|
|
|
|
|
func (p *processor) StatusBookmark(ctx context.Context, authed *oauth.Auth, targetStatusID string) (*apimodel.Status, gtserror.WithCode) {
|
|
|
|
return p.statusProcessor.Bookmark(ctx, authed.Account, targetStatusID)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *processor) StatusUnbookmark(ctx context.Context, authed *oauth.Auth, targetStatusID string) (*apimodel.Status, gtserror.WithCode) {
|
|
|
|
return p.statusProcessor.Unbookmark(ctx, authed.Account, targetStatusID)
|
|
|
|
}
|