2022-08-10 05:10:47 +00:00
|
|
|
package models
|
|
|
|
|
|
|
|
import (
|
2022-08-13 06:11:36 +00:00
|
|
|
"bytes"
|
|
|
|
"encoding/json"
|
2022-08-10 05:10:47 +00:00
|
|
|
"errors"
|
2023-06-16 05:05:21 +00:00
|
|
|
"fmt"
|
2022-08-10 05:10:47 +00:00
|
|
|
"strings"
|
|
|
|
"time"
|
|
|
|
|
2022-08-26 04:21:46 +00:00
|
|
|
"code.nonshy.com/nonshy/website/pkg/config"
|
|
|
|
"code.nonshy.com/nonshy/website/pkg/log"
|
2023-06-16 05:05:21 +00:00
|
|
|
"code.nonshy.com/nonshy/website/pkg/utility"
|
2022-08-10 05:10:47 +00:00
|
|
|
"golang.org/x/crypto/bcrypt"
|
2022-08-13 06:11:36 +00:00
|
|
|
"gorm.io/gorm"
|
2022-08-10 05:10:47 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// User account table.
|
|
|
|
type User struct {
|
2022-08-11 03:59:59 +00:00
|
|
|
ID uint64 `gorm:"primaryKey"`
|
2022-08-10 05:10:47 +00:00
|
|
|
Username string `gorm:"uniqueIndex"`
|
|
|
|
Email string `gorm:"uniqueIndex"`
|
|
|
|
HashedPassword string
|
2022-08-22 00:29:39 +00:00
|
|
|
IsAdmin bool `gorm:"index"`
|
|
|
|
Status UserStatus `gorm:"index"` // active, disabled
|
|
|
|
Visibility UserVisibility `gorm:"index"` // public, private
|
2022-08-10 05:10:47 +00:00
|
|
|
Name *string
|
2022-08-11 03:59:59 +00:00
|
|
|
Birthdate time.Time
|
2022-08-10 05:10:47 +00:00
|
|
|
Certified bool
|
2023-05-24 03:04:17 +00:00
|
|
|
Explicit bool `gorm:"index"` // user has opted-in to see explicit content
|
|
|
|
InnerCircle bool `gorm:"index"` // user is in the inner circle
|
2022-08-10 05:10:47 +00:00
|
|
|
CreatedAt time.Time `gorm:"index"`
|
|
|
|
UpdatedAt time.Time `gorm:"index"`
|
2022-08-11 03:59:59 +00:00
|
|
|
LastLoginAt time.Time `gorm:"index"`
|
|
|
|
|
|
|
|
// Relational tables.
|
2022-08-12 06:03:06 +00:00
|
|
|
ProfileField []ProfileField
|
2022-08-21 22:40:24 +00:00
|
|
|
ProfilePhotoID *uint64
|
2023-08-02 03:39:48 +00:00
|
|
|
ProfilePhoto Photo `gorm:"foreignKey:profile_photo_id"`
|
|
|
|
AdminGroups []*AdminGroup `gorm:"many2many:admin_group_users;"`
|
2022-09-09 04:42:20 +00:00
|
|
|
|
|
|
|
// Current user's relationship to this user -- not stored in DB.
|
|
|
|
UserRelationship UserRelationship `gorm:"-"`
|
2023-02-14 06:19:18 +00:00
|
|
|
|
|
|
|
// Caches
|
|
|
|
cachePhotoTypes map[PhotoVisibility]struct{}
|
2022-08-13 06:11:36 +00:00
|
|
|
}
|
|
|
|
|
2022-08-22 00:29:39 +00:00
|
|
|
type UserVisibility string
|
|
|
|
|
|
|
|
const (
|
2022-08-30 03:00:15 +00:00
|
|
|
UserVisibilityPublic UserVisibility = "public"
|
2023-05-25 01:40:27 +00:00
|
|
|
UserVisibilityExternal UserVisibility = "external"
|
|
|
|
UserVisibilityPrivate UserVisibility = "private"
|
2022-08-22 00:29:39 +00:00
|
|
|
)
|
|
|
|
|
2022-08-30 03:00:15 +00:00
|
|
|
// All visibility options.
|
|
|
|
var UserVisibilityOptions = []UserVisibility{
|
|
|
|
UserVisibilityPublic,
|
|
|
|
UserVisibilityExternal,
|
|
|
|
UserVisibilityPrivate,
|
|
|
|
}
|
|
|
|
|
2022-08-13 06:11:36 +00:00
|
|
|
// Preload related tables for the user (classmethod).
|
|
|
|
func (u *User) Preload() *gorm.DB {
|
2023-08-02 03:39:48 +00:00
|
|
|
return DB.Preload("ProfileField").Preload("ProfilePhoto").Preload("AdminGroups.Scopes")
|
2022-08-10 05:10:47 +00:00
|
|
|
}
|
|
|
|
|
2022-08-11 03:59:59 +00:00
|
|
|
// UserStatus options.
|
|
|
|
type UserStatus string
|
|
|
|
|
|
|
|
const (
|
|
|
|
UserStatusActive = "active"
|
|
|
|
UserStatusDisabled = "disabled"
|
2022-08-14 23:27:57 +00:00
|
|
|
UserStatusBanned = "banned"
|
2022-08-11 03:59:59 +00:00
|
|
|
)
|
|
|
|
|
2022-08-10 05:10:47 +00:00
|
|
|
// CreateUser. It is assumed username and email are correctly formatted.
|
|
|
|
func CreateUser(username, email, password string) (*User, error) {
|
|
|
|
// Verify username and email are unique.
|
|
|
|
if _, err := FindUser(username); err == nil {
|
|
|
|
return nil, errors.New("That username already exists. Please try a different username.")
|
|
|
|
} else if _, err := FindUser(email); err == nil {
|
|
|
|
return nil, errors.New("That email address is already registered.")
|
|
|
|
}
|
|
|
|
|
|
|
|
u := &User{
|
2022-08-22 00:29:39 +00:00
|
|
|
Username: username,
|
|
|
|
Email: email,
|
|
|
|
Status: UserStatusActive,
|
|
|
|
Visibility: UserVisibilityPublic,
|
2022-08-10 05:10:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if err := u.HashPassword(password); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
result := DB.Create(u)
|
|
|
|
return u, result.Error
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetUser by ID.
|
|
|
|
func GetUser(userId uint64) (*User, error) {
|
|
|
|
user := &User{}
|
2022-08-13 06:11:36 +00:00
|
|
|
result := user.Preload().First(&user, userId)
|
2022-08-10 05:10:47 +00:00
|
|
|
return user, result.Error
|
|
|
|
}
|
|
|
|
|
2022-08-14 05:44:57 +00:00
|
|
|
// GetUsers queries for multiple user IDs and returns users in the same order.
|
2022-09-09 04:42:20 +00:00
|
|
|
func GetUsers(currentUser *User, userIDs []uint64) ([]*User, error) {
|
|
|
|
userMap, err := MapUsers(currentUser, userIDs)
|
2022-08-14 05:44:57 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// Re-order them per the original sequence.
|
|
|
|
var users = []*User{}
|
|
|
|
for _, uid := range userIDs {
|
|
|
|
if user, ok := userMap[uid]; ok {
|
|
|
|
users = append(users, user)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return users, nil
|
|
|
|
}
|
|
|
|
|
2022-08-10 05:10:47 +00:00
|
|
|
// FindUser by username or email.
|
|
|
|
func FindUser(username string) (*User, error) {
|
2022-08-11 03:59:59 +00:00
|
|
|
if username == "" {
|
|
|
|
return nil, errors.New("username is required")
|
|
|
|
}
|
|
|
|
|
2022-08-10 05:10:47 +00:00
|
|
|
u := &User{}
|
|
|
|
if strings.ContainsRune(username, '@') {
|
2022-08-13 06:11:36 +00:00
|
|
|
result := u.Preload().Where("email = ?", username).Limit(1).First(u)
|
2022-08-10 05:10:47 +00:00
|
|
|
return u, result.Error
|
|
|
|
}
|
2022-08-13 06:11:36 +00:00
|
|
|
result := u.Preload().Where("username = ?", username).Limit(1).First(u)
|
2022-08-10 05:10:47 +00:00
|
|
|
return u, result.Error
|
|
|
|
}
|
|
|
|
|
2023-02-14 06:19:18 +00:00
|
|
|
// IsShy returns whether the user might have an "empty" profile from the perspective of anybody.
|
|
|
|
//
|
|
|
|
// An empty profile means their profile is Private or else ALL of their photos are non-public; so that
|
|
|
|
// somebody viewing their page might see nothing at all from them and consider them a "blank" profile.
|
|
|
|
func (u *User) IsShy() bool {
|
|
|
|
// Non-certified users are considered empty.
|
|
|
|
if !u.Certified {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
// Private profile automatically applies.
|
|
|
|
if u.Visibility == UserVisibilityPrivate {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
// If ALL of our photos are non-public, that counts too.
|
|
|
|
var photoTypes = u.DistinctPhotoTypes()
|
|
|
|
if _, ok := photoTypes[PhotoPublic]; !ok {
|
|
|
|
log.Info("IsEmptyProfile: true because visibilities %+v did not include public", photoTypes)
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
// IsShyFrom tells whether the user is shy from the perspective of the other user.
|
|
|
|
//
|
|
|
|
// That is, depending on our profile visibility and friendship status.
|
|
|
|
func (u *User) IsShyFrom(other *User) bool {
|
|
|
|
// If we are not a private profile, we're shy from nobody.
|
|
|
|
if u.Visibility != UserVisibilityPrivate {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
// Not shy from our friends.
|
|
|
|
if AreFriends(u.ID, other.ID) {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
// Our profile must be private & we are not friended, we are shy.
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
2022-08-14 05:44:57 +00:00
|
|
|
// UserSearch config.
|
|
|
|
type UserSearch struct {
|
2023-08-16 00:33:33 +00:00
|
|
|
Username string
|
|
|
|
Gender string
|
|
|
|
Orientation string
|
|
|
|
MaritalStatus string
|
2023-08-30 04:10:00 +00:00
|
|
|
HereFor string
|
2023-08-16 00:33:33 +00:00
|
|
|
Certified bool
|
|
|
|
InnerCircle bool
|
|
|
|
AgeMin int
|
|
|
|
AgeMax int
|
2022-08-14 05:44:57 +00:00
|
|
|
}
|
|
|
|
|
2022-08-15 00:45:55 +00:00
|
|
|
// SearchUsers from the perspective of a given user.
|
2022-09-09 04:42:20 +00:00
|
|
|
func SearchUsers(user *User, search *UserSearch, pager *Pagination) ([]*User, error) {
|
2022-08-14 05:44:57 +00:00
|
|
|
if search == nil {
|
|
|
|
search = &UserSearch{}
|
|
|
|
}
|
|
|
|
|
|
|
|
var (
|
2022-08-15 00:45:55 +00:00
|
|
|
users = []*User{}
|
|
|
|
query *gorm.DB
|
2023-08-20 02:11:33 +00:00
|
|
|
joins string // GPS location join.
|
2022-08-15 00:45:55 +00:00
|
|
|
wheres = []string{}
|
|
|
|
placeholders = []interface{}{}
|
2022-09-09 04:42:20 +00:00
|
|
|
blockedUserIDs = BlockedUserIDs(user.ID)
|
2023-08-20 02:11:33 +00:00
|
|
|
myLocation = GetUserLocation(user.ID)
|
2022-08-14 05:44:57 +00:00
|
|
|
)
|
|
|
|
|
2023-08-20 02:11:33 +00:00
|
|
|
// Sort by distance? Requires PostgreSQL.
|
|
|
|
if pager.Sort == "distance" {
|
|
|
|
if !config.Current.Database.IsPostgres {
|
|
|
|
return users, errors.New("ordering by distance requires PostgreSQL with the PostGIS extension")
|
|
|
|
}
|
|
|
|
|
|
|
|
// If the current user doesn't have their location on file, they can't do this.
|
|
|
|
if myLocation.Source == LocationSourceNone || (myLocation.Latitude == 0 && myLocation.Longitude == 0) {
|
|
|
|
return users, errors.New("can not order by distance because your location is not known")
|
|
|
|
}
|
|
|
|
|
|
|
|
// Only query for users who have locations.
|
|
|
|
joins = "JOIN user_locations ON (user_locations.user_id = users.id)"
|
|
|
|
wheres = append(wheres,
|
|
|
|
"user_locations.latitude IS NOT NULL",
|
|
|
|
"user_locations.longitude IS NOT NULL",
|
|
|
|
"user_locations.latitude <> 0",
|
|
|
|
"user_locations.longitude <> 0",
|
|
|
|
)
|
|
|
|
|
|
|
|
pager.Sort = fmt.Sprintf(`ST_Distance(
|
|
|
|
ST_MakePoint(user_locations.longitude, user_locations.latitude)::geography,
|
|
|
|
ST_MakePoint(%f, %f)::geography)`,
|
|
|
|
myLocation.Longitude, myLocation.Latitude,
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2022-08-15 00:45:55 +00:00
|
|
|
if len(blockedUserIDs) > 0 {
|
|
|
|
wheres = append(wheres, "id NOT IN ?")
|
|
|
|
placeholders = append(placeholders, blockedUserIDs)
|
|
|
|
}
|
|
|
|
|
2023-08-16 00:33:33 +00:00
|
|
|
if search.Username != "" {
|
|
|
|
ilike := "%" + strings.TrimSpace(strings.ToLower(search.Username)) + "%"
|
|
|
|
wheres = append(wheres, "username LIKE ?")
|
|
|
|
placeholders = append(placeholders, ilike)
|
2022-08-14 05:44:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if search.Gender != "" {
|
|
|
|
wheres = append(wheres, `
|
|
|
|
EXISTS (
|
|
|
|
SELECT 1 FROM profile_fields
|
|
|
|
WHERE user_id = users.id AND name = ? AND value = ?
|
|
|
|
)
|
|
|
|
`)
|
|
|
|
placeholders = append(placeholders, "gender", search.Gender)
|
|
|
|
}
|
|
|
|
|
|
|
|
if search.Orientation != "" {
|
|
|
|
wheres = append(wheres, `
|
|
|
|
EXISTS (
|
|
|
|
SELECT 1 FROM profile_fields
|
|
|
|
WHERE user_id = users.id AND name = ? AND value = ?
|
|
|
|
)
|
|
|
|
`)
|
|
|
|
placeholders = append(placeholders, "orientation", search.Orientation)
|
|
|
|
}
|
|
|
|
|
|
|
|
if search.MaritalStatus != "" {
|
|
|
|
wheres = append(wheres, `
|
|
|
|
EXISTS (
|
|
|
|
SELECT 1 FROM profile_fields
|
|
|
|
WHERE user_id = users.id AND name = ? AND value = ?
|
|
|
|
)
|
|
|
|
`)
|
|
|
|
placeholders = append(placeholders, "marital_status", search.MaritalStatus)
|
|
|
|
}
|
|
|
|
|
2023-08-30 04:10:00 +00:00
|
|
|
if search.HereFor != "" {
|
|
|
|
wheres = append(wheres, `
|
|
|
|
EXISTS (
|
|
|
|
SELECT 1 FROM profile_fields
|
2023-08-30 04:14:06 +00:00
|
|
|
WHERE user_id = users.id AND name = ? AND value LIKE ?
|
2023-08-30 04:10:00 +00:00
|
|
|
)
|
|
|
|
`)
|
2023-08-30 04:14:06 +00:00
|
|
|
placeholders = append(placeholders, "here_for", "%"+search.HereFor+"%")
|
2023-08-30 04:10:00 +00:00
|
|
|
}
|
|
|
|
|
2022-08-14 05:44:57 +00:00
|
|
|
if search.Certified {
|
2023-03-10 00:57:38 +00:00
|
|
|
wheres = append(wheres, "certified = ?", "status = ?")
|
|
|
|
placeholders = append(placeholders, search.Certified, UserStatusActive)
|
2022-08-14 05:44:57 +00:00
|
|
|
}
|
|
|
|
|
2023-05-24 03:04:17 +00:00
|
|
|
if search.InnerCircle {
|
|
|
|
wheres = append(wheres, "inner_circle = ? OR is_admin = ?")
|
|
|
|
placeholders = append(placeholders, true, true)
|
|
|
|
}
|
|
|
|
|
2022-08-14 21:40:57 +00:00
|
|
|
if search.AgeMin > 0 {
|
|
|
|
date := time.Now().AddDate(-search.AgeMin, 0, 0)
|
|
|
|
wheres = append(wheres, "birthdate <= ?")
|
|
|
|
placeholders = append(placeholders, date)
|
|
|
|
}
|
|
|
|
|
|
|
|
if search.AgeMax > 0 {
|
|
|
|
date := time.Now().AddDate(-search.AgeMax-1, 0, 0)
|
|
|
|
wheres = append(wheres, "birthdate >= ?")
|
|
|
|
placeholders = append(placeholders, date)
|
|
|
|
}
|
|
|
|
|
2023-08-20 02:11:33 +00:00
|
|
|
query = (&User{}).Preload()
|
|
|
|
if joins != "" {
|
|
|
|
query = query.Joins(joins)
|
|
|
|
}
|
|
|
|
query = query.Where(
|
2022-08-14 05:44:57 +00:00
|
|
|
strings.Join(wheres, " AND "),
|
|
|
|
placeholders...,
|
2022-08-14 21:40:57 +00:00
|
|
|
).Order(pager.Sort)
|
2022-08-14 05:44:57 +00:00
|
|
|
query.Model(&User{}).Count(&pager.Total)
|
|
|
|
result := query.Offset(pager.GetOffset()).Limit(pager.PerPage).Find(&users)
|
2022-09-09 04:42:20 +00:00
|
|
|
|
|
|
|
// Inject relationship booleans.
|
|
|
|
SetUserRelationships(user, users)
|
|
|
|
|
2022-08-14 05:44:57 +00:00
|
|
|
return users, result.Error
|
|
|
|
}
|
|
|
|
|
2022-08-13 22:39:31 +00:00
|
|
|
// UserMap helps map a set of users to look up by ID.
|
|
|
|
type UserMap map[uint64]*User
|
|
|
|
|
|
|
|
// MapUsers looks up a set of user IDs in bulk and returns a UserMap suitable for templates.
|
|
|
|
// Useful to avoid circular reference issues with Photos especially; the Site Gallery queries
|
|
|
|
// photos of ALL users and MapUsers helps stitch them together for the frontend.
|
2022-09-09 04:42:20 +00:00
|
|
|
func MapUsers(user *User, userIDs []uint64) (UserMap, error) {
|
2022-08-14 00:42:42 +00:00
|
|
|
var (
|
|
|
|
usermap = UserMap{}
|
|
|
|
set = map[uint64]interface{}{}
|
|
|
|
distinct = []uint64{}
|
|
|
|
)
|
|
|
|
|
|
|
|
// Uniqueify users.
|
|
|
|
for _, uid := range userIDs {
|
|
|
|
if _, ok := set[uid]; ok {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
set[uid] = nil
|
|
|
|
distinct = append(distinct, uid)
|
|
|
|
}
|
2022-08-13 22:39:31 +00:00
|
|
|
|
|
|
|
var (
|
|
|
|
users = []*User{}
|
2022-08-14 00:42:42 +00:00
|
|
|
result = (&User{}).Preload().Where("id IN ?", distinct).Find(&users)
|
2022-08-13 22:39:31 +00:00
|
|
|
)
|
|
|
|
|
2022-09-09 04:42:20 +00:00
|
|
|
// Inject user relationships.
|
|
|
|
if user != nil {
|
|
|
|
SetUserRelationships(user, users)
|
|
|
|
}
|
|
|
|
|
2022-08-13 22:39:31 +00:00
|
|
|
if result.Error == nil {
|
|
|
|
for _, row := range users {
|
|
|
|
usermap[row.ID] = row
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return usermap, result.Error
|
|
|
|
}
|
|
|
|
|
|
|
|
// Has a user ID in the map?
|
|
|
|
func (um UserMap) Has(id uint64) bool {
|
|
|
|
_, ok := um[id]
|
|
|
|
return ok
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get a user from the UserMap.
|
|
|
|
func (um UserMap) Get(id uint64) *User {
|
|
|
|
if user, ok := um[id]; ok {
|
|
|
|
return user
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2023-08-02 03:39:48 +00:00
|
|
|
// MapUsersByUsername looks up a set of users in bulk and returns a UsernameMap suitable for templates.
|
|
|
|
//
|
|
|
|
// It is like MapUsers but by username instead of ID.
|
|
|
|
func MapUsersByUsername(usernames []string) (UsernameMap, error) {
|
|
|
|
var (
|
|
|
|
usermap = UsernameMap{}
|
|
|
|
set = map[string]interface{}{}
|
|
|
|
distinct = []string{}
|
|
|
|
)
|
|
|
|
|
|
|
|
// Uniqueify users.
|
|
|
|
for _, uid := range usernames {
|
|
|
|
if _, ok := set[uid]; ok {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
set[uid] = nil
|
|
|
|
distinct = append(distinct, uid)
|
|
|
|
}
|
|
|
|
|
|
|
|
var (
|
|
|
|
users = []*User{}
|
|
|
|
result = (&User{}).Preload().Where("username IN ?", distinct).Find(&users)
|
|
|
|
)
|
|
|
|
|
|
|
|
if result.Error == nil {
|
|
|
|
for _, row := range users {
|
|
|
|
usermap[row.Username] = row
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Assert we got the expected count.
|
|
|
|
if len(usermap) != len(distinct) {
|
|
|
|
return usermap, fmt.Errorf("didn't get all expected users (expected %d, got %d)", len(distinct), len(usermap))
|
|
|
|
}
|
|
|
|
|
|
|
|
return usermap, result.Error
|
|
|
|
}
|
|
|
|
|
|
|
|
// UsernameMap helps map a set of users to look up by ID.
|
|
|
|
type UsernameMap map[string]*User
|
|
|
|
|
2022-08-16 05:33:17 +00:00
|
|
|
// NameOrUsername returns the name (if not null or empty) or the username.
|
|
|
|
func (u *User) NameOrUsername() string {
|
|
|
|
if u.Name != nil && len(*u.Name) > 0 {
|
|
|
|
return *u.Name
|
|
|
|
} else {
|
|
|
|
return u.Username
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-08-10 05:10:47 +00:00
|
|
|
// HashPassword sets the user's hashed (bcrypt) password.
|
|
|
|
func (u *User) HashPassword(password string) error {
|
|
|
|
passwd, err := bcrypt.GenerateFromPassword([]byte(password), config.BcryptCost)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
u.HashedPassword = string(passwd)
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// CheckPassword verifies the password is correct. Returns nil on success.
|
|
|
|
func (u *User) CheckPassword(password string) error {
|
|
|
|
return bcrypt.CompareHashAndPassword([]byte(u.HashedPassword), []byte(password))
|
|
|
|
}
|
|
|
|
|
2022-08-11 03:59:59 +00:00
|
|
|
// SetProfileField sets or creates a named profile field.
|
|
|
|
func (u *User) SetProfileField(name, value string) {
|
|
|
|
// Check if it exists.
|
|
|
|
log.Debug("User(%s).SetProfileField(%s, %s)", u.Username, name, value)
|
|
|
|
var exists bool
|
|
|
|
for _, field := range u.ProfileField {
|
|
|
|
log.Debug("\tCheck existing field %s", field.Name)
|
|
|
|
if field.Name == name {
|
|
|
|
log.Debug("\tFound existing field!")
|
|
|
|
changed := field.Value != value
|
|
|
|
field.Value = value
|
|
|
|
exists = true
|
|
|
|
|
|
|
|
// Save it now. TODO: otherwise gorm doesn't know we changed
|
|
|
|
// it and it won't be inserted when the User is saved. But
|
|
|
|
// this is probably not performant to do!
|
|
|
|
if changed {
|
|
|
|
DB.Save(&field)
|
|
|
|
}
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if exists {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2023-06-24 05:18:09 +00:00
|
|
|
log.Debug("User(%s): append ProfileField %s", u.Username, name)
|
2022-08-11 03:59:59 +00:00
|
|
|
u.ProfileField = append(u.ProfileField, ProfileField{
|
|
|
|
Name: name,
|
|
|
|
Value: value,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetProfileField returns the value of a profile field or blank string.
|
|
|
|
func (u *User) GetProfileField(name string) string {
|
|
|
|
for _, field := range u.ProfileField {
|
|
|
|
if field.Name == name {
|
|
|
|
return field.Value
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
2023-06-16 05:05:21 +00:00
|
|
|
// GetDisplayAge returns the user's age dependent on their hide-my-age setting.
|
|
|
|
func (u *User) GetDisplayAge() string {
|
|
|
|
if !u.Birthdate.IsZero() && u.GetProfileField("hide_age") != "true" {
|
|
|
|
return fmt.Sprintf("%dyo", utility.Age(u.Birthdate))
|
|
|
|
}
|
|
|
|
|
|
|
|
return "n/a"
|
|
|
|
}
|
|
|
|
|
2022-08-11 03:59:59 +00:00
|
|
|
// ProfileFieldIn checks if a substring is IN a profile field. Currently
|
|
|
|
// does a naive strings.Contains(), intended for the "here_for" field.
|
|
|
|
func (u *User) ProfileFieldIn(field, substr string) bool {
|
|
|
|
value := u.GetProfileField(field)
|
|
|
|
return strings.Contains(value, substr)
|
|
|
|
}
|
|
|
|
|
2022-08-21 22:40:24 +00:00
|
|
|
// RemoveProfilePhoto sets profile_photo_id=null to unset the foreign key.
|
|
|
|
func (u *User) RemoveProfilePhoto() error {
|
|
|
|
result := DB.Model(&User{}).Where("id = ?", u.ID).Update("profile_photo_id", nil)
|
|
|
|
return result.Error
|
|
|
|
}
|
|
|
|
|
2022-08-10 05:10:47 +00:00
|
|
|
// Save user.
|
|
|
|
func (u *User) Save() error {
|
|
|
|
result := DB.Save(u)
|
|
|
|
return result.Error
|
|
|
|
}
|
2022-08-13 06:11:36 +00:00
|
|
|
|
2022-08-14 21:40:57 +00:00
|
|
|
// Delete a user. NOTE: use the models/deletion/DeleteUser() function
|
|
|
|
// instead of this to do a deep scrub of all related data!
|
|
|
|
func (u *User) Delete() error {
|
|
|
|
return DB.Delete(u).Error
|
|
|
|
}
|
|
|
|
|
2022-08-13 06:11:36 +00:00
|
|
|
// Print user object as pretty JSON.
|
|
|
|
func (u *User) Print() string {
|
|
|
|
var (
|
|
|
|
buf bytes.Buffer
|
|
|
|
enc = json.NewEncoder(&buf)
|
|
|
|
)
|
|
|
|
enc.SetIndent("", " ")
|
|
|
|
enc.Encode(u)
|
|
|
|
return buf.String()
|
|
|
|
}
|