mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2024-11-01 06:28:57 +00:00
fc3741365c
* Add Swagger spec test script * Fix Swagger spec errors not related to statuses with polls * Add API tests that post a status with a poll * Fix creating a status with a poll from form params * Fix Swagger spec errors related to statuses with polls (this is the last error) * Fix Swagger spec warnings not related to unused definitions * Suppress a duplicate list update params definition that was somehow causing wrong param names * Add Swagger test to CI - updates Drone config - vendorizes go-swagger - fixes a file extension issue that caused the test script to generate JSON instead of YAML with the vendorized version * Put `Sample: ` on its own line everywhere * Remove unused id param from emojiCategoriesGet * Add 5 more pairs of profile fields to account update API Swagger * Remove Swagger prefix from dummy fields It makes the generated code look weird * Manually annotate params for statusCreate operation * Fix all remaining Swagger spec warnings - Change some models into operation parameters - Ignore models that already correspond to manually documented operation parameters but can't be trivially changed (those with file fields) * Documented that creating a status with scheduled_at isn't implemented yet * sign drone.yml * Fix filter API Swagger errors * fixup! Fix filter API Swagger errors --------- Co-authored-by: tobi <tobi.smethurst@protonmail.com>
95 lines
4.1 KiB
Go
95 lines
4.1 KiB
Go
// 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/>.
|
|
|
|
package model
|
|
|
|
// Report models a moderation report submitted to the instance, either via the client API or via the federated API.
|
|
//
|
|
// swagger:model report
|
|
type Report struct {
|
|
// ID of the report.
|
|
// example: 01FBVD42CQ3ZEEVMW180SBX03B
|
|
ID string `json:"id"`
|
|
// The date when this report was created (ISO 8601 Datetime).
|
|
// example: 2021-07-30T09:20:25+00:00
|
|
CreatedAt string `json:"created_at"`
|
|
// Whether an action has been taken by an admin in response to this report.
|
|
// example: false
|
|
ActionTaken bool `json:"action_taken"`
|
|
// If an action was taken, at what time was this done? (ISO 8601 Datetime)
|
|
// Will be null if not set / no action yet taken.
|
|
// example: 2021-07-30T09:20:25+00:00
|
|
ActionTakenAt *string `json:"action_taken_at"`
|
|
// If an action was taken, what comment was made by the admin on the taken action?
|
|
// Will be null if not set / no action yet taken.
|
|
// example: Account was suspended.
|
|
ActionTakenComment *string `json:"action_taken_comment"`
|
|
// Under what category was this report created?
|
|
// example: spam
|
|
Category string `json:"category"`
|
|
// Comment submitted when the report was created.
|
|
// Will be empty if no comment was submitted.
|
|
// example: This person has been harassing me.
|
|
Comment string `json:"comment"`
|
|
// Bool to indicate that report should be federated to remote instance.
|
|
// example: true
|
|
Forwarded bool `json:"forwarded"`
|
|
// Array of IDs of statuses that were submitted along with this report.
|
|
// Will be empty if no status IDs were submitted.
|
|
// example: ["01GPBN5YDY6JKBWE44H7YQBDCQ","01GPBN65PDWSBPWVDD0SQCFFY3"]
|
|
StatusIDs []string `json:"status_ids"`
|
|
// Array of rule IDs that were submitted along with this report.
|
|
// Will be empty if no rule IDs were submitted.
|
|
// example: ["01GPBN5YDY6JKBWE44H7YQBDCQ","01GPBN65PDWSBPWVDD0SQCFFY3"]
|
|
RuleIDs []string `json:"rule_ids"`
|
|
// Account that was reported.
|
|
TargetAccount *Account `json:"target_account"`
|
|
}
|
|
|
|
// ReportCreateRequest models user report creation parameters.
|
|
//
|
|
// swagger:parameters reportCreate
|
|
type ReportCreateRequest struct {
|
|
// ID of the account to report.
|
|
// Sample: 01GPE75FXSH2EGFBF85NXPH3KP
|
|
// in: formData
|
|
// required: true
|
|
AccountID string `form:"account_id" json:"account_id" xml:"account_id"`
|
|
// IDs of statuses to attach to the report to provide additional context.
|
|
// Sample: ["01GPE76N4SBVRZ8K24TW51ZZQ4","01GPE76WN9JZE62EPT3Q9FRRD4"]
|
|
// in: formData
|
|
StatusIDs []string `form:"status_ids[]" json:"status_ids" xml:"status_ids"`
|
|
// The reason for the report. Default maximum of 1000 characters.
|
|
// Sample: Anti-Blackness, transphobia.
|
|
// in: formData
|
|
Comment string `form:"comment" json:"comment" xml:"comment"`
|
|
// If the account is remote, should the report be forwarded to the remote admin?
|
|
// Sample: true
|
|
// default: false
|
|
// in: formData
|
|
Forward bool `form:"forward" json:"forward" xml:"forward"`
|
|
// Specify if the report is due to spam, violation of enumerated instance rules, or some other reason.
|
|
// Currently only 'other' is supported.
|
|
// Sample: other
|
|
// default: other
|
|
// in: formData
|
|
Category string `form:"category" json:"category" xml:"category"`
|
|
// IDs of rules on this instance which have been broken according to the reporter.
|
|
// Sample: ["01GPBN5YDY6JKBWE44H7YQBDCQ","01GPBN65PDWSBPWVDD0SQCFFY3"]
|
|
// in: formData
|
|
RuleIDs []string `form:"rule_ids[]" json:"rule_ids" xml:"rule_ids"`
|
|
}
|