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 (
|
|
|
|
"net/http"
|
|
|
|
|
|
|
|
"github.com/gin-gonic/gin"
|
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/api/model"
|
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/oauth"
|
|
|
|
)
|
|
|
|
|
2021-08-02 18:06:44 +01:00
|
|
|
// AccountFollowPOSTHandler swagger:operation POST /api/v1/accounts/{id}/follow accountFollow
|
2021-07-31 16:49:59 +01:00
|
|
|
//
|
|
|
|
// Follow account with id.
|
|
|
|
//
|
2021-08-02 18:06:44 +01:00
|
|
|
// The parameters can also be given in the body of the request, as JSON, if the content-type is set to 'application/json'.
|
|
|
|
// The parameters can also be given in the body of the request, as XML, if the content-type is set to 'application/xml'.
|
|
|
|
//
|
2021-07-31 16:49:59 +01:00
|
|
|
// ---
|
|
|
|
// tags:
|
|
|
|
// - accounts
|
|
|
|
//
|
2021-08-02 18:06:44 +01:00
|
|
|
// consumes:
|
2021-07-31 16:49:59 +01:00
|
|
|
// - application/json
|
2021-08-02 18:06:44 +01:00
|
|
|
// - application/xml
|
|
|
|
// - application/x-www-form-urlencoded
|
2021-07-31 16:49:59 +01:00
|
|
|
//
|
|
|
|
// parameters:
|
|
|
|
// - name: id
|
|
|
|
// required: true
|
2021-08-02 18:06:44 +01:00
|
|
|
// in: path
|
|
|
|
// description: ID of the account to follow.
|
|
|
|
// type: string
|
|
|
|
// - default: true
|
|
|
|
// description: Show reblogs from this account.
|
|
|
|
// in: formData
|
|
|
|
// name: reblogs
|
|
|
|
// type: boolean
|
|
|
|
// x-go-name: Reblogs
|
|
|
|
// - default: false
|
|
|
|
// description: Notify when this account posts.
|
|
|
|
// in: formData
|
|
|
|
// name: notify
|
|
|
|
// type: boolean
|
|
|
|
// x-go-name: Notify
|
|
|
|
//
|
|
|
|
// produces:
|
|
|
|
// - application/json
|
2021-07-31 16:49:59 +01:00
|
|
|
//
|
|
|
|
// 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) AccountFollowPOSTHandler(c *gin.Context) {
|
|
|
|
authed, err := oauth.Authed(c, true, true, true, true)
|
|
|
|
if err != nil {
|
|
|
|
c.JSON(http.StatusUnauthorized, gin.H{"error": "unauthorized"})
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
targetAcctID := c.Param(IDKey)
|
|
|
|
if targetAcctID == "" {
|
|
|
|
c.JSON(http.StatusBadRequest, gin.H{"error": "no account id specified"})
|
|
|
|
return
|
|
|
|
}
|
|
|
|
form := &model.AccountFollowRequest{}
|
|
|
|
if err := c.ShouldBind(form); err != nil {
|
|
|
|
c.JSON(http.StatusBadRequest, gin.H{"error": err.Error()})
|
|
|
|
return
|
|
|
|
}
|
2021-08-02 18:06:44 +01:00
|
|
|
form.ID = targetAcctID
|
2021-05-21 14:48:26 +01:00
|
|
|
|
2021-08-25 14:34:33 +01:00
|
|
|
relationship, errWithCode := m.processor.AccountFollowCreate(c.Request.Context(), authed, form)
|
2021-05-21 14:48:26 +01:00
|
|
|
if errWithCode != nil {
|
|
|
|
c.JSON(errWithCode.Code(), gin.H{"error": errWithCode.Safe()})
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
c.JSON(http.StatusOK, relationship)
|
|
|
|
}
|