2021-05-21 14:48:26 +01:00
|
|
|
/*
|
|
|
|
GoToSocial
|
|
|
|
Copyright (C) 2021 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 account
|
|
|
|
|
|
|
|
import (
|
2021-10-11 13:37:33 +01:00
|
|
|
"github.com/sirupsen/logrus"
|
2021-05-21 14:48:26 +01:00
|
|
|
"net/http"
|
|
|
|
|
|
|
|
"github.com/gin-gonic/gin"
|
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/oauth"
|
|
|
|
)
|
|
|
|
|
2021-08-02 18:06:44 +01:00
|
|
|
// AccountUnfollowPOSTHandler swagger:operation POST /api/v1/accounts/{id}/unfollow accountUnfollow
|
2021-07-31 16:49:59 +01:00
|
|
|
//
|
|
|
|
// Unfollow account with id.
|
|
|
|
//
|
|
|
|
// ---
|
|
|
|
// tags:
|
|
|
|
// - accounts
|
|
|
|
//
|
|
|
|
// produces:
|
|
|
|
// - application/json
|
|
|
|
//
|
|
|
|
// parameters:
|
|
|
|
// - name: id
|
|
|
|
// type: string
|
|
|
|
// description: The id of the account to unfollow.
|
|
|
|
// in: path
|
|
|
|
// required: true
|
|
|
|
//
|
|
|
|
// security:
|
|
|
|
// - OAuth2 Bearer:
|
|
|
|
// - write:follows
|
|
|
|
//
|
|
|
|
// responses:
|
|
|
|
// '200':
|
|
|
|
// name: account relationship
|
|
|
|
// description: Your relationship to this account.
|
|
|
|
// schema:
|
|
|
|
// "$ref": "#/definitions/accountRelationship"
|
|
|
|
// '401':
|
|
|
|
// description: unauthorized
|
|
|
|
// '400':
|
|
|
|
// description: bad request
|
|
|
|
// '404':
|
|
|
|
// description: not found
|
2021-05-21 14:48:26 +01:00
|
|
|
func (m *Module) AccountUnfollowPOSTHandler(c *gin.Context) {
|
2021-10-11 13:37:33 +01:00
|
|
|
l := logrus.WithField("func", "AccountUnfollowPOSTHandler")
|
2021-05-21 14:48:26 +01:00
|
|
|
authed, err := oauth.Authed(c, true, true, true, true)
|
|
|
|
if err != nil {
|
|
|
|
l.Debug(err)
|
|
|
|
c.JSON(http.StatusUnauthorized, gin.H{"error": "unauthorized"})
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
targetAcctID := c.Param(IDKey)
|
|
|
|
if targetAcctID == "" {
|
|
|
|
l.Debug(err)
|
|
|
|
c.JSON(http.StatusBadRequest, gin.H{"error": "no account id specified"})
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-08-25 14:34:33 +01:00
|
|
|
relationship, errWithCode := m.processor.AccountFollowRemove(c.Request.Context(), authed, targetAcctID)
|
2021-05-21 14:48:26 +01:00
|
|
|
if errWithCode != nil {
|
|
|
|
l.Debug(errWithCode.Error())
|
|
|
|
c.JSON(errWithCode.Code(), gin.H{"error": errWithCode.Safe()})
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
c.JSON(http.StatusOK, relationship)
|
|
|
|
}
|