Compare commits
7 Commits
Author | SHA1 | Date | |
---|---|---|---|
4c00c4af90 | |||
ea9b115237 | |||
7775a28161 | |||
c3ca361506 | |||
63f8902674 | |||
b547b40410 | |||
251611c5a0 |
@ -230,8 +230,8 @@ func GetAllUsers(ctx context.Context, db *gorm.DB) ([]models.User, error) {
|
|||||||
return users, nil
|
return users, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// TODO: FIX THE TEST
|
||||||
func GetUserFavoriteWithPagination(ctx context.Context, db *gorm.DB, anthroveUserID models.AnthroveUserID, skip int, limit int) (*models.FavoriteList, error) {
|
func GetUserFavoriteWithPagination(ctx context.Context, db *gorm.DB, anthroveUserID models.AnthroveUserID, skip int, limit int) (*models.FavoriteList, error) {
|
||||||
var userFavorites []models.UserFavorites
|
|
||||||
var favoritePosts []models.Post
|
var favoritePosts []models.Post
|
||||||
|
|
||||||
if anthroveUserID == "" {
|
if anthroveUserID == "" {
|
||||||
@ -242,30 +242,7 @@ func GetUserFavoriteWithPagination(ctx context.Context, db *gorm.DB, anthroveUse
|
|||||||
return nil, &otterError.EntityValidationFailed{Reason: otterError.AnthroveUserIDToShort}
|
return nil, &otterError.EntityValidationFailed{Reason: otterError.AnthroveUserIDToShort}
|
||||||
}
|
}
|
||||||
|
|
||||||
err := db.WithContext(ctx).Model(&models.UserFavorites{}).Where("user_id = ?", string(anthroveUserID)).Offset(skip).Limit(limit).Find(&userFavorites).Error
|
db.WithContext(ctx).Joins("RIGHT JOIN \"UserFavorites\" AS of ON \"Post\".id = of.post_id AND of.user_id = ?", anthroveUserID).Preload("References").Offset(skip).Limit(limit).Find(&favoritePosts)
|
||||||
if err != nil {
|
|
||||||
if errors.Is(err, gorm.ErrRecordNotFound) {
|
|
||||||
return nil, &otterError.NoDataFound{}
|
|
||||||
}
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
|
|
||||||
for _, userFavorite := range userFavorites {
|
|
||||||
var post models.Post
|
|
||||||
err = db.WithContext(ctx).Model(&models.Post{}).Where("id = ?", userFavorite.PostID).First(&post).Error
|
|
||||||
if err != nil {
|
|
||||||
if errors.Is(err, gorm.ErrRecordNotFound) {
|
|
||||||
return nil, &otterError.NoDataFound{}
|
|
||||||
}
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
|
|
||||||
favoritePosts = append(favoritePosts,
|
|
||||||
models.Post{
|
|
||||||
BaseModel: models.BaseModel[models.AnthrovePostID]{ID: post.ID},
|
|
||||||
Rating: post.Rating,
|
|
||||||
})
|
|
||||||
}
|
|
||||||
|
|
||||||
log.WithFields(log.Fields{
|
log.WithFields(log.Fields{
|
||||||
"anthrove_user_id": anthroveUserID,
|
"anthrove_user_id": anthroveUserID,
|
||||||
|
@ -573,13 +573,30 @@ func TestGetUserFavoriteNodeWithPagination(t *testing.T) {
|
|||||||
t.Errorf("GetAllUserFavoritesWithPagination() error = %v, wantErr %v", err, tt.wantErr)
|
t.Errorf("GetAllUserFavoritesWithPagination() error = %v, wantErr %v", err, tt.wantErr)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
if !reflect.DeepEqual(got, tt.want) {
|
if !checkFavoritePosts(got, tt.want) {
|
||||||
t.Errorf("GetAllUserFavoritesWithPagination() got = %v, want %v", got, tt.want)
|
t.Errorf("GetAllUserFavoritesWithPagination() got = %v, want %v", got, tt.want)
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func checkFavoritePosts(got *models.FavoriteList, want *models.FavoriteList) bool {
|
||||||
|
if got == nil && want == nil {
|
||||||
|
return true
|
||||||
|
} else if got == nil || want == nil {
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
|
||||||
|
for i, post := range got.Posts {
|
||||||
|
if post.ID == want.Posts[i].ID {
|
||||||
|
} else {
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return true
|
||||||
|
}
|
||||||
|
|
||||||
func TestGetUserFavoritesCount(t *testing.T) {
|
func TestGetUserFavoritesCount(t *testing.T) {
|
||||||
// Setup trow away container
|
// Setup trow away container
|
||||||
ctx := context.Background()
|
ctx := context.Background()
|
||||||
|
@ -1556,7 +1556,7 @@ func Test_postgresqlConnection_GetUserFavoriteWithPagination(t *testing.T) {
|
|||||||
t.Errorf("GetAllUserFavoritesWithPagination() error = %v, wantErr %v", err, tt.wantErr)
|
t.Errorf("GetAllUserFavoritesWithPagination() error = %v, wantErr %v", err, tt.wantErr)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
if !reflect.DeepEqual(got, tt.want) {
|
if !checkFavoritePosts(got, tt.want) {
|
||||||
t.Errorf("GetAllUserFavoritesWithPagination() got = %v, want %v", got, tt.want)
|
t.Errorf("GetAllUserFavoritesWithPagination() got = %v, want %v", got, tt.want)
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
@ -3654,3 +3654,20 @@ func Test_postgresqlConnection_CreatePostInBatch(t *testing.T) {
|
|||||||
})
|
})
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func checkFavoritePosts(got *models.FavoriteList, want *models.FavoriteList) bool {
|
||||||
|
if got == nil && want == nil {
|
||||||
|
return true
|
||||||
|
} else if got == nil || want == nil {
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
|
||||||
|
for i, post := range got.Posts {
|
||||||
|
if post.ID == want.Posts[i].ID {
|
||||||
|
} else {
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return true
|
||||||
|
}
|
||||||
|
@ -1,9 +1,10 @@
|
|||||||
package models
|
package models
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"time"
|
||||||
|
|
||||||
gonanoid "github.com/matoous/go-nanoid/v2"
|
gonanoid "github.com/matoous/go-nanoid/v2"
|
||||||
"gorm.io/gorm"
|
"gorm.io/gorm"
|
||||||
"time"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
type ID interface {
|
type ID interface {
|
||||||
@ -11,10 +12,10 @@ type ID interface {
|
|||||||
}
|
}
|
||||||
|
|
||||||
type BaseModel[T ID] struct {
|
type BaseModel[T ID] struct {
|
||||||
ID T `gorm:"primaryKey"`
|
ID T `json:"id" gorm:"primaryKey"`
|
||||||
CreatedAt time.Time
|
CreatedAt time.Time `json:"-"`
|
||||||
UpdatedAt time.Time
|
UpdatedAt time.Time `json:"-"`
|
||||||
DeletedAt gorm.DeletedAt `gorm:"index"`
|
DeletedAt gorm.DeletedAt `json:"-" gorm:"index"`
|
||||||
}
|
}
|
||||||
|
|
||||||
func (base *BaseModel[T]) BeforeCreate(db *gorm.DB) error {
|
func (base *BaseModel[T]) BeforeCreate(db *gorm.DB) error {
|
||||||
|
@ -3,10 +3,10 @@ package models
|
|||||||
// Post model
|
// Post model
|
||||||
type Post struct {
|
type Post struct {
|
||||||
BaseModel[AnthrovePostID]
|
BaseModel[AnthrovePostID]
|
||||||
Rating Rating `gorm:"type:enum('safe','questionable','explicit')"`
|
Rating Rating `json:"rating" gorm:"type:enum('safe','questionable','explicit')"`
|
||||||
Tags []Tag `gorm:"many2many:post_tags;"`
|
Tags []Tag `json:"-" gorm:"many2many:post_tags;"`
|
||||||
Favorites []UserFavorites `gorm:"foreignKey:PostID"`
|
Favorites []UserFavorites `json:"-" gorm:"foreignKey:PostID"`
|
||||||
References []PostReference `gorm:"foreignKey:PostID"`
|
References []PostReference `json:"references" gorm:"foreignKey:PostID"`
|
||||||
}
|
}
|
||||||
|
|
||||||
func (Post) TableName() string {
|
func (Post) TableName() string {
|
||||||
|
@ -1,17 +1,17 @@
|
|||||||
package models
|
package models
|
||||||
|
|
||||||
type PostReference struct {
|
type PostReference struct {
|
||||||
PostID string `gorm:"primaryKey"`
|
PostID string `json:"post_id" gorm:"primaryKey"`
|
||||||
SourceID string `gorm:"primaryKey"`
|
SourceID string `json:"source_id" gorm:"primaryKey"`
|
||||||
URL string `gorm:"primaryKey"`
|
URL string `json:"url" gorm:"primaryKey"`
|
||||||
PostReferenceConfig
|
PostReferenceConfig
|
||||||
}
|
}
|
||||||
|
|
||||||
type PostReferenceConfig struct {
|
type PostReferenceConfig struct {
|
||||||
SourcePostID string
|
SourcePostID string `json:"source_post_id"`
|
||||||
FullFileURL string
|
FullFileURL string `json:"full_file_url"`
|
||||||
PreviewFileURL string
|
PreviewFileURL string `json:"preview_file_url"`
|
||||||
SampleFileURL string
|
SampleFileURL string `json:"sample_file_url"`
|
||||||
}
|
}
|
||||||
|
|
||||||
func (PostReference) TableName() string {
|
func (PostReference) TableName() string {
|
||||||
|
@ -3,11 +3,11 @@ package models
|
|||||||
// Source model
|
// Source model
|
||||||
type Source struct {
|
type Source struct {
|
||||||
BaseModel[AnthroveSourceID]
|
BaseModel[AnthroveSourceID]
|
||||||
DisplayName string
|
DisplayName string `json:"display_name" `
|
||||||
Domain string `gorm:"not null;unique"`
|
Domain string `json:"domain" gorm:"not null;unique"`
|
||||||
Icon string `gorm:"not null"`
|
Icon string `json:"icon" gorm:"not null"`
|
||||||
UserSources []UserSource `gorm:"foreignKey:SourceID"`
|
UserSources []UserSource `json:"-" gorm:"foreignKey:SourceID"`
|
||||||
References []PostReference `gorm:"foreignKey:SourceID"`
|
References []PostReference `json:"references" gorm:"foreignKey:SourceID"`
|
||||||
}
|
}
|
||||||
|
|
||||||
func (Source) TableName() string {
|
func (Source) TableName() string {
|
||||||
|
@ -2,11 +2,11 @@ package models
|
|||||||
|
|
||||||
// Tag models
|
// Tag models
|
||||||
type Tag struct {
|
type Tag struct {
|
||||||
Name string `gorm:"primaryKey"`
|
Name string `json:"name" gorm:"primaryKey"`
|
||||||
Type TagType `gorm:"column:tag_type"`
|
Type TagType `json:"type" gorm:"column:tag_type"`
|
||||||
Aliases []TagAlias `gorm:"foreignKey:TagID"`
|
Aliases []TagAlias `json:"aliases" gorm:"foreignKey:TagID"`
|
||||||
Groups []TagGroup `gorm:"foreignKey:TagID"`
|
Groups []TagGroup `json:"groups" gorm:"foreignKey:TagID"`
|
||||||
Posts []Post `gorm:"many2many:post_tags;"`
|
Posts []Post `json:"posts" gorm:"many2many:post_tags;"`
|
||||||
}
|
}
|
||||||
|
|
||||||
func (Tag) TableName() string {
|
func (Tag) TableName() string {
|
||||||
@ -15,8 +15,8 @@ func (Tag) TableName() string {
|
|||||||
|
|
||||||
// TagAlias model
|
// TagAlias model
|
||||||
type TagAlias struct {
|
type TagAlias struct {
|
||||||
Name string `gorm:"primaryKey"`
|
Name string `json:"name" gorm:"primaryKey"`
|
||||||
TagID string
|
TagID string `json:"tag_id"`
|
||||||
}
|
}
|
||||||
|
|
||||||
func (TagAlias) TableName() string {
|
func (TagAlias) TableName() string {
|
||||||
@ -25,8 +25,8 @@ func (TagAlias) TableName() string {
|
|||||||
|
|
||||||
// TagGroup model
|
// TagGroup model
|
||||||
type TagGroup struct {
|
type TagGroup struct {
|
||||||
Name string `gorm:"primaryKey"`
|
Name string `json:"name" gorm:"primaryKey"`
|
||||||
TagID string
|
TagID string `json:"tag_id"`
|
||||||
}
|
}
|
||||||
|
|
||||||
func (TagGroup) TableName() string {
|
func (TagGroup) TableName() string {
|
||||||
|
@ -3,8 +3,8 @@ package models
|
|||||||
// User model
|
// User model
|
||||||
type User struct {
|
type User struct {
|
||||||
BaseModel[AnthroveUserID]
|
BaseModel[AnthroveUserID]
|
||||||
Favorites []UserFavorites `gorm:"foreignKey:UserID"`
|
Favorites []UserFavorites `json:"-" gorm:"foreignKey:UserID"`
|
||||||
Sources []UserSource `gorm:"foreignKey:UserID"`
|
Sources []UserSource `json:"-" gorm:"foreignKey:UserID"`
|
||||||
}
|
}
|
||||||
|
|
||||||
func (User) TableName() string {
|
func (User) TableName() string {
|
||||||
|
@ -3,9 +3,9 @@ package models
|
|||||||
import "time"
|
import "time"
|
||||||
|
|
||||||
type UserFavorites struct {
|
type UserFavorites struct {
|
||||||
UserID string `gorm:"primaryKey"`
|
UserID string `json:"user_id" gorm:"primaryKey"`
|
||||||
PostID string `gorm:"primaryKey"`
|
PostID string `json:"post_id" gorm:"primaryKey"`
|
||||||
CreatedAt time.Time
|
CreatedAt time.Time `json:"-"`
|
||||||
}
|
}
|
||||||
|
|
||||||
func (UserFavorites) TableName() string {
|
func (UserFavorites) TableName() string {
|
||||||
|
@ -3,16 +3,16 @@ package models
|
|||||||
import "time"
|
import "time"
|
||||||
|
|
||||||
type UserSource struct {
|
type UserSource struct {
|
||||||
User User `gorm:"foreignKey:ID;references:UserID"`
|
User User `json:"user" gorm:"foreignKey:ID;references:UserID"`
|
||||||
UserID string `gorm:"primaryKey"`
|
UserID string `json:"user_id" gorm:"primaryKey"`
|
||||||
Source Source `gorm:"foreignKey:ID;references:SourceID"`
|
Source Source `json:"source" gorm:"foreignKey:ID;references:SourceID"`
|
||||||
SourceID string `gorm:"primaryKey"`
|
SourceID string `json:"source_id" gorm:"primaryKey"`
|
||||||
ScrapeTimeInterval string
|
ScrapeTimeInterval string `json:"scrape_time_interval"`
|
||||||
AccountUsername string
|
AccountUsername string `json:"account_username"`
|
||||||
AccountID string
|
AccountID string `json:"account_id"`
|
||||||
LastScrapeTime time.Time
|
LastScrapeTime time.Time `json:"last_scrape_time"`
|
||||||
AccountValidate bool
|
AccountValidate bool `json:"account_validate"`
|
||||||
AccountValidationKey string
|
AccountValidationKey string `json:"-"`
|
||||||
}
|
}
|
||||||
|
|
||||||
func (UserSource) TableName() string {
|
func (UserSource) TableName() string {
|
||||||
|
Reference in New Issue
Block a user