Documentation
¶
Index ¶
- func AddArticle(data map[string]interface{}) error
- func AddTag(name string, state int, createdBy string) error
- func CheckAuth(username, password string) (bool, error)
- func CleanAllArticle() error
- func CleanAllTag() (bool, error)
- func CloseDB()
- func DeleteArticle(id int) error
- func DeleteTag(id int) error
- func EditArticle(id int, data interface{}) error
- func EditTag(id int, data interface{}) error
- func ExistArticleByID(id int) (bool, error)
- func ExistTagByID(id int) (bool, error)
- func ExistTagByName(name string) (bool, error)
- func GetArticleTotal(maps interface{}) (int, error)
- func GetTagTotal(maps interface{}) (int, error)
- func Setup()
- type Article
- type Auth
- type Model
- type Tag
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func AddArticle ¶
AddArticle add a single article
func EditArticle ¶
EditArticle modify a single article
func ExistArticleByID ¶
ExistArticleByID checks if an article exists based on ID
func ExistTagByID ¶
ExistTagByID determines whether a Tag exists based on the ID
func ExistTagByName ¶
ExistTagByName checks if there is a tag with the same name
func GetArticleTotal ¶
GetArticleTotal gets the total number of articles based on the constraints
func GetTagTotal ¶
GetTagTotal counts the total number of tags based on the constraint
Types ¶
type Article ¶
type Article struct {
Model
TagID int `json:"tag_id" gorm:"index"`
Tag Tag `json:"tag"`
Title string `json:"title"`
Desc string `json:"desc"`
Content string `json:"content"`
CoverImageUrl string `json:"cover_image_url"`
CreatedBy string `json:"created_by"`
ModifiedBy string `json:"modified_by"`
State int `json:"state"`
}
func GetArticle ¶
GetArticle Get a single article based on ID
Click to show internal directories.
Click to hide internal directories.