2023-03-12 15:00:57 +00:00
|
|
|
// GoToSocial
|
|
|
|
// Copyright (C) GoToSocial Authors admin@gotosocial.org
|
|
|
|
// SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
//
|
|
|
|
// 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
|
|
|
|
2021-06-13 17:42:28 +01:00
|
|
|
package status
|
|
|
|
|
|
|
|
import (
|
2021-08-25 14:34:33 +01:00
|
|
|
"context"
|
2021-06-13 17:42:28 +01:00
|
|
|
"errors"
|
|
|
|
"fmt"
|
|
|
|
|
2021-08-31 14:59:12 +01:00
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/ap"
|
2021-06-13 17:42:28 +01:00
|
|
|
apimodel "github.com/superseriousbusiness/gotosocial/internal/api/model"
|
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/gtserror"
|
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/gtsmodel"
|
2021-08-31 14:59:12 +01:00
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/messages"
|
2021-06-13 17:42:28 +01:00
|
|
|
)
|
|
|
|
|
2023-02-22 15:05:26 +00:00
|
|
|
// Delete processes the delete of a given status, returning the deleted status if the delete goes through.
|
|
|
|
func (p *Processor) Delete(ctx context.Context, requestingAccount *gtsmodel.Account, targetStatusID string) (*apimodel.Status, gtserror.WithCode) {
|
2023-03-01 18:26:53 +00:00
|
|
|
targetStatus, err := p.state.DB.GetStatusByID(ctx, targetStatusID)
|
2021-08-20 11:26:56 +01:00
|
|
|
if err != nil {
|
|
|
|
return nil, gtserror.NewErrorNotFound(fmt.Errorf("error fetching status %s: %s", targetStatusID, err))
|
2021-06-13 17:42:28 +01:00
|
|
|
}
|
2023-03-20 18:10:08 +00:00
|
|
|
|
2021-08-20 11:26:56 +01:00
|
|
|
if targetStatus.Account == nil {
|
|
|
|
return nil, gtserror.NewErrorNotFound(fmt.Errorf("no status owner for status %s", targetStatusID))
|
2021-06-13 17:42:28 +01:00
|
|
|
}
|
|
|
|
|
2021-08-20 11:26:56 +01:00
|
|
|
if targetStatus.AccountID != requestingAccount.ID {
|
|
|
|
return nil, gtserror.NewErrorForbidden(errors.New("status doesn't belong to requesting account"))
|
2021-06-13 17:42:28 +01:00
|
|
|
}
|
|
|
|
|
2023-03-20 18:10:08 +00:00
|
|
|
// Parse the status to API model BEFORE deleting it.
|
|
|
|
apiStatus, errWithCode := p.apiStatus(ctx, targetStatus, requestingAccount)
|
|
|
|
if errWithCode != nil {
|
|
|
|
return nil, errWithCode
|
2021-06-13 17:42:28 +01:00
|
|
|
}
|
|
|
|
|
2023-03-20 18:10:08 +00:00
|
|
|
// Process delete side effects.
|
2023-03-01 18:26:53 +00:00
|
|
|
p.state.Workers.EnqueueClientAPI(ctx, messages.FromClientAPI{
|
2021-08-31 14:59:12 +01:00
|
|
|
APObjectType: ap.ObjectNote,
|
|
|
|
APActivityType: ap.ActivityDelete,
|
2021-06-13 17:42:28 +01:00
|
|
|
GTSModel: targetStatus,
|
2021-08-20 11:26:56 +01:00
|
|
|
OriginAccount: requestingAccount,
|
|
|
|
TargetAccount: requestingAccount,
|
2022-04-28 13:23:11 +01:00
|
|
|
})
|
2021-06-13 17:42:28 +01:00
|
|
|
|
2021-10-04 14:24:19 +01:00
|
|
|
return apiStatus, nil
|
2021-06-13 17:42:28 +01:00
|
|
|
}
|