123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293 |
- package v1
- import (
- "git.getensh.com/common/gopkgs/logger"
- "git.getensh.com/common/gopkgs/tasker/httptasker"
- "git.getensh.com/common/gopkgs/util"
- "github.com/gin-gonic/gin"
- "go.uber.org/zap"
- "net/http"
- "property-applete-gateway/errors"
- param_v1 "property-applete-gateway/param/v1"
- "property-applete-gateway/pb"
- "property-applete-gateway/pb/v1"
- "property-applete-gateway/utils"
- )
- //
- // @Summary 添加部门
- // @Description 添加部门
- // @Tags 部门
- // @Accept json
- // @Produce json
- // @Param token header string true "token"
- // @Param body body v1.DepartmentAddBody true "信息"
- // @Success 200 {object} v1.DepartmentAddResponse
- // @Failure 500 {object} base.HTTPError
- // @Router /api/v1/department [post]
- func (c *Controller) DepartmentAdd(ctx *gin.Context) {
- // 解析参数
- req := ¶m_v1.DepartmentAddRequest{}
- parseParamTask := func() error {
- err := util.ShouldBind(ctx, &req.Header, nil, nil, &req.DepartmentAddBody)
- if err != nil {
- logger.Error("func",
- zap.String("call", "util.ShouldBind"),
- zap.String("error", err.Error()))
- return errors.ParamsError
- }
- return nil
- }
- // 业务处理
- handleServiceTask := func() error {
- tokenInfo, err := utils.GetSubjectValue(ctx)
- if err != nil {
- return err
- }
- // 响应数据
- resp := param_v1.DepartmentAddResponse{}
- rpcReq := &v1.DepartmentAddRequest{
- GardenId:tokenInfo.GardenId,
- DepartmentName:req.DepartmentName,
- Desc:req.Desc,
- }
- rpcRsp, err := pb.System.DepartmentAdd(ctx, rpcReq)
- if err != nil {
- s, _ := json.MarshalToString(req)
- logger.Error("func",
- zap.String("call", "pb.System.DepartmentAdd"),
- zap.String("params", s),
- zap.String("error", err.Error()))
- return errors.ErrorTransForm(err)
- }
- resp.Data = *rpcRsp
- ctx.JSON(http.StatusOK, resp)
- logReq := OperationLogRequest{
- Module:ModuleDepartment,
- Action:ActionDepartmentAdd,
- Origin:nil,
- Target:req.DepartmentAddBody,
- UserName:tokenInfo.UserName,
- Uid:tokenInfo.Uid,
- Cid:tokenInfo.Cid,
- GardenId:tokenInfo.GardenId,
- }
- go OperationLogAdd(&logReq)
- return nil
- }
- // 执行任务
- httptasker.Exec(ctx, parseParamTask, handleServiceTask)
- }
- //
- // @Summary 更改部门
- // @Description 更改部门
- // @Tags 部门
- // @Accept json
- // @Produce json
- // @Param token header string true "token"
- // @Param body body v1.DepartmentUpdateBody true "信息"
- // @Success 200 {object} v1.DepartmentUpdateResponse
- // @Failure 500 {object} base.HTTPError
- // @Router /api/v1/department [put]
- func (c *Controller) DepartmentUpdate(ctx *gin.Context) {
- // 解析参数
- req := ¶m_v1.DepartmentUpdateRequest{}
- parseParamTask := func() error {
- err := util.ShouldBind(ctx, &req.Header, nil, nil, &req.DepartmentUpdateBody)
- if err != nil {
- logger.Error("func",
- zap.String("call", "util.ShouldBind"),
- zap.String("error", err.Error()))
- return errors.ParamsError
- }
- return nil
- }
- // 业务处理
- handleServiceTask := func() error {
- tokenInfo, err := utils.GetSubjectValue(ctx)
- if err != nil {
- return err
- }
- // 响应数据
- resp := param_v1.DepartmentUpdateResponse{}
- rpcReq := &v1.DepartmentUpdateRequest{
- GardenId:tokenInfo.GardenId,
- Id:req.Id,
- DepartmentName:req.DepartmentName,
- Desc:req.Desc,
- }
- rpcRsp, err := pb.System.DepartmentUpdate(ctx, rpcReq)
- if err != nil {
- s, _ := json.MarshalToString(req)
- logger.Error("func",
- zap.String("call", "pb.System.DepartmentUpdate"),
- zap.String("params", s),
- zap.String("error", err.Error()))
- return errors.ErrorTransForm(err)
- }
- ctx.JSON(http.StatusOK, resp)
- logReq := OperationLogRequest{
- Module:ModuleDepartment,
- Action:ActionDepartmentUpdate,
- Origin:rpcRsp.Origin,
- Target:req.DepartmentUpdateBody,
- UserName:tokenInfo.UserName,
- Uid:tokenInfo.Uid,
- Cid:tokenInfo.Cid,
- GardenId:tokenInfo.GardenId,
- }
- go OperationLogAdd(&logReq)
- return nil
- }
- // 执行任务
- httptasker.Exec(ctx, parseParamTask, handleServiceTask)
- }
- //
- // @Summary 删除部门
- // @Description 删除部门
- // @Tags 部门
- // @Accept json
- // @Produce json
- // @Param token header string true "token"
- // @Param id query int true "id"
- // @Success 200 {object} v1.DepartmentDelResponse
- // @Failure 500 {object} base.HTTPError
- // @Router /api/v1/department [delete]
- func (c *Controller) DepartmentDel(ctx *gin.Context) {
- // 解析参数
- req := ¶m_v1.DepartmentDelRequest{}
- parseParamTask := func() error {
- err := util.ShouldBind(ctx, &req.Header, nil, &req.DepartmentDelQuery, nil)
- if err != nil {
- logger.Error("func",
- zap.String("call", "util.ShouldBind"),
- zap.String("error", err.Error()))
- return errors.ParamsError
- }
- return nil
- }
- // 业务处理
- handleServiceTask := func() error {
- tokenInfo, err := utils.GetSubjectValue(ctx)
- if err != nil {
- return err
- }
- // 响应数据
- resp := param_v1.DepartmentDelResponse{}
- rpcReq := &v1.DepartmentDelRequest{
- GardenId:tokenInfo.GardenId,
- Id:req.Id,
- }
- rpcRsp, err := pb.System.DepartmentDel(ctx, rpcReq)
- if err != nil {
- s, _ := json.MarshalToString(req)
- logger.Error("func",
- zap.String("call", "pb.System.DepartmentDel"),
- zap.String("params", s),
- zap.String("error", err.Error()))
- return errors.ErrorTransForm(err)
- }
- ctx.JSON(http.StatusOK, resp)
- logReq := OperationLogRequest{
- Module:ModuleDepartment,
- Action:ActionDepartmentDel,
- Origin:rpcRsp.Origin,
- Target:nil,
- UserName:tokenInfo.UserName,
- Uid:tokenInfo.Uid,
- Cid:tokenInfo.Cid,
- GardenId:tokenInfo.GardenId,
- }
- go OperationLogAdd(&logReq)
- return nil
- }
- // 执行任务
- httptasker.Exec(ctx, parseParamTask, handleServiceTask)
- }
- //
- // @Summary 部门列表
- // @Description 部门列表
- // @Tags 部门
- // @Accept json
- // @Produce json
- // @Param page query int false " "
- // @Param page_size query int false " "
- // @Param token header string true "token"
- // @Success 200 {object} v1.DepartmentListResponse
- // @Failure 500 {object} base.HTTPError
- // @Router /api/v1/department [get]
- func (c *Controller) DepartmentList(ctx *gin.Context) {
- // 解析参数
- req := ¶m_v1.DepartmentListRequest{}
- parseParamTask := func() error {
- err := util.ShouldBind(ctx, &req.Header, nil, &req.DepartmentListQuery, nil)
- if err != nil {
- logger.Error("func",
- zap.String("call", "util.ShouldBind"),
- zap.String("error", err.Error()))
- return errors.ParamsError
- }
- return nil
- }
- // 业务处理
- handleServiceTask := func() error {
- tokenInfo, err := utils.GetSubjectValue(ctx)
- if err != nil {
- return err
- }
- // 响应数据
- resp := param_v1.DepartmentListResponse{}
- rpcReq := &v1.DepartmentListRequest{
- GardenId:tokenInfo.GardenId,
- }
- rpcRsp, err := pb.System.DepartmentList(ctx, rpcReq)
- if err != nil {
- s, _ := json.MarshalToString(req)
- logger.Error("func",
- zap.String("call", "pb.System.DepartmentList"),
- zap.String("params", s),
- zap.String("error", err.Error()))
- return errors.ErrorTransForm(err)
- }
- if rpcRsp.List == nil {
- rpcRsp.List = make([]*v1.DepartmentItem, 0)
- }
- resp.Data = *rpcRsp
- ctx.JSON(http.StatusOK, resp)
- return nil
- }
- // 执行任务
- httptasker.Exec(ctx, parseParamTask, handleServiceTask)
- }
|