app-cloudep-tweeting-service/internal/server/commentservice/comment_service_server.go

48 lines
1.5 KiB
Go
Raw Permalink Normal View History

2024-08-28 09:09:01 +00:00
// Code generated by goctl. DO NOT EDIT.
2024-08-28 14:24:47 +00:00
// Source: tweeting.proto
2024-08-28 09:09:01 +00:00
package server
import (
"context"
2024-08-28 14:29:42 +00:00
"app-cloudep-tweeting-service/gen_result/pb/tweeting"
commentservicelogic "app-cloudep-tweeting-service/internal/logic/commentservice"
2024-08-28 14:29:42 +00:00
"app-cloudep-tweeting-service/internal/svc"
2024-08-28 09:09:01 +00:00
)
type CommentServiceServer struct {
svcCtx *svc.ServiceContext
2024-08-28 14:24:47 +00:00
tweeting.UnimplementedCommentServiceServer
2024-08-28 09:09:01 +00:00
}
func NewCommentServiceServer(svcCtx *svc.ServiceContext) *CommentServiceServer {
return &CommentServiceServer{
svcCtx: svcCtx,
}
}
// NewComment 發表評論
func (s *CommentServiceServer) NewComment(ctx context.Context, in *tweeting.CommentPostReq) (*tweeting.CommentPostResp, error) {
2024-08-28 09:09:01 +00:00
l := commentservicelogic.NewNewCommentLogic(ctx, s.svcCtx)
return l.NewComment(in)
}
// GetComments 查詢評論
2024-08-28 14:24:47 +00:00
func (s *CommentServiceServer) GetComments(ctx context.Context, in *tweeting.GetCommentsReq) (*tweeting.GetCommentsResp, error) {
2024-08-28 09:09:01 +00:00
l := commentservicelogic.NewGetCommentsLogic(ctx, s.svcCtx)
return l.GetComments(in)
}
// DeleteComment 刪除評論
2024-08-28 14:24:47 +00:00
func (s *CommentServiceServer) DeleteComment(ctx context.Context, in *tweeting.DeleteCommentReq) (*tweeting.OKResp, error) {
2024-08-28 09:09:01 +00:00
l := commentservicelogic.NewDeleteCommentLogic(ctx, s.svcCtx)
return l.DeleteComment(in)
}
// UpdateComment 更新評論
2024-08-28 14:24:47 +00:00
func (s *CommentServiceServer) UpdateComment(ctx context.Context, in *tweeting.UpdateCommentReq) (*tweeting.OKResp, error) {
2024-08-28 09:09:01 +00:00
l := commentservicelogic.NewUpdateCommentLogic(ctx, s.svcCtx)
return l.UpdateComment(in)
}