68 lines
1.5 KiB
Go
Executable File
68 lines
1.5 KiB
Go
Executable File
package authorized_handler
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"github.com/xinliangnote/go-gin-api/internal/code"
|
|
"github.com/xinliangnote/go-gin-api/internal/pkg/core"
|
|
"github.com/xinliangnote/go-gin-api/pkg/errno"
|
|
)
|
|
|
|
type deleteRequest struct {
|
|
Id string `uri:"id"` // HashID
|
|
}
|
|
|
|
type deleteResponse struct {
|
|
Id int32 `json:"id"` // 主键ID
|
|
}
|
|
|
|
// Delete 删除调用方
|
|
// @Summary 删除调用方
|
|
// @Description 删除调用方
|
|
// @Tags API.authorized
|
|
// @Accept json
|
|
// @Produce json
|
|
// @Param id path string true "hashId"
|
|
// @Success 200 {object} deleteResponse
|
|
// @Failure 400 {object} code.Failure
|
|
// @Router /api/authorized/{id} [delete]
|
|
func (h *handler) Delete() core.HandlerFunc {
|
|
return func(c core.Context) {
|
|
req := new(deleteRequest)
|
|
res := new(deleteResponse)
|
|
if err := c.ShouldBindURI(req); err != nil {
|
|
c.AbortWithError(errno.NewError(
|
|
http.StatusBadRequest,
|
|
code.ParamBindError,
|
|
code.Text(code.ParamBindError)).WithErr(err),
|
|
)
|
|
return
|
|
}
|
|
|
|
ids, err := h.hashids.HashidsDecode(req.Id)
|
|
if err != nil {
|
|
c.AbortWithError(errno.NewError(
|
|
http.StatusBadRequest,
|
|
code.HashIdsDecodeError,
|
|
code.Text(code.HashIdsDecodeError)).WithErr(err),
|
|
)
|
|
return
|
|
}
|
|
|
|
id := int32(ids[0])
|
|
|
|
err = h.authorizedService.Delete(c, id)
|
|
if err != nil {
|
|
c.AbortWithError(errno.NewError(
|
|
http.StatusBadRequest,
|
|
code.AuthorizedDeleteError,
|
|
code.Text(code.AuthorizedDeleteError)).WithErr(err),
|
|
)
|
|
return
|
|
}
|
|
|
|
res.Id = id
|
|
c.Payload(res)
|
|
}
|
|
}
|