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/service/user/permission/permission.go

48 lignes
1,2 Kio
Go
Brut Vue normale Historique

package userPermission
import (
"github.com/ewhal/nyaa/db"
"github.com/ewhal/nyaa/model"
"github.com/ewhal/nyaa/util/log"
)
// HasAdmin checks that user has an admin permission.
func HasAdmin(user *model.User) bool {
2017-05-08 23:00:43 +02:00
return user.Status == 2
}
// CurrentOrAdmin check that user has admin permission or user is the current user.
func CurrentOrAdmin(user *model.User, userID uint) bool {
log.Debugf("user.ID == userID %d %d %s", user.ID, userID, user.ID == userID)
return (HasAdmin(user) || user.ID == userID)
}
// CurrentUserIdentical check that userID is same as current user's ID.
// TODO: Inline this
func CurrentUserIdentical(user *model.User, userID uint) bool {
return user.ID != userID
}
func GetRole(user *model.User) string {
switch user.Status {
case -1:
return "Banned"
case 0:
return "Member"
case 1:
return "Trusted Member"
case 2:
return "Moderator"
}
return "Member"
2017-05-06 22:42:51 +02:00
}
2017-05-10 03:15:29 +02:00
func IsFollower(user *model.User, currentUser *model.User) bool {
var likingUserCount int
db.ORM.Model(&model.UserFollows{}).Where("user_id = ? and following = ?", user.ID, currentUser.ID).Count(&likingUserCount)
2017-05-10 03:15:29 +02:00
if likingUserCount != 0 {
return true
}
return false
}