2021-07-11 15:22:21 +01:00
|
|
|
/*
|
|
|
|
GoToSocial
|
2021-12-20 17:42:19 +00:00
|
|
|
Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
|
2021-07-11 15:22:21 +01:00
|
|
|
|
|
|
|
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-02 12:10:50 +00:00
|
|
|
package accounts
|
2021-07-11 15:22:21 +01:00
|
|
|
|
|
|
|
import (
|
2022-06-08 19:38:03 +01:00
|
|
|
"errors"
|
2021-07-11 15:22:21 +01:00
|
|
|
"net/http"
|
|
|
|
|
|
|
|
"github.com/gin-gonic/gin"
|
2023-01-02 12:10:50 +00:00
|
|
|
apiutil "github.com/superseriousbusiness/gotosocial/internal/api/util"
|
2022-06-08 19:38:03 +01:00
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/gtserror"
|
2021-07-11 15:22:21 +01:00
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/oauth"
|
|
|
|
)
|
|
|
|
|
2021-08-02 18:06:44 +01:00
|
|
|
// AccountBlockPOSTHandler swagger:operation POST /api/v1/accounts/{id}/block accountBlock
|
2021-07-31 16:49:59 +01:00
|
|
|
//
|
|
|
|
// Block account with id.
|
|
|
|
//
|
2022-09-28 18:30:40 +01:00
|
|
|
// ---
|
|
|
|
// tags:
|
|
|
|
// - accounts
|
2021-07-31 16:49:59 +01:00
|
|
|
//
|
2022-09-28 18:30:40 +01:00
|
|
|
// produces:
|
|
|
|
// - application/json
|
2021-07-31 16:49:59 +01:00
|
|
|
//
|
2022-09-28 18:30:40 +01:00
|
|
|
// parameters:
|
|
|
|
// -
|
|
|
|
// name: id
|
|
|
|
// type: string
|
|
|
|
// description: The id of the account to block.
|
|
|
|
// in: path
|
|
|
|
// required: true
|
2021-07-31 16:49:59 +01:00
|
|
|
//
|
2022-09-28 18:30:40 +01:00
|
|
|
// security:
|
|
|
|
// - OAuth2 Bearer:
|
|
|
|
// - write:blocks
|
2021-07-31 16:49:59 +01:00
|
|
|
//
|
2022-09-28 18:30:40 +01:00
|
|
|
// responses:
|
|
|
|
// '200':
|
|
|
|
// description: Your relationship to the account.
|
|
|
|
// schema:
|
|
|
|
// "$ref": "#/definitions/accountRelationship"
|
|
|
|
// '400':
|
|
|
|
// description: bad request
|
|
|
|
// '401':
|
|
|
|
// description: unauthorized
|
|
|
|
// '404':
|
|
|
|
// description: not found
|
|
|
|
// '406':
|
|
|
|
// description: not acceptable
|
|
|
|
// '500':
|
|
|
|
// description: internal server error
|
2021-07-11 15:22:21 +01:00
|
|
|
func (m *Module) AccountBlockPOSTHandler(c *gin.Context) {
|
|
|
|
authed, err := oauth.Authed(c, true, true, true, true)
|
|
|
|
if err != nil {
|
2023-01-02 12:10:50 +00:00
|
|
|
apiutil.ErrorHandler(c, gtserror.NewErrorUnauthorized(err, err.Error()), m.processor.InstanceGet)
|
2021-07-11 15:22:21 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2023-01-02 12:10:50 +00:00
|
|
|
if _, err := apiutil.NegotiateAccept(c, apiutil.JSONAcceptHeaders...); err != nil {
|
|
|
|
apiutil.ErrorHandler(c, gtserror.NewErrorNotAcceptable(err, err.Error()), m.processor.InstanceGet)
|
2021-12-11 16:50:00 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-07-11 15:22:21 +01:00
|
|
|
targetAcctID := c.Param(IDKey)
|
|
|
|
if targetAcctID == "" {
|
2022-06-08 19:38:03 +01:00
|
|
|
err := errors.New("no account id specified")
|
2023-01-02 12:10:50 +00:00
|
|
|
apiutil.ErrorHandler(c, gtserror.NewErrorBadRequest(err, err.Error()), m.processor.InstanceGet)
|
2021-07-11 15:22:21 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-08-25 14:34:33 +01:00
|
|
|
relationship, errWithCode := m.processor.AccountBlockCreate(c.Request.Context(), authed, targetAcctID)
|
2021-07-11 15:22:21 +01:00
|
|
|
if errWithCode != nil {
|
2023-01-02 12:10:50 +00:00
|
|
|
apiutil.ErrorHandler(c, errWithCode, m.processor.InstanceGet)
|
2021-07-11 15:22:21 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
c.JSON(http.StatusOK, relationship)
|
|
|
|
}
|