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-15 10:58:11 +01:00
|
|
|
|
|
|
|
import (
|
2021-08-25 14:34:33 +01:00
|
|
|
"context"
|
|
|
|
|
2021-08-31 14:59:12 +01:00
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/ap"
|
2021-05-15 10:58:11 +01:00
|
|
|
apimodel "github.com/superseriousbusiness/gotosocial/internal/api/model"
|
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/db"
|
2021-06-13 17:42:28 +01:00
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/gtserror"
|
2021-08-31 14:59:12 +01:00
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/messages"
|
2021-05-15 10:58:11 +01:00
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/oauth"
|
|
|
|
)
|
|
|
|
|
2023-02-22 15:05:26 +00:00
|
|
|
func (p *Processor) FollowRequestsGet(ctx context.Context, auth *oauth.Auth) ([]apimodel.Account, gtserror.WithCode) {
|
2021-08-25 14:34:33 +01:00
|
|
|
frs, err := p.db.GetAccountFollowRequests(ctx, auth.Account.ID)
|
2021-08-20 11:26:56 +01:00
|
|
|
if err != nil {
|
|
|
|
if err != db.ErrNoEntries {
|
2021-06-13 17:42:28 +01:00
|
|
|
return nil, gtserror.NewErrorInternalError(err)
|
2021-05-15 10:58:11 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
accts := []apimodel.Account{}
|
|
|
|
for _, fr := range frs {
|
2021-08-25 14:34:33 +01:00
|
|
|
if fr.Account == nil {
|
|
|
|
frAcct, err := p.db.GetAccountByID(ctx, fr.AccountID)
|
|
|
|
if err != nil {
|
|
|
|
return nil, gtserror.NewErrorInternalError(err)
|
|
|
|
}
|
|
|
|
fr.Account = frAcct
|
2021-05-15 10:58:11 +01:00
|
|
|
}
|
2021-08-25 14:34:33 +01:00
|
|
|
|
2021-10-04 14:24:19 +01:00
|
|
|
apiAcct, err := p.tc.AccountToAPIAccountPublic(ctx, fr.Account)
|
2021-05-15 10:58:11 +01:00
|
|
|
if err != nil {
|
2021-06-13 17:42:28 +01:00
|
|
|
return nil, gtserror.NewErrorInternalError(err)
|
2021-05-15 10:58:11 +01:00
|
|
|
}
|
2021-10-04 14:24:19 +01:00
|
|
|
accts = append(accts, *apiAcct)
|
2021-05-15 10:58:11 +01:00
|
|
|
}
|
|
|
|
return accts, nil
|
|
|
|
}
|
|
|
|
|
2023-02-22 15:05:26 +00:00
|
|
|
func (p *Processor) FollowRequestAccept(ctx context.Context, auth *oauth.Auth, accountID string) (*apimodel.Relationship, gtserror.WithCode) {
|
2021-08-25 14:34:33 +01:00
|
|
|
follow, err := p.db.AcceptFollowRequest(ctx, accountID, auth.Account.ID)
|
2021-05-21 14:48:26 +01:00
|
|
|
if err != nil {
|
2021-06-13 17:42:28 +01:00
|
|
|
return nil, gtserror.NewErrorNotFound(err)
|
2021-05-15 10:58:11 +01:00
|
|
|
}
|
2021-05-21 14:48:26 +01:00
|
|
|
|
2021-08-25 14:34:33 +01:00
|
|
|
if follow.Account == nil {
|
|
|
|
followAccount, err := p.db.GetAccountByID(ctx, follow.AccountID)
|
|
|
|
if err != nil {
|
|
|
|
return nil, gtserror.NewErrorInternalError(err)
|
|
|
|
}
|
|
|
|
follow.Account = followAccount
|
2021-05-22 13:26:45 +01:00
|
|
|
}
|
|
|
|
|
2021-08-25 14:34:33 +01:00
|
|
|
if follow.TargetAccount == nil {
|
|
|
|
followTargetAccount, err := p.db.GetAccountByID(ctx, follow.TargetAccountID)
|
|
|
|
if err != nil {
|
|
|
|
return nil, gtserror.NewErrorInternalError(err)
|
|
|
|
}
|
|
|
|
follow.TargetAccount = followTargetAccount
|
2021-05-22 13:26:45 +01:00
|
|
|
}
|
|
|
|
|
2022-04-28 13:23:11 +01:00
|
|
|
p.clientWorker.Queue(messages.FromClientAPI{
|
2021-08-31 14:59:12 +01:00
|
|
|
APObjectType: ap.ActivityFollow,
|
|
|
|
APActivityType: ap.ActivityAccept,
|
2021-05-21 22:04:59 +01:00
|
|
|
GTSModel: follow,
|
2021-08-25 14:34:33 +01:00
|
|
|
OriginAccount: follow.Account,
|
|
|
|
TargetAccount: follow.TargetAccount,
|
2022-04-28 13:23:11 +01:00
|
|
|
})
|
2021-05-21 14:48:26 +01:00
|
|
|
|
2021-08-25 14:34:33 +01:00
|
|
|
gtsR, err := p.db.GetRelationship(ctx, auth.Account.ID, accountID)
|
2021-05-21 14:48:26 +01:00
|
|
|
if err != nil {
|
2021-06-13 17:42:28 +01:00
|
|
|
return nil, gtserror.NewErrorInternalError(err)
|
2021-05-21 14:48:26 +01:00
|
|
|
}
|
|
|
|
|
2021-10-04 14:24:19 +01:00
|
|
|
r, err := p.tc.RelationshipToAPIRelationship(ctx, gtsR)
|
2021-05-21 22:04:59 +01:00
|
|
|
if err != nil {
|
2021-06-13 17:42:28 +01:00
|
|
|
return nil, gtserror.NewErrorInternalError(err)
|
2021-05-21 14:48:26 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return r, nil
|
2021-05-15 10:58:11 +01:00
|
|
|
}
|
|
|
|
|
2023-02-22 15:05:26 +00:00
|
|
|
func (p *Processor) FollowRequestReject(ctx context.Context, auth *oauth.Auth, accountID string) (*apimodel.Relationship, gtserror.WithCode) {
|
2021-10-16 12:27:43 +01:00
|
|
|
followRequest, err := p.db.RejectFollowRequest(ctx, accountID, auth.Account.ID)
|
|
|
|
if err != nil {
|
|
|
|
return nil, gtserror.NewErrorNotFound(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if followRequest.Account == nil {
|
|
|
|
a, err := p.db.GetAccountByID(ctx, followRequest.AccountID)
|
|
|
|
if err != nil {
|
|
|
|
return nil, gtserror.NewErrorInternalError(err)
|
|
|
|
}
|
|
|
|
followRequest.Account = a
|
|
|
|
}
|
|
|
|
|
|
|
|
if followRequest.TargetAccount == nil {
|
|
|
|
a, err := p.db.GetAccountByID(ctx, followRequest.TargetAccountID)
|
|
|
|
if err != nil {
|
|
|
|
return nil, gtserror.NewErrorInternalError(err)
|
|
|
|
}
|
|
|
|
followRequest.TargetAccount = a
|
|
|
|
}
|
|
|
|
|
2022-04-28 13:23:11 +01:00
|
|
|
p.clientWorker.Queue(messages.FromClientAPI{
|
2021-10-16 12:27:43 +01:00
|
|
|
APObjectType: ap.ActivityFollow,
|
|
|
|
APActivityType: ap.ActivityReject,
|
|
|
|
GTSModel: followRequest,
|
|
|
|
OriginAccount: followRequest.Account,
|
|
|
|
TargetAccount: followRequest.TargetAccount,
|
2022-04-28 13:23:11 +01:00
|
|
|
})
|
2021-10-16 12:27:43 +01:00
|
|
|
|
|
|
|
gtsR, err := p.db.GetRelationship(ctx, auth.Account.ID, accountID)
|
|
|
|
if err != nil {
|
|
|
|
return nil, gtserror.NewErrorInternalError(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
r, err := p.tc.RelationshipToAPIRelationship(ctx, gtsR)
|
|
|
|
if err != nil {
|
|
|
|
return nil, gtserror.NewErrorInternalError(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return r, nil
|
2021-05-15 10:58:11 +01:00
|
|
|
}
|