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-20 11:26:56 +01:00
|
|
|
|
2021-05-27 15:06:24 +01:00
|
|
|
package federatingdb
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"net/url"
|
|
|
|
|
2022-07-19 09:47:55 +01:00
|
|
|
"codeberg.org/gruf/go-kv"
|
2021-08-31 14:59:12 +01:00
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/ap"
|
2022-07-19 09:47:55 +01:00
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/log"
|
2021-08-31 14:59:12 +01:00
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/messages"
|
2021-05-27 15:06:24 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
// Delete removes the entry with the given id.
|
|
|
|
//
|
|
|
|
// Delete is only called for federated objects. Deletes from the Social
|
|
|
|
// Protocol instead call Update to create a Tombstone.
|
|
|
|
//
|
|
|
|
// The library makes this call only after acquiring a lock first.
|
|
|
|
func (f *federatingDB) Delete(ctx context.Context, id *url.URL) error {
|
2023-02-17 11:02:29 +00:00
|
|
|
l := log.WithContext(ctx).
|
|
|
|
WithFields(kv.Fields{
|
|
|
|
{"id", id},
|
|
|
|
}...)
|
2021-10-04 14:24:19 +01:00
|
|
|
l.Debug("entering Delete")
|
2021-05-27 15:06:24 +01:00
|
|
|
|
2024-02-17 14:20:39 +00:00
|
|
|
activityContext := getActivityContext(ctx)
|
|
|
|
if activityContext.internal {
|
2023-06-13 15:47:56 +01:00
|
|
|
return nil // Already processed.
|
2021-05-27 15:06:24 +01:00
|
|
|
}
|
|
|
|
|
2024-02-17 14:20:39 +00:00
|
|
|
requestingAcct := activityContext.requestingAcct
|
|
|
|
receivingAcct := activityContext.receivingAcct
|
|
|
|
|
2021-05-27 15:06:24 +01:00
|
|
|
// in a delete we only get the URI, we can't know if we have a status or a profile or something else,
|
|
|
|
// so we have to try a few different things...
|
2024-02-17 14:20:39 +00:00
|
|
|
if s, err := f.state.DB.GetStatusByURI(ctx, id.String()); err == nil && requestingAcct.ID == s.AccountID {
|
2024-04-11 10:45:35 +01:00
|
|
|
l.Debugf("deleting status: %s", s.ID)
|
2023-08-09 18:14:33 +01:00
|
|
|
f.state.Workers.EnqueueFediAPI(ctx, messages.FromFediAPI{
|
2021-08-31 14:59:12 +01:00
|
|
|
APObjectType: ap.ObjectNote,
|
|
|
|
APActivityType: ap.ActivityDelete,
|
2021-05-27 15:06:24 +01:00
|
|
|
GTSModel: s,
|
2024-02-17 14:20:39 +00:00
|
|
|
ReceivingAccount: receivingAcct,
|
2022-04-28 13:23:11 +01:00
|
|
|
})
|
2021-05-27 15:06:24 +01:00
|
|
|
}
|
|
|
|
|
2024-02-17 14:20:39 +00:00
|
|
|
if a, err := f.state.DB.GetAccountByURI(ctx, id.String()); err == nil && requestingAcct.ID == a.ID {
|
2024-04-11 10:45:35 +01:00
|
|
|
l.Debugf("deleting account: %s", a.ID)
|
2023-08-09 18:14:33 +01:00
|
|
|
f.state.Workers.EnqueueFediAPI(ctx, messages.FromFediAPI{
|
2024-04-16 12:10:13 +01:00
|
|
|
APObjectType: ap.ObjectProfile,
|
|
|
|
APActivityType: ap.ActivityDelete,
|
|
|
|
GTSModel: a,
|
|
|
|
ReceivingAccount: receivingAcct,
|
|
|
|
RequestingAccount: requestingAcct,
|
2022-04-28 13:23:11 +01:00
|
|
|
})
|
2021-05-27 15:06:24 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|