1 Star 1 Fork 1

xiaoyutab/xgotool

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
remove.go 1.30 KB
一键复制 编辑 原始数据 按行查看 历史
package xginxalbumn
import (
"encoding/json"
"gitee.com/xiaoyutab/xgotool/optional/xalbum"
"gitee.com/xiaoyutab/xgotool/xgin"
"gitee.com/xiaoyutab/xgotool/xstring"
"github.com/gin-gonic/gin"
)
// 删除相册
func remove(c *gin.Context) *xgin.Response {
type temp_struct struct {
Id json.Number `json:"id" form:"id" xml:"id"` // 相册ID
}
temp := temp_struct{}
if err := xgin.Bind(c, &temp); err != nil {
return xgin.Resp().Error(err)
}
type temp_struct_used struct {
Id uint // 相册ID
}
param := temp_struct_used{}
param.Id = xstring.JUint(temp.Id) // 相册ID
// ApiPost软件所需要的参数描述格式:
// [{"is_checked":1,"key":"id","type":"Text","not_null":1,"field_type":"Integer","value":"","description":"相册ID"}]
// 其他软件所需要的KV键值对描述
// {"id":"相册ID"}
// 本命令执行参数【留做备份,以便后期使用/修改】
// id uint "相册ID" 1
// id参数必填性效验
if param.Id == 0 {
return xgin.Resp().ErrorString("相册ID(id) 不能为空")
}
inf, err := xalbum.Info(param.Id)
if err != nil {
return xgin.Resp().Error(err)
}
if inf.Uid != c.GetUint("uid") {
return xgin.Resp().ErrorAuth()
}
inf.IsDeleted = 1
err = xalbum.Create(inf)
if err != nil {
return xgin.Resp().Error(err)
}
return xgin.Resp().SuccessEmpty()
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/xiaoyutab/xgotool.git
git@gitee.com:xiaoyutab/xgotool.git
xiaoyutab
xgotool
xgotool
v0.3.53

搜索帮助