2023-08-16 13:17:42 +03:00
|
|
|
package handler
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"database/sql"
|
|
|
|
"errors"
|
|
|
|
"net/http"
|
|
|
|
|
|
|
|
pb "git.unistack.org/unistack-org/pkgdash/proto"
|
2023-08-18 23:59:15 +03:00
|
|
|
httpsrv "go.unistack.org/micro-server-http/v4"
|
|
|
|
"go.unistack.org/micro/v4/logger"
|
2023-08-16 13:17:42 +03:00
|
|
|
)
|
|
|
|
|
|
|
|
func (h *Handler) CommentsDelete(ctx context.Context, req *pb.CommentsDeleteReq, rsp *pb.CommentsDeleteRsp) error {
|
|
|
|
logger.Debug(ctx, "Start AddComment")
|
|
|
|
|
|
|
|
err := req.Validate()
|
|
|
|
if err != nil {
|
|
|
|
logger.Error(ctx, err)
|
|
|
|
httpsrv.SetRspCode(ctx, http.StatusBadRequest)
|
|
|
|
return httpsrv.SetError(NewValidationError(err))
|
|
|
|
}
|
|
|
|
|
|
|
|
if err = h.store.CommentsDelete(ctx, req); err != nil {
|
|
|
|
logger.Error(ctx, err)
|
|
|
|
if errors.Is(err, sql.ErrNoRows) {
|
|
|
|
httpsrv.SetRspCode(ctx, http.StatusNotFound)
|
|
|
|
return httpsrv.SetError(NewNotFoundError(err))
|
|
|
|
}
|
|
|
|
httpsrv.SetRspCode(ctx, http.StatusInternalServerError)
|
|
|
|
return httpsrv.SetError(NewInternalError(err))
|
|
|
|
}
|
|
|
|
|
|
|
|
logger.Debug(ctx, "Success finish addComment")
|
|
|
|
return nil
|
|
|
|
}
|