2021-07-05 12:23:03 +01:00
|
|
|
package admin
|
|
|
|
|
|
|
|
import (
|
|
|
|
"net/http"
|
|
|
|
"strconv"
|
|
|
|
|
|
|
|
"github.com/gin-gonic/gin"
|
|
|
|
"github.com/sirupsen/logrus"
|
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/oauth"
|
|
|
|
)
|
|
|
|
|
2021-08-02 18:06:44 +01:00
|
|
|
// DomainBlockGETHandler swagger:operation GET /api/v1/admin/domain_blocks/{id} domainBlockGet
|
2021-07-31 22:17:39 +01:00
|
|
|
//
|
|
|
|
// View domain block with the given ID.
|
|
|
|
//
|
|
|
|
// ---
|
|
|
|
// tags:
|
|
|
|
// - admin
|
|
|
|
//
|
|
|
|
// produces:
|
|
|
|
// - application/json
|
|
|
|
//
|
|
|
|
// parameters:
|
|
|
|
// - name: id
|
|
|
|
// type: string
|
|
|
|
// description: The id of the domain block.
|
|
|
|
// in: path
|
|
|
|
// required: true
|
|
|
|
//
|
|
|
|
// security:
|
|
|
|
// - OAuth2 Bearer:
|
|
|
|
// - admin
|
|
|
|
//
|
|
|
|
// responses:
|
|
|
|
// '200':
|
|
|
|
// description: The requested domain block.
|
|
|
|
// schema:
|
|
|
|
// "$ref": "#/definitions/domainBlock"
|
|
|
|
// '403':
|
|
|
|
// description: forbidden
|
|
|
|
// '400':
|
|
|
|
// description: bad request
|
|
|
|
// '404':
|
|
|
|
// description: not found
|
2021-07-05 12:23:03 +01:00
|
|
|
func (m *Module) DomainBlockGETHandler(c *gin.Context) {
|
|
|
|
l := m.log.WithFields(logrus.Fields{
|
|
|
|
"func": "DomainBlockGETHandler",
|
|
|
|
"request_uri": c.Request.RequestURI,
|
|
|
|
"user_agent": c.Request.UserAgent(),
|
|
|
|
"origin_ip": c.ClientIP(),
|
|
|
|
})
|
|
|
|
|
|
|
|
// make sure we're authed with an admin account
|
|
|
|
authed, err := oauth.Authed(c, true, true, true, true)
|
|
|
|
if err != nil {
|
|
|
|
l.Debugf("couldn't auth: %s", err)
|
|
|
|
c.JSON(http.StatusForbidden, gin.H{"error": err.Error()})
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if !authed.User.Admin {
|
|
|
|
l.Debugf("user %s not an admin", authed.User.ID)
|
|
|
|
c.JSON(http.StatusForbidden, gin.H{"error": "not an admin"})
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
domainBlockID := c.Param(IDKey)
|
|
|
|
if domainBlockID == "" {
|
|
|
|
c.JSON(http.StatusBadRequest, gin.H{"error": "no domain block id provided"})
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
export := false
|
|
|
|
exportString := c.Query(ExportQueryKey)
|
|
|
|
if exportString != "" {
|
|
|
|
i, err := strconv.ParseBool(exportString)
|
|
|
|
if err != nil {
|
|
|
|
l.Debugf("error parsing export string: %s", err)
|
|
|
|
c.JSON(http.StatusBadRequest, gin.H{"error": "couldn't parse export query param"})
|
|
|
|
return
|
|
|
|
}
|
|
|
|
export = i
|
|
|
|
}
|
|
|
|
|
2021-08-25 14:34:33 +01:00
|
|
|
domainBlock, err := m.processor.AdminDomainBlockGet(c.Request.Context(), authed, domainBlockID, export)
|
2021-07-05 12:23:03 +01:00
|
|
|
if err != nil {
|
|
|
|
l.Debugf("error getting domain block: %s", err)
|
|
|
|
c.JSON(http.StatusBadRequest, gin.H{"error": err.Error()})
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
c.JSON(http.StatusOK, domainBlock)
|
|
|
|
}
|