diff options
author | 2023-01-23 13:14:21 +0100 | |
---|---|---|
committer | 2023-01-23 13:14:21 +0100 | |
commit | e9747247d58a0423d5e40fda5c5b37b4b4526495 (patch) | |
tree | 5574b05f1dec1ad88c49b9891f1e54719f1b9eb1 /internal/api/client/reports/reportcreate.go | |
parent | [chore] bump go version to 1.19.5 (#1377) (diff) | |
download | gotosocial-e9747247d58a0423d5e40fda5c5b37b4b4526495.tar.xz |
[feature] Implement `/api/v1/reports` endpoints on client API (#1330)
* start adding report client api
* route + test reports get
* start report create endpoint
* you can create reports now babyy
* stub account report processor
* add single reportGet endpoint
* fix test
* add more filtering params to /api/v1/reports GET
* update swagger
* use marshalIndent in tests
* add + test missing Link info
Diffstat (limited to 'internal/api/client/reports/reportcreate.go')
-rw-r--r-- | internal/api/client/reports/reportcreate.go | 112 |
1 files changed, 112 insertions, 0 deletions
diff --git a/internal/api/client/reports/reportcreate.go b/internal/api/client/reports/reportcreate.go new file mode 100644 index 000000000..c2548985a --- /dev/null +++ b/internal/api/client/reports/reportcreate.go @@ -0,0 +1,112 @@ +/* + GoToSocial + Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org + + 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 reports + +import ( + "errors" + "fmt" + "net/http" + + "github.com/gin-gonic/gin" + apimodel "github.com/superseriousbusiness/gotosocial/internal/api/model" + apiutil "github.com/superseriousbusiness/gotosocial/internal/api/util" + "github.com/superseriousbusiness/gotosocial/internal/gtserror" + "github.com/superseriousbusiness/gotosocial/internal/oauth" + "github.com/superseriousbusiness/gotosocial/internal/regexes" +) + +// ReportPOSTHandler swagger:operation POST /api/v1/reports reportCreate +// +// Create a new user report with the given parameters. +// +// --- +// tags: +// - reports +// +// consumes: +// - application/json +// - application/xml +// - application/x-www-form-urlencoded +// +// produces: +// - application/json +// +// security: +// - OAuth2 Bearer: +// - write:reports +// +// responses: +// '200': +// description: The created report. +// schema: +// "$ref": "#/definitions/report" +// '400': +// description: bad request +// '401': +// description: unauthorized +// '404': +// description: not found +// '406': +// description: not acceptable +// '500': +// description: internal server error +func (m *Module) ReportPOSTHandler(c *gin.Context) { + authed, err := oauth.Authed(c, true, true, true, true) + if err != nil { + apiutil.ErrorHandler(c, gtserror.NewErrorUnauthorized(err, err.Error()), m.processor.InstanceGet) + return + } + + if _, err := apiutil.NegotiateAccept(c, apiutil.JSONAcceptHeaders...); err != nil { + apiutil.ErrorHandler(c, gtserror.NewErrorNotAcceptable(err, err.Error()), m.processor.InstanceGet) + return + } + + form := &apimodel.ReportCreateRequest{} + if err := c.ShouldBind(form); err != nil { + apiutil.ErrorHandler(c, gtserror.NewErrorBadRequest(err, err.Error()), m.processor.InstanceGet) + return + } + + if form.AccountID == "" { + err = errors.New("account_id must be set") + apiutil.ErrorHandler(c, gtserror.NewErrorBadRequest(err, err.Error()), m.processor.InstanceGet) + return + } + + if !regexes.ULID.MatchString(form.AccountID) { + err = errors.New("account_id was not valid") + apiutil.ErrorHandler(c, gtserror.NewErrorBadRequest(err, err.Error()), m.processor.InstanceGet) + return + } + + if length := len([]rune(form.Comment)); length > 1000 { + err = fmt.Errorf("comment length must be no more than 1000 chars, provided comment was %d chars", length) + apiutil.ErrorHandler(c, gtserror.NewErrorBadRequest(err, err.Error()), m.processor.InstanceGet) + return + } + + apiReport, errWithCode := m.processor.ReportCreate(c.Request.Context(), authed, form) + if errWithCode != nil { + apiutil.ErrorHandler(c, errWithCode, m.processor.InstanceGet) + return + } + + c.JSON(http.StatusOK, apiReport) +} |