Documentation ¶
Index ¶
- func GetMD5Hash(text string) string
- func Hash(password string) ([]byte, error)
- func VerifyPassword(hashedPassword, password string) error
- type Election
- func (p *Election) DeleteAElection(db *gorm.DB, pid uint64, uid uint32) (int64, error)
- func (p *Election) FindAllElections(db *gorm.DB) (*[]Election, error)
- func (p *Election) FindElectionByID(db *gorm.DB, pid uint64) (*Election, error)
- func (p *Election) Prepare()
- func (p *Election) SaveElection(db *gorm.DB) (*Election, error)
- func (p *Election) UpdateAElection(db *gorm.DB) (*Election, error)
- func (p *Election) Validate() error
- type JSON
- type JsonArray
- type LoginUser
- type Post
- func (p *Post) DeleteAPost(db *gorm.DB, pid uint64, uid uint32) (int64, error)
- func (p *Post) FindAllPosts(db *gorm.DB) (*[]Post, error)
- func (p *Post) FindPostByID(db *gorm.DB, pid uint64) (*Post, error)
- func (p *Post) Prepare()
- func (p *Post) SavePost(db *gorm.DB) (*Post, error)
- func (p *Post) UpdateAPost(db *gorm.DB) (*Post, error)
- func (p *Post) Validate() error
- type User
- func (u *User) BeforeSave(*gorm.DB) error
- func (u *User) DeleteAUser(db *gorm.DB, uid uint32) (int64, error)
- func (u *User) FindAllUsers(db *gorm.DB) (*[]User, error)
- func (u *User) FindUserByID(db *gorm.DB, uid uint32) (*User, error)
- func (u *User) Prepare()
- func (u *User) ResetUserPassword(db *gorm.DB, uid uint32, sendEmail bool) (*User, error)
- func (u *User) SaveUser(db *gorm.DB) (*User, error)
- func (u *User) UpdateAUser(db *gorm.DB, uid uint32) (*User, error)
- func (u *User) Validate(action string) error
- type Vote
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func GetMD5Hash ¶
func VerifyPassword ¶
Types ¶
type Election ¶
type Election struct { ID uint64 `gorm:"primary_key;auto_increment" json:"id"` Title string `gorm:"size:255;not null;unique" json:"title"` Description string `gorm:"size:255;not null;" json:"description"` Author User `json:"author"` AuthorID uint32 `sql:"type:int REFERENCES users(id)" json:"author_id"` Candidates JsonArray `json:"candidates"` Data JSON `json:"data"` CreatedAt time.Time `gorm:"default:CURRENT_TIMESTAMP" json:"created_at"` UpdatedAt time.Time `gorm:"default:CURRENT_TIMESTAMP" json:"updated_at"` }
func (*Election) DeleteAElection ¶
func (*Election) FindAllElections ¶
func (*Election) FindElectionByID ¶
func (*Election) UpdateAElection ¶
type JSON ¶
type JSON map[string]interface{}
type JsonArray ¶
type JsonArray []map[string]interface{}
func (JsonArray) GormDBDataType ¶
type Post ¶
type Post struct { ID uint64 `gorm:"primary_key;auto_increment" json:"id"` Title string `gorm:"size:255;not null;unique" json:"title"` Content string `gorm:"size:255;not null;" json:"content"` Author User `json:"author"` AuthorID uint32 `sql:"type:int REFERENCES users(id)" json:"author_id"` CreatedAt time.Time `gorm:"default:CURRENT_TIMESTAMP" json:"created_at"` UpdatedAt time.Time `gorm:"default:CURRENT_TIMESTAMP" json:"updated_at"` }
func (*Post) DeleteAPost ¶
type User ¶
type User struct { ID uint32 `gorm:"primary_key;auto_increment" json:"id"` Nickname string `gorm:"size:255;not null;unique" json:"nickname"` Email string `gorm:"size:100;not null;unique" json:"email"` Password string `gorm:"size:100;not null;" json:"password,omitempty"` Admin bool `gorm:"not null;default:false" json:"admin"` CreatedAt time.Time `gorm:"default:CURRENT_TIMESTAMP" json:"created_at"` UpdatedAt time.Time `gorm:"default:CURRENT_TIMESTAMP" json:"updated_at"` }
func (*User) ResetUserPassword ¶
type Vote ¶
type Vote struct { ID uint64 `gorm:"primary_key;auto_increment" json:"id"` ElectionID uint64 `gorm:"column:election_id" json:"election_id"` Author User `json:"author"` AuthorID uint32 `sql:"column:author_id;type:int REFERENCES users(id)" json:"author_id"` Ranking JsonArray `json:"ranking"` CreatedAt time.Time `gorm:"default:CURRENT_TIMESTAMP" json:"created_at"` }
func (*Vote) FindAllVotes ¶
Click to show internal directories.
Click to hide internal directories.