2022-08-15 00:45:55 +00:00
|
|
|
package models
|
|
|
|
|
|
|
|
import (
|
|
|
|
"time"
|
|
|
|
|
2023-07-30 17:33:04 +00:00
|
|
|
"code.nonshy.com/nonshy/website/pkg/log"
|
2022-08-15 00:45:55 +00:00
|
|
|
"gorm.io/gorm"
|
|
|
|
)
|
|
|
|
|
|
|
|
// Block table.
|
|
|
|
type Block struct {
|
|
|
|
ID uint64 `gorm:"primaryKey"`
|
|
|
|
SourceUserID uint64 `gorm:"index"`
|
|
|
|
TargetUserID uint64 `gorm:"index"`
|
|
|
|
CreatedAt time.Time
|
|
|
|
UpdatedAt time.Time
|
|
|
|
}
|
|
|
|
|
|
|
|
// AddBlock is sourceUserId adding targetUserId to their block list.
|
|
|
|
func AddBlock(sourceUserID, targetUserID uint64) error {
|
|
|
|
// Unfriend in the process.
|
|
|
|
RemoveFriend(sourceUserID, targetUserID)
|
|
|
|
|
|
|
|
// Did we already block this user?
|
|
|
|
var b *Block
|
|
|
|
forward := DB.Where(
|
|
|
|
"source_user_id = ? AND target_user_id = ?",
|
|
|
|
sourceUserID, targetUserID,
|
|
|
|
).First(&b).Error
|
|
|
|
|
|
|
|
// Update existing.
|
|
|
|
if forward == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Create the block.
|
|
|
|
b = &Block{
|
|
|
|
SourceUserID: sourceUserID,
|
|
|
|
TargetUserID: targetUserID,
|
|
|
|
}
|
|
|
|
return DB.Create(b).Error
|
|
|
|
}
|
|
|
|
|
|
|
|
// IsBlocking quickly sees if either user blocks the other.
|
|
|
|
func IsBlocking(sourceUserID, targetUserID uint64) bool {
|
|
|
|
b := &Block{}
|
|
|
|
result := DB.Where(
|
|
|
|
"(source_user_id = ? AND target_user_id = ?) OR "+
|
|
|
|
"(target_user_id = ? AND source_user_id = ?)",
|
|
|
|
sourceUserID, targetUserID,
|
|
|
|
sourceUserID, targetUserID,
|
|
|
|
).First(&b)
|
|
|
|
return result.Error == nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// IsBlocked quickly checks if sourceUserID currently blocks targetUserID.
|
|
|
|
func IsBlocked(sourceUserID, targetUserID uint64) bool {
|
|
|
|
b := &Block{}
|
|
|
|
result := DB.Where(
|
|
|
|
"source_user_id = ? AND target_user_id = ?",
|
|
|
|
sourceUserID, targetUserID,
|
|
|
|
).First(&b)
|
|
|
|
return result.Error == nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// PaginateBlockList views a user's blocklist.
|
2022-09-09 04:42:20 +00:00
|
|
|
func PaginateBlockList(user *User, pager *Pagination) ([]*User, error) {
|
2022-08-15 00:45:55 +00:00
|
|
|
// We paginate over the Block table.
|
|
|
|
var (
|
|
|
|
bs = []*Block{}
|
|
|
|
userIDs = []uint64{}
|
|
|
|
query *gorm.DB
|
|
|
|
)
|
|
|
|
|
|
|
|
query = DB.Where(
|
|
|
|
"source_user_id = ?",
|
2022-09-09 04:42:20 +00:00
|
|
|
user.ID,
|
2022-08-15 00:45:55 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
query = query.Order(pager.Sort)
|
|
|
|
query.Model(&Block{}).Count(&pager.Total)
|
|
|
|
result := query.Offset(pager.GetOffset()).Limit(pager.PerPage).Find(&bs)
|
|
|
|
if result.Error != nil {
|
|
|
|
return nil, result.Error
|
|
|
|
}
|
|
|
|
|
|
|
|
// Now of these friends get their User objects.
|
|
|
|
for _, b := range bs {
|
|
|
|
userIDs = append(userIDs, b.TargetUserID)
|
|
|
|
}
|
|
|
|
|
2022-09-09 04:42:20 +00:00
|
|
|
return GetUsers(user, userIDs)
|
2022-08-15 00:45:55 +00:00
|
|
|
}
|
|
|
|
|
2023-07-30 17:33:04 +00:00
|
|
|
// BlockedUserIDs returns all user IDs blocked by the user (bidirectional, source or target user).
|
2023-10-22 22:02:24 +00:00
|
|
|
func BlockedUserIDs(user *User) []uint64 {
|
|
|
|
// Have we looked this up already on this request?
|
|
|
|
if user.cacheBlockedUserIDs != nil {
|
|
|
|
return user.cacheBlockedUserIDs
|
|
|
|
}
|
|
|
|
|
2022-08-15 00:45:55 +00:00
|
|
|
var (
|
|
|
|
bs = []*Block{}
|
|
|
|
userIDs = []uint64{}
|
|
|
|
)
|
2023-10-22 22:02:24 +00:00
|
|
|
DB.Where("source_user_id = ? OR target_user_id = ?", user.ID, user.ID).Find(&bs)
|
2022-08-15 00:45:55 +00:00
|
|
|
for _, row := range bs {
|
|
|
|
for _, uid := range []uint64{row.TargetUserID, row.SourceUserID} {
|
2023-10-22 22:02:24 +00:00
|
|
|
if uid != user.ID {
|
2022-08-15 00:45:55 +00:00
|
|
|
userIDs = append(userIDs, uid)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2023-10-22 22:02:24 +00:00
|
|
|
|
|
|
|
// Cache the result in the User so we don't query it again.
|
|
|
|
user.cacheBlockedUserIDs = userIDs
|
|
|
|
|
2022-08-15 00:45:55 +00:00
|
|
|
return userIDs
|
|
|
|
}
|
|
|
|
|
2023-09-17 06:07:32 +00:00
|
|
|
// MapBlockedUserIDs returns BlockedUserIDs as a lookup hashmap (not for front-end templates currently).
|
2023-10-22 22:02:24 +00:00
|
|
|
func MapBlockedUserIDs(user *User) map[uint64]interface{} {
|
2023-09-17 06:07:32 +00:00
|
|
|
var (
|
|
|
|
result = map[uint64]interface{}{}
|
2023-10-22 22:02:24 +00:00
|
|
|
blockedIDs = BlockedUserIDs(user)
|
2023-09-17 06:07:32 +00:00
|
|
|
)
|
|
|
|
for _, uid := range blockedIDs {
|
|
|
|
result[uid] = nil
|
|
|
|
}
|
|
|
|
return result
|
|
|
|
}
|
|
|
|
|
|
|
|
// FilterBlockingUserIDs narrows down a set of User IDs to remove ones that block (or are blocked by) the current user.
|
|
|
|
func FilterBlockingUserIDs(currentUser *User, userIDs []uint64) []uint64 {
|
|
|
|
var (
|
|
|
|
// Get the IDs to exclude.
|
2023-10-22 22:02:24 +00:00
|
|
|
blockedIDs = MapBlockedUserIDs(currentUser)
|
2023-09-17 06:07:32 +00:00
|
|
|
|
|
|
|
// Filter the result.
|
|
|
|
result = []uint64{}
|
|
|
|
)
|
|
|
|
for _, uid := range userIDs {
|
|
|
|
if _, ok := blockedIDs[uid]; ok {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
result = append(result, uid)
|
|
|
|
}
|
|
|
|
return result
|
|
|
|
}
|
|
|
|
|
2023-07-30 17:33:04 +00:00
|
|
|
// BlockedUserIDsByUser returns all user IDs blocked by the user (one directional only)
|
|
|
|
func BlockedUserIDsByUser(userId uint64) []uint64 {
|
|
|
|
var (
|
|
|
|
bs = []*Block{}
|
|
|
|
userIDs = []uint64{}
|
|
|
|
)
|
|
|
|
DB.Where("source_user_id = ?", userId).Find(&bs)
|
|
|
|
for _, row := range bs {
|
|
|
|
for _, uid := range []uint64{row.TargetUserID, row.SourceUserID} {
|
|
|
|
if uid != userId {
|
|
|
|
userIDs = append(userIDs, uid)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return userIDs
|
|
|
|
}
|
|
|
|
|
2023-09-04 20:36:20 +00:00
|
|
|
// BlockedUsernames returns all usernames blocked by (or blocking) the user.
|
2023-10-22 22:02:24 +00:00
|
|
|
func BlockedUsernames(user *User) []string {
|
2023-07-30 17:33:04 +00:00
|
|
|
var (
|
2023-10-22 22:02:24 +00:00
|
|
|
userIDs = BlockedUserIDs(user)
|
2023-07-30 17:33:04 +00:00
|
|
|
usernames = []string{}
|
|
|
|
)
|
|
|
|
|
|
|
|
if len(userIDs) == 0 {
|
|
|
|
return usernames
|
|
|
|
}
|
|
|
|
|
|
|
|
if res := DB.Table(
|
|
|
|
"users",
|
|
|
|
).Select(
|
|
|
|
"username",
|
|
|
|
).Where(
|
|
|
|
"id IN ?", userIDs,
|
|
|
|
).Scan(&usernames); res.Error != nil {
|
2023-10-22 22:02:24 +00:00
|
|
|
log.Error("BlockedUsernames(%d): %s", user.Username, res.Error)
|
2023-07-30 17:33:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return usernames
|
|
|
|
}
|
|
|
|
|
2022-08-15 00:45:55 +00:00
|
|
|
// UnblockUser removes targetUserID from your blocklist.
|
|
|
|
func UnblockUser(sourceUserID, targetUserID uint64) error {
|
|
|
|
result := DB.Where(
|
|
|
|
"source_user_id = ? AND target_user_id = ?",
|
|
|
|
sourceUserID, targetUserID,
|
|
|
|
).Delete(&Block{})
|
|
|
|
return result.Error
|
|
|
|
}
|
|
|
|
|
|
|
|
// Save photo.
|
|
|
|
func (b *Block) Save() error {
|
|
|
|
result := DB.Save(b)
|
|
|
|
return result.Error
|
|
|
|
}
|