Albirew/nyaa-pantsu
Albirew
/
nyaa-pantsu
Archivé
1
0
Bifurcation 0
Ce dépôt a été archivé le 2022-05-07. Vous pouvez voir ses fichiers ou le cloner, mais pas ouvrir de ticket ou de demandes d'ajout, ni soumettre de changements.
nyaa-pantsu/model/user.go

198 lignes
5.4 KiB
Go
Brut Vue normale Historique

package model
import (
2017-05-21 20:20:40 +02:00
"encoding/json"
2017-05-22 00:22:42 +02:00
"fmt"
2017-05-24 09:11:13 +02:00
"time"
"github.com/NyaaPantsu/nyaa/config"
)
const (
// UserStatusBanned : Int for User status banned
UserStatusBanned = -1
// UserStatusMember : Int for User status member
UserStatusMember = 0
// UserStatusTrusted : Int for User status trusted
UserStatusTrusted = 1
// UserStatusModerator : Int for User status moderator
UserStatusModerator = 2
)
// User model
type User struct {
ID uint `gorm:"column:user_id;primary_key"`
Username string `gorm:"column:username"`
Password string `gorm:"column:password"`
Email string `gorm:"column:email"`
Status int `gorm:"column:status"`
CreatedAt time.Time `gorm:"column:created_at"`
UpdatedAt time.Time `gorm:"column:updated_at"`
APIToken string `gorm:"column:api_token"`
APITokenExpiry time.Time `gorm:"column:api_token_expiry"`
Language string `gorm:"column:language"`
2017-05-21 18:13:28 +02:00
UserSettings string `gorm:"column:settings"`
2017-05-09 12:14:12 +02:00
// TODO: move this to PublicUser
2017-05-24 09:11:13 +02:00
Likings []User // Don't work `gorm:"foreignkey:user_id;associationforeignkey:follower_id;many2many:user_follows"`
Liked []User // Don't work `gorm:"foreignkey:follower_id;associationforeignkey:user_id;many2many:user_follows"`
2017-05-09 12:14:12 +02:00
2017-05-24 09:11:13 +02:00
MD5 string `json:"md5" gorm:"column:md5"` // Hash of email address, used for Gravatar
Torrents []Torrent `gorm:"ForeignKey:UploaderID"`
2017-05-21 18:13:28 +02:00
Notifications []Notification `gorm:"ForeignKey:UserID"`
2017-05-20 20:53:05 +02:00
2017-05-24 09:11:13 +02:00
UnreadNotifications int `gorm:"-"` // We don't want to loop every notifications when accessing user unread notif
Settings UserSettings `gorm:"-"` // We don't want to load settings everytime, stock it as a string, parse it when needed
2017-05-10 10:27:17 +02:00
}
// UserJSON : User model conversion in JSON
2017-05-10 21:09:37 +02:00
type UserJSON struct {
ID uint `json:"user_id"`
Username string `json:"username"`
Status int `json:"status"`
CreatedAt string `json:"created_at"`
LikingCount int `json:"liking_count"`
LikedCount int `json:"liked_count"`
}
// Size : Returns the total size of memory recursively allocated for this struct
2017-05-10 10:27:17 +02:00
func (u User) Size() (s int) {
s += 4 + // ints
6*2 + // string pointers
4*3 + //time.Time
3*2 + // arrays
// string arrays
len(u.Username) + len(u.Password) + len(u.Email) + len(u.APIToken) + len(u.MD5) + len(u.Language)
2017-05-10 10:27:17 +02:00
s *= 8
// Ignoring foreign key users. Fuck them.
return
}
// IsBanned : Return true if user is banned
func (u *User) IsBanned() bool {
return u.Status == UserStatusBanned
}
// IsMember : Return true if user is member
func (u *User) IsMember() bool {
return u.Status == UserStatusMember
}
// IsTrusted : Return true if user is tusted
func (u *User) IsTrusted() bool {
return u.Status == UserStatusTrusted
}
// IsModerator : Return true if user is moderator
func (u *User) IsModerator() bool {
return u.Status == UserStatusModerator
}
// GetUnreadNotifications : Get unread notifications from a user
func (u *User) GetUnreadNotifications() int {
2017-05-24 09:11:13 +02:00
if u.UnreadNotifications == 0 {
2017-05-20 20:53:05 +02:00
for _, notif := range u.Notifications {
if !notif.Read {
u.UnreadNotifications++
}
}
}
return u.UnreadNotifications
}
// PublicUser : Is it Deprecated?
2017-05-08 19:26:29 +02:00
type PublicUser struct {
2017-05-10 10:27:17 +02:00
User *User
}
// UserFollows association table : different users following eachother
2017-05-09 17:14:13 +02:00
type UserFollows struct {
2017-05-09 12:14:12 +02:00
UserID uint `gorm:"column:user_id"`
FollowerID uint `gorm:"column:following"`
2017-05-09 07:21:14 +02:00
}
// UserUploadsOld model : Is it deprecated?
type UserUploadsOld struct {
Username string `gorm:"column:username"`
TorrentID uint `gorm:"column:torrent_id"`
}
// UserSettings : Struct for user settings, not a model
2017-05-21 18:13:28 +02:00
type UserSettings struct {
2017-05-24 09:11:13 +02:00
Settings map[string]bool `json:"settings"`
2017-05-21 18:13:28 +02:00
}
// TableName : Return the name of OldComment table
func (c UserUploadsOld) TableName() string {
// is this needed here?
return config.UploadsOldTableName
}
2017-05-10 21:09:37 +02:00
// ToJSON : Conversion of a user model to json
2017-05-10 21:09:37 +02:00
func (u *User) ToJSON() UserJSON {
json := UserJSON{
ID: u.ID,
Username: u.Username,
Status: u.Status,
CreatedAt: u.CreatedAt.Format(time.RFC3339),
2017-05-20 20:53:05 +02:00
LikingCount: len(u.Likings),
LikedCount: len(u.Liked),
2017-05-10 21:09:37 +02:00
}
return json
}
2017-05-21 18:13:28 +02:00
/* User Settings */
// Get a user setting by keyname
2017-05-24 09:11:13 +02:00
func (s *UserSettings) Get(key string) bool {
if val, ok := s.Settings[key]; ok {
return val
2017-05-21 19:38:39 +02:00
}
return config.DefaultUserSettings[key]
2017-05-21 19:38:39 +02:00
}
// GetSettings : get all user settings
2017-05-22 00:22:42 +02:00
func (s *UserSettings) GetSettings() map[string]bool {
return s.Settings
2017-05-21 18:13:28 +02:00
}
// Set a user setting by keyname
2017-05-22 00:22:42 +02:00
func (s *UserSettings) Set(key string, val bool) {
if s.Settings == nil {
s.Settings = make(map[string]bool)
}
s.Settings[key] = val
}
// ToDefault : Set user settings to default
2017-05-22 00:22:42 +02:00
func (s *UserSettings) ToDefault() {
s.Settings = config.DefaultUserSettings
2017-05-21 18:13:28 +02:00
}
func (s *UserSettings) initialize() {
2017-05-22 00:22:42 +02:00
s.Settings = make(map[string]bool)
2017-05-21 18:13:28 +02:00
}
// SaveSettings : Format settings into a json string for preparing before user insertion
2017-05-22 00:22:42 +02:00
func (u *User) SaveSettings() {
byteArray, err := json.Marshal(u.Settings)
2017-05-24 09:11:13 +02:00
if err != nil {
2017-05-22 00:22:42 +02:00
fmt.Print(err)
}
u.UserSettings = string(byteArray)
2017-05-21 18:13:28 +02:00
}
// ParseSettings : Function to parse json string into usersettings struct, only parse if necessary
2017-05-22 00:22:42 +02:00
func (u *User) ParseSettings() {
2017-05-21 19:38:39 +02:00
if len(u.Settings.GetSettings()) == 0 && u.UserSettings != "" {
u.Settings.initialize()
2017-05-22 00:22:42 +02:00
json.Unmarshal([]byte(u.UserSettings), &u.Settings)
} else if len(u.Settings.GetSettings()) == 0 && u.UserSettings != "" {
u.Settings.initialize()
2017-05-22 00:22:42 +02:00
u.Settings.ToDefault()
2017-05-21 19:38:39 +02:00
}
2017-05-24 09:11:13 +02:00
}