base

package
v0.4.1 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Aug 24, 2023 License: MIT Imports: 18 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func NewBindAnyFn added in v0.3.0

func NewBindAnyFn() func(c *gin.Context, obj any) mir.Error

func RenderAny

func RenderAny(c *gin.Context, data any, err mir.Error)

func UserFrom

func UserFrom(c *gin.Context) (*ms.User, bool)

func UserIdFrom

func UserIdFrom(c *gin.Context) (int64, bool)

func UserNameFrom

func UserNameFrom(c *gin.Context) (string, bool)

Types

type BaseServant

type BaseServant struct {
	// contains filtered or unexported fields
}

func NewBaseServant added in v0.4.0

func NewBaseServant() *BaseServant

func (*BaseServant) Bind added in v0.4.0

func (s *BaseServant) Bind(c *gin.Context, obj any) mir.Error

func (*BaseServant) Render added in v0.4.0

func (s *BaseServant) Render(c *gin.Context, data any, err mir.Error)

type DaoServant

type DaoServant struct {
	*BaseServant

	Dsa   core.WebDataServantA
	Ds    core.DataService
	Ts    core.TweetSearchService
	Redis core.RedisCache
}

func NewDaoServant added in v0.3.0

func NewDaoServant() *DaoServant

func (*DaoServant) DeleteSearchPost

func (s *DaoServant) DeleteSearchPost(post *ms.Post) error

func (*DaoServant) GetTweetBy

func (s *DaoServant) GetTweetBy(id int64) (*ms.PostFormated, error)

func (*DaoServant) GetTweetList

func (s *DaoServant) GetTweetList(conditions ms.ConditionsT, offset, limit int) ([]*ms.Post, []*ms.PostFormated, error)

func (*DaoServant) PushPostToSearch

func (s *DaoServant) PushPostToSearch(post *ms.Post)

func (*DaoServant) PushPostsToSearch

func (s *DaoServant) PushPostsToSearch(c context.Context)

func (*DaoServant) RelationTypFrom added in v0.4.0

func (s *DaoServant) RelationTypFrom(me *ms.User, username string) (res *cs.VistUser, err error)

type JsonResp

type JsonResp struct {
	Code int    `json:"code"`
	Msg  string `json:"msg,omitempty"`
	Data any    `json:"data,omitempty"`
}

type PageInfoSetter

type PageInfoSetter interface {
	SetPageInfo(page, pageSize int)
}

type PageResp

type PageResp struct {
	List  any   `json:"list"`
	Pager Pager `json:"pager"`
}

func PageRespFrom

func PageRespFrom(list any, page int, pageSize int, totalRows int64) *PageResp

type Pager

type Pager struct {
	Page      int   `json:"page"`
	PageSize  int   `json:"page_size"`
	TotalRows int64 `json:"total_rows"`
}

type SentryHubSetter added in v0.3.0

type SentryHubSetter interface {
	SetSentryHub(hub *sentry.Hub)
}

type UserIdSetter

type UserIdSetter interface {
	SetUserId(int64)
}

type UserSetter

type UserSetter interface {
	SetUser(*ms.User)
}

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL