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/>.
|
2023-01-25 10:12:17 +00:00
|
|
|
|
|
|
|
package admin
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
2023-09-29 14:31:10 +01:00
|
|
|
"errors"
|
2023-01-25 10:12:17 +00:00
|
|
|
"fmt"
|
2024-06-18 17:18:00 +01:00
|
|
|
"net/url"
|
2023-01-25 10:12:17 +00:00
|
|
|
"strconv"
|
2023-02-22 15:05:26 +00:00
|
|
|
"time"
|
2023-01-25 10:12:17 +00:00
|
|
|
|
2023-03-19 12:11:46 +00:00
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/ap"
|
2023-01-25 10:12:17 +00:00
|
|
|
apimodel "github.com/superseriousbusiness/gotosocial/internal/api/model"
|
2024-06-18 17:18:00 +01:00
|
|
|
apiutil "github.com/superseriousbusiness/gotosocial/internal/api/util"
|
2023-01-25 10:12:17 +00:00
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/db"
|
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/gtserror"
|
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/gtsmodel"
|
2023-03-19 12:11:46 +00:00
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/messages"
|
2024-06-18 17:18:00 +01:00
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/paging"
|
2023-01-25 10:12:17 +00:00
|
|
|
)
|
|
|
|
|
2024-06-18 17:18:00 +01:00
|
|
|
// ReportsGet returns reports stored on this
|
|
|
|
// instance, with the given parameters.
|
2023-02-22 15:05:26 +00:00
|
|
|
func (p *Processor) ReportsGet(
|
2023-01-25 10:12:17 +00:00
|
|
|
ctx context.Context,
|
|
|
|
account *gtsmodel.Account,
|
|
|
|
resolved *bool,
|
|
|
|
accountID string,
|
|
|
|
targetAccountID string,
|
2024-06-18 17:18:00 +01:00
|
|
|
page *paging.Page,
|
2023-01-25 10:12:17 +00:00
|
|
|
) (*apimodel.PageableResponse, gtserror.WithCode) {
|
2024-06-18 17:18:00 +01:00
|
|
|
reports, err := p.state.DB.GetReports(
|
|
|
|
ctx,
|
|
|
|
resolved,
|
|
|
|
accountID,
|
|
|
|
targetAccountID,
|
|
|
|
page,
|
|
|
|
)
|
2023-09-29 14:31:10 +01:00
|
|
|
if err != nil && !errors.Is(err, db.ErrNoEntries) {
|
2023-01-25 10:12:17 +00:00
|
|
|
return nil, gtserror.NewErrorInternalError(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
count := len(reports)
|
2023-09-29 14:31:10 +01:00
|
|
|
if count == 0 {
|
2024-06-18 17:18:00 +01:00
|
|
|
return paging.EmptyResponse(), nil
|
2023-09-29 14:31:10 +01:00
|
|
|
}
|
|
|
|
|
2024-06-18 17:18:00 +01:00
|
|
|
// Get the lowest and highest
|
|
|
|
// ID values, used for paging.
|
|
|
|
lo := reports[count-1].ID
|
|
|
|
hi := reports[0].ID
|
2023-07-18 09:43:17 +01:00
|
|
|
|
2024-06-18 17:18:00 +01:00
|
|
|
// Convert each report to API model.
|
|
|
|
items := make([]interface{}, 0, count)
|
2023-07-18 09:43:17 +01:00
|
|
|
for _, r := range reports {
|
2023-09-23 17:44:11 +01:00
|
|
|
item, err := p.converter.ReportToAdminAPIReport(ctx, r, account)
|
2023-01-25 10:12:17 +00:00
|
|
|
if err != nil {
|
2024-06-18 17:18:00 +01:00
|
|
|
err := fmt.Errorf("error converting report to api: %s", err)
|
|
|
|
return nil, gtserror.NewErrorInternalError(err)
|
2023-01-25 10:12:17 +00:00
|
|
|
}
|
|
|
|
items = append(items, item)
|
|
|
|
}
|
|
|
|
|
2024-06-18 17:18:00 +01:00
|
|
|
// Assemble next/prev page queries.
|
|
|
|
query := make(url.Values, 3)
|
2023-01-25 10:12:17 +00:00
|
|
|
if resolved != nil {
|
2024-06-18 17:18:00 +01:00
|
|
|
query.Set(apiutil.ResolvedKey, strconv.FormatBool(*resolved))
|
2023-01-25 10:12:17 +00:00
|
|
|
}
|
|
|
|
if accountID != "" {
|
2024-06-18 17:18:00 +01:00
|
|
|
query.Set(apiutil.AccountIDKey, accountID)
|
2023-01-25 10:12:17 +00:00
|
|
|
}
|
|
|
|
if targetAccountID != "" {
|
2024-06-18 17:18:00 +01:00
|
|
|
query.Set(apiutil.TargetAccountIDKey, targetAccountID)
|
2023-01-25 10:12:17 +00:00
|
|
|
}
|
|
|
|
|
2024-06-18 17:18:00 +01:00
|
|
|
return paging.PackageResponse(paging.ResponseParams{
|
|
|
|
Items: items,
|
|
|
|
Path: "/api/v1/admin/reports",
|
|
|
|
Next: page.Next(lo, hi),
|
|
|
|
Prev: page.Prev(lo, hi),
|
|
|
|
Query: query,
|
|
|
|
}), nil
|
2023-01-25 10:12:17 +00:00
|
|
|
}
|
2023-02-22 15:05:26 +00:00
|
|
|
|
|
|
|
// ReportGet returns one report, with the given ID.
|
|
|
|
func (p *Processor) ReportGet(ctx context.Context, account *gtsmodel.Account, id string) (*apimodel.AdminReport, gtserror.WithCode) {
|
2023-03-01 18:26:53 +00:00
|
|
|
report, err := p.state.DB.GetReportByID(ctx, id)
|
2023-02-22 15:05:26 +00:00
|
|
|
if err != nil {
|
|
|
|
if err == db.ErrNoEntries {
|
|
|
|
return nil, gtserror.NewErrorNotFound(err)
|
|
|
|
}
|
|
|
|
return nil, gtserror.NewErrorInternalError(err)
|
|
|
|
}
|
|
|
|
|
2023-09-23 17:44:11 +01:00
|
|
|
apimodelReport, err := p.converter.ReportToAdminAPIReport(ctx, report, account)
|
2023-02-22 15:05:26 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, gtserror.NewErrorInternalError(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return apimodelReport, nil
|
|
|
|
}
|
|
|
|
|
2023-03-19 12:11:46 +00:00
|
|
|
// ReportResolve marks a report with the given id as resolved,
|
|
|
|
// and stores the provided actionTakenComment (if not null).
|
|
|
|
// If the report creator is from this instance, an email will
|
|
|
|
// be sent to them to let them know that the report is resolved.
|
2023-02-22 15:05:26 +00:00
|
|
|
func (p *Processor) ReportResolve(ctx context.Context, account *gtsmodel.Account, id string, actionTakenComment *string) (*apimodel.AdminReport, gtserror.WithCode) {
|
2023-03-01 18:26:53 +00:00
|
|
|
report, err := p.state.DB.GetReportByID(ctx, id)
|
2023-02-22 15:05:26 +00:00
|
|
|
if err != nil {
|
|
|
|
if err == db.ErrNoEntries {
|
|
|
|
return nil, gtserror.NewErrorNotFound(err)
|
|
|
|
}
|
|
|
|
return nil, gtserror.NewErrorInternalError(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
columns := []string{
|
|
|
|
"action_taken_at",
|
|
|
|
"action_taken_by_account_id",
|
|
|
|
}
|
|
|
|
|
|
|
|
report.ActionTakenAt = time.Now()
|
|
|
|
report.ActionTakenByAccountID = account.ID
|
|
|
|
|
|
|
|
if actionTakenComment != nil {
|
|
|
|
report.ActionTaken = *actionTakenComment
|
|
|
|
columns = append(columns, "action_taken")
|
|
|
|
}
|
|
|
|
|
2023-03-01 18:26:53 +00:00
|
|
|
updatedReport, err := p.state.DB.UpdateReport(ctx, report, columns...)
|
2023-02-22 15:05:26 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, gtserror.NewErrorInternalError(err)
|
|
|
|
}
|
|
|
|
|
2023-03-19 12:11:46 +00:00
|
|
|
// Process side effects of closing the report.
|
2024-04-26 13:50:46 +01:00
|
|
|
p.state.Workers.Client.Queue.Push(&messages.FromClientAPI{
|
2023-03-19 12:11:46 +00:00
|
|
|
APObjectType: ap.ActivityFlag,
|
|
|
|
APActivityType: ap.ActivityUpdate,
|
|
|
|
GTSModel: report,
|
2024-04-26 13:50:46 +01:00
|
|
|
Origin: account,
|
|
|
|
Target: report.Account,
|
2023-03-19 12:11:46 +00:00
|
|
|
})
|
|
|
|
|
2023-09-23 17:44:11 +01:00
|
|
|
apimodelReport, err := p.converter.ReportToAdminAPIReport(ctx, updatedReport, account)
|
2023-02-22 15:05:26 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, gtserror.NewErrorInternalError(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return apimodelReport, nil
|
|
|
|
}
|