mirror of https://github.com/go-sonic/sonic.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
1.8 KiB
Go
30 lines
1.8 KiB
Go
package service
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/go-sonic/sonic/consts"
|
|
"github.com/go-sonic/sonic/model/entity"
|
|
"github.com/go-sonic/sonic/model/param"
|
|
)
|
|
|
|
type BaseCommentService interface {
|
|
CreateBy(ctx context.Context, commentParam *param.Comment) (*entity.Comment, error)
|
|
Page(ctx context.Context, commentQuery param.CommentQuery, commentType consts.CommentType) ([]*entity.Comment, int64, error)
|
|
GetByID(ctx context.Context, commentID int32) (*entity.Comment, error)
|
|
LGetByIDs(ctx context.Context, commentIDs []int32) ([]*entity.Comment, error)
|
|
GetByContentID(ctx context.Context, contentID int32, contentType consts.CommentType, sort *param.Sort) ([]*entity.Comment, error)
|
|
Create(ctx context.Context, comment *entity.Comment) (*entity.Comment, error)
|
|
UpdateStatus(ctx context.Context, commentID int32, commentStatus consts.CommentStatus) (*entity.Comment, error)
|
|
UpdateStatusBatch(ctx context.Context, commentIDs []int32, commentStatus consts.CommentStatus) ([]*entity.Comment, error)
|
|
Delete(ctx context.Context, commentID int32) error
|
|
DeleteBatch(ctx context.Context, commentIDs []int32) error
|
|
Update(ctx context.Context, comment *entity.Comment) (*entity.Comment, error)
|
|
BuildAvatarURL(ctx context.Context, gravatarMD5 string, gravatarSource, gravatarDefault *string) (string, error)
|
|
ConvertParam(commentParam *param.Comment) *entity.Comment
|
|
CountByContentID(ctx context.Context, contentID int32, commentType consts.CommentType, status consts.CommentStatus) (int64, error)
|
|
CountByStatusAndContentIDs(ctx context.Context, status consts.CommentStatus, contentIDs []int32) (map[int32]int64, error)
|
|
CountChildren(ctx context.Context, parentCommentIDs []int32) (map[int32]int64, error)
|
|
GetChildren(ctx context.Context, parentCommentID int32, contentID int32, commentType consts.CommentType) ([]*entity.Comment, error)
|
|
}
|