123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667 |
- 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-household-gateway/errors"
- param_v1 "property-household-gateway/param/v1"
- "property-household-gateway/pb"
- "property-household-gateway/pb/v1"
- "property-household-gateway/utils"
- )
- //
- // @Summary 分类列表
- // @Description 分类列表
- // @Tags 社区邻里
- // @Accept json
- // @Produce json
- // @Param token header string true "token"
- // @Param garden_id query int true "小区id"
- // @Param page query int false " "
- // @Param page_size query int false " "
- // @Param class_name query string false "分类名称"
- // @Success 200 {object} v1.NeighborClassListResponse
- // @Failure 500 {object} base.HTTPError
- // @Router /api/v1/service/neighbor/class [get]
- func (c *Controller) NeighborClassList(ctx *gin.Context) {
- // 解析参数
- req := ¶m_v1.NeighborClassListRequest{}
- parseParamTask := func() error {
- err := util.ShouldBind(ctx, &req.Header, nil, &req.NeighborClassListQuery, 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.GetJwtTokenInfo(ctx)
- if err != nil {
- return err
- }*/
- // 响应数据
- resp := param_v1.NeighborClassListResponse{}
- rpcReq := &v1.NeighborClassListRequest{
- GardenId: req.GardenId,
- PageSize: req.PageSize,
- Page: req.Page,
- ClassName: req.ClassName,
- }
- rpcRsp, err := pb.Garden.NeighborClassList(ctx, rpcReq)
- if err != nil {
- s, _ := json.MarshalToString(req)
- logger.Error("func",
- zap.String("call", "pb.Garden.NeighborClassList"),
- zap.String("params", s),
- zap.String("error", err.Error()))
- return errors.ErrorTransForm(err)
- }
- if rpcRsp.List == nil {
- rpcRsp.List = make([]*v1.NeighborClassItem, 0)
- }
- resp.Data = *rpcRsp
- ctx.JSON(http.StatusOK, resp)
- return nil
- }
- // 执行任务
- httptasker.Exec(ctx, parseParamTask, handleServiceTask)
- }
- //
- // @Summary 添加文章
- // @Description 添加文章
- // @Tags 社区邻里
- // @Accept json
- // @Produce json
- // @Param token header string true "token"
- // @Param body body v1.NeighborArticleAddBody true "信息"
- // @Success 200 {object} v1.NeighborArticleAddResponse
- // @Failure 500 {object} base.HTTPError
- // @Router /api/v1/service/neighbor/article [post]
- func (c *Controller) NeighborArticleAdd(ctx *gin.Context) {
- // 解析参数
- req := ¶m_v1.NeighborArticleAddRequest{}
- parseParamTask := func() error {
- err := util.ShouldBind(ctx, &req.Header, nil, nil, &req.NeighborArticleAddBody)
- 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.GetJwtTokenInfo(ctx)
- if err != nil {
- return err
- }
- // 响应数据
- resp := param_v1.NeighborArticleAddResponse{}
- rpcReq := &v1.NeighborArticleAddRequest{
- GardenId: req.GardenId,
- Uid: tokenInfo.Uid,
- UserIcon: tokenInfo.UserIcon,
- Title: req.Title,
- Content: req.Content,
- Pics: req.Pics,
- ClassId: req.ClassId,
- NickName: tokenInfo.NickName,
- }
- _, err = pb.Garden.NeighborArticleAdd(ctx, rpcReq)
- if err != nil {
- s, _ := json.MarshalToString(req)
- logger.Error("func",
- zap.String("call", "pb.Garden.NeighborArticleAdd"),
- zap.String("params", s),
- zap.String("error", err.Error()))
- return errors.ErrorTransForm(err)
- }
- ctx.JSON(http.StatusOK, resp)
- return nil
- }
- // 执行任务
- httptasker.Exec(ctx, parseParamTask, handleServiceTask)
- }
- //
- // @Summary 修改文章
- // @Description 修改文章
- // @Tags 社区邻里
- // @Accept json
- // @Produce json
- // @Param token header string true "token"
- // @Param body body v1.NeighborArticleUpdateBody true "信息"
- // @Success 200 {object} v1.NeighborArticleUpdateResponse
- // @Failure 500 {object} base.HTTPError
- // @Router /api/v1/service/neighbor/article [put]
- func (c *Controller) NeighborArticleUpdate(ctx *gin.Context) {
- // 解析参数
- req := ¶m_v1.NeighborArticleUpdateRequest{}
- parseParamTask := func() error {
- err := util.ShouldBind(ctx, &req.Header, nil, nil, &req.NeighborArticleUpdateBody)
- 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.GetJwtTokenInfo(ctx)
- if err != nil {
- return err
- }
- // 响应数据
- resp := param_v1.NeighborArticleUpdateResponse{}
- rpcReq := &v1.NeighborArticleUpdateRequest{
- GardenId: req.GardenId,
- Title: req.Title,
- Content: req.Content,
- Pics: req.Pics,
- Id: req.Id,
- Uid: tokenInfo.Uid,
- }
- _, err = pb.Garden.NeighborArticleUpdate(ctx, rpcReq)
- if err != nil {
- s, _ := json.MarshalToString(req)
- logger.Error("func",
- zap.String("call", "pb.Garden.NeighborArticleUpdate"),
- zap.String("params", s),
- zap.String("error", err.Error()))
- return errors.ErrorTransForm(err)
- }
- ctx.JSON(http.StatusOK, resp)
- return nil
- }
- // 执行任务
- httptasker.Exec(ctx, parseParamTask, handleServiceTask)
- }
- //
- // @Summary 删除文章
- // @Description 删除文章
- // @Tags 社区邻里
- // @Accept json
- // @Produce json
- // @Param token header string true "token"
- // @Param garden_id query int true "小区id"
- // @Param id query int true " "
- // @Success 200 {object} v1.NeighborArticleDelResponse
- // @Failure 500 {object} base.HTTPError
- // @Router /api/v1/service/neighbor/article [delete]
- func (c *Controller) NeighborArticleDel(ctx *gin.Context) {
- // 解析参数
- req := ¶m_v1.NeighborArticleDelRequest{}
- parseParamTask := func() error {
- err := util.ShouldBind(ctx, &req.Header, nil, &req.NeighborArticleDelQuery, 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.GetJwtTokenInfo(ctx)
- if err != nil {
- return err
- }
- // 响应数据
- resp := param_v1.NeighborArticleDelResponse{}
- rpcReq := &v1.NeighborArticleDelRequest{
- GardenId: req.GardenId,
- Id: req.Id,
- Admin: false,
- Uid: tokenInfo.Uid,
- }
- _, err = pb.Garden.NeighborArticleDel(ctx, rpcReq)
- if err != nil {
- s, _ := json.MarshalToString(req)
- logger.Error("func",
- zap.String("call", "pb.Garden.NeighborArticleDel"),
- zap.String("params", s),
- zap.String("error", err.Error()))
- return errors.ErrorTransForm(err)
- }
- ctx.JSON(http.StatusOK, resp)
- return nil
- }
- // 执行任务
- httptasker.Exec(ctx, parseParamTask, handleServiceTask)
- }
- //
- // @Summary 文章列表
- // @Description 文章列表
- // @Tags 社区邻里
- // @Accept json
- // @Produce json
- // @Param token header string true "token"
- // @Param garden_id query int true "小区id"
- // @Param page query int false " "
- // @Param page_size query int false " "
- // @Param title query string false "文章标题 "
- // @Param is_me query bool false "true我发布的 false 不过滤 "
- // @Success 200 {object} v1.NeighborArticleListResponse
- // @Failure 500 {object} base.HTTPError
- // @Router /api/v1/service/neighbor/article [get]
- func (c *Controller) NeighborArticleList(ctx *gin.Context) {
- // 解析参数
- req := ¶m_v1.NeighborArticleListRequest{}
- parseParamTask := func() error {
- err := util.ShouldBind(ctx, &req.Header, nil, &req.NeighborArticleListQuery, 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.GetJwtTokenInfo(ctx)
- if err != nil {
- return err
- }
- // 响应数据
- resp := param_v1.NeighborArticleListResponse{}
- rpcReq := &v1.NeighborArticleListRequest{
- GardenId: req.GardenId,
- PageSize: req.PageSize,
- Page: req.Page,
- Title: req.Title,
- Uid: tokenInfo.Uid,
- IsMe: req.IsMe,
- }
- rpcRsp, err := pb.Garden.NeighborArticleList(ctx, rpcReq)
- if err != nil {
- s, _ := json.MarshalToString(req)
- logger.Error("func",
- zap.String("call", "pb.Garden.NeighborArticleList"),
- zap.String("params", s),
- zap.String("error", err.Error()))
- return errors.ErrorTransForm(err)
- }
- if rpcRsp.List == nil {
- rpcRsp.List = make([]*v1.NeighborArticleItem, 0)
- }
- resp.Data = *rpcRsp
- ctx.JSON(http.StatusOK, resp)
- return nil
- }
- // 执行任务
- httptasker.Exec(ctx, parseParamTask, handleServiceTask)
- }
- //
- // @Summary 添加评论
- // @Description 添加评论
- // @Tags 社区邻里
- // @Accept json
- // @Produce json
- // @Param token header string true "token"
- // @Param body body v1.NeighborCommentAddBody true "信息"
- // @Success 200 {object} v1.NeighborCommentAddResponse
- // @Failure 500 {object} base.HTTPError
- // @Router /api/v1/service/neighbor/comment [post]
- func (c *Controller) NeighborCommentAdd(ctx *gin.Context) {
- // 解析参数
- req := ¶m_v1.NeighborCommentAddRequest{}
- parseParamTask := func() error {
- err := util.ShouldBind(ctx, &req.Header, nil, nil, &req.NeighborCommentAddBody)
- 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.GetJwtTokenInfo(ctx)
- if err != nil {
- return err
- }
- // 响应数据
- resp := param_v1.NeighborCommentAddResponse{}
- rpcReq := &v1.NeighborCommentAddRequest{
- GardenId: req.GardenId,
- Uid: tokenInfo.Uid,
- UserIcon: tokenInfo.UserIcon,
- Content: req.Content,
- Pics: req.Pics,
- Pid: req.Pid,
- ArticleId: req.ArticleId,
- NickName: tokenInfo.NickName,
- }
- _, err = pb.Garden.NeighborCommentAdd(ctx, rpcReq)
- if err != nil {
- s, _ := json.MarshalToString(req)
- logger.Error("func",
- zap.String("call", "pb.Garden.NeighborCommentAdd"),
- zap.String("params", s),
- zap.String("error", err.Error()))
- return errors.ErrorTransForm(err)
- }
- ctx.JSON(http.StatusOK, resp)
- return nil
- }
- // 执行任务
- httptasker.Exec(ctx, parseParamTask, handleServiceTask)
- }
- //
- // @Summary 修改评论
- // @Description 修改评论
- // @Tags 社区邻里
- // @Accept json
- // @Produce json
- // @Param token header string true "token"
- // @Param body body v1.NeighborCommentUpdateBody true "信息"
- // @Success 200 {object} v1.NeighborCommentUpdateResponse
- // @Failure 500 {object} base.HTTPError
- // @Router /api/v1/service/neighbor/comment [put]
- func (c *Controller) NeighborCommentUpdate(ctx *gin.Context) {
- // 解析参数
- req := ¶m_v1.NeighborCommentUpdateRequest{}
- parseParamTask := func() error {
- err := util.ShouldBind(ctx, &req.Header, nil, nil, &req.NeighborCommentUpdateBody)
- 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.GetJwtTokenInfo(ctx)
- if err != nil {
- return err
- }
- // 响应数据
- resp := param_v1.NeighborCommentUpdateResponse{}
- rpcReq := &v1.NeighborCommentUpdateRequest{
- GardenId: req.GardenId,
- Content: req.Content,
- Pics: req.Pics,
- Id: req.Id,
- Uid: tokenInfo.Uid,
- }
- _, err = pb.Garden.NeighborCommentUpdate(ctx, rpcReq)
- if err != nil {
- s, _ := json.MarshalToString(req)
- logger.Error("func",
- zap.String("call", "pb.Garden.NeighborCommentUpdate"),
- zap.String("params", s),
- zap.String("error", err.Error()))
- return errors.ErrorTransForm(err)
- }
- ctx.JSON(http.StatusOK, resp)
- return nil
- }
- // 执行任务
- httptasker.Exec(ctx, parseParamTask, handleServiceTask)
- }
- //
- // @Summary 删除评论
- // @Description 删除评论
- // @Tags 社区邻里
- // @Accept json
- // @Produce json
- // @Param token header string true "token"
- // @Param garden_id query int true "小区id"
- // @Param id query int true " "
- // @Success 200 {object} v1.NeighborCommentDelResponse
- // @Failure 500 {object} base.HTTPError
- // @Router /api/v1/service/neighbor/comment [delete]
- func (c *Controller) NeighborCommentDel(ctx *gin.Context) {
- // 解析参数
- req := ¶m_v1.NeighborCommentDelRequest{}
- parseParamTask := func() error {
- err := util.ShouldBind(ctx, &req.Header, nil, &req.NeighborCommentDelQuery, 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.GetJwtTokenInfo(ctx)
- if err != nil {
- return err
- }
- // 响应数据
- resp := param_v1.NeighborCommentDelResponse{}
- rpcReq := &v1.NeighborCommentDelRequest{
- GardenId: req.GardenId,
- Id: req.Id,
- Admin: false,
- Uid: tokenInfo.Uid,
- }
- _, err = pb.Garden.NeighborCommentDel(ctx, rpcReq)
- if err != nil {
- s, _ := json.MarshalToString(req)
- logger.Error("func",
- zap.String("call", "pb.Garden.NeighborCommentDel"),
- zap.String("params", s),
- zap.String("error", err.Error()))
- return errors.ErrorTransForm(err)
- }
- ctx.JSON(http.StatusOK, resp)
- return nil
- }
- // 执行任务
- httptasker.Exec(ctx, parseParamTask, handleServiceTask)
- }
- //
- // @Summary 评论列表
- // @Description 评论列表
- // @Tags 社区邻里
- // @Accept json
- // @Produce json
- // @Param token header string true "token"
- // @Param garden_id query int true "小区id"
- // @Param page query int false " "
- // @Param page_size query int false " "
- // @Param article_id query int true "文章id"
- // @Param pid query int false "父评论id"
- // @Success 200 {object} v1.NeighborCommentListResponse
- // @Failure 500 {object} base.HTTPError
- // @Router /api/v1/service/neighbor/comment [get]
- func (c *Controller) NeighborCommentList(ctx *gin.Context) {
- // 解析参数
- req := ¶m_v1.NeighborCommentListRequest{}
- parseParamTask := func() error {
- err := util.ShouldBind(ctx, &req.Header, nil, &req.NeighborCommentListQuery, 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.GetJwtTokenInfo(ctx)
- if err != nil {
- return err
- }
- // 响应数据
- resp := param_v1.NeighborCommentListResponse{}
- rpcReq := &v1.NeighborCommentListRequest{
- GardenId: req.GardenId,
- PageSize: req.PageSize,
- Page: req.Page,
- Uid: tokenInfo.Uid,
- ArticleId: req.ArticleId,
- CommentId: req.Pid,
- }
- rpcRsp, err := pb.Garden.NeighborCommentList(ctx, rpcReq)
- if err != nil {
- s, _ := json.MarshalToString(req)
- logger.Error("func",
- zap.String("call", "pb.Garden.NeighborCommentList"),
- zap.String("params", s),
- zap.String("error", err.Error()))
- return errors.ErrorTransForm(err)
- }
- if rpcRsp.List == nil {
- rpcRsp.List = make([]*v1.NeighborCommentItem, 0)
- }
- resp.Data = *rpcRsp
- ctx.JSON(http.StatusOK, resp)
- return nil
- }
- // 执行任务
- httptasker.Exec(ctx, parseParamTask, handleServiceTask)
- }
- //
- // @Summary 点赞或撤销点赞
- // @Description 点赞或撤销点赞
- // @Tags 社区邻里
- // @Accept json
- // @Produce json
- // @Param token header string true "token"
- // @Param body body v1.NeighborLikeBody true "信息"
- // @Success 200 {object} v1.NeighborLikeResponse
- // @Failure 500 {object} base.HTTPError
- // @Router /api/v1/service/neighbor/like [put]
- func (c *Controller) NeighborLike(ctx *gin.Context) {
- // 解析参数
- req := ¶m_v1.NeighborLikeRequest{}
- parseParamTask := func() error {
- err := util.ShouldBind(ctx, &req.Header, nil, nil, &req.NeighborLikeBody)
- 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.GetJwtTokenInfo(ctx)
- if err != nil {
- return err
- }
- // 响应数据
- resp := param_v1.NeighborLikeResponse{}
- rpcReq := &v1.NeighborLikeRequest{
- GardenId: req.GardenId,
- LikeType: req.LikeType,
- LikeId: req.LikeId,
- Uid: tokenInfo.Uid,
- Like: req.Like,
- }
- _, err = pb.Garden.NeighborLike(ctx, rpcReq)
- if err != nil {
- s, _ := json.MarshalToString(req)
- logger.Error("func",
- zap.String("call", "pb.Garden.NeighborLike"),
- zap.String("params", s),
- zap.String("error", err.Error()))
- return errors.ErrorTransForm(err)
- }
- ctx.JSON(http.StatusOK, resp)
- return nil
- }
- // 执行任务
- httptasker.Exec(ctx, parseParamTask, handleServiceTask)
- }
|