2024-06-14 11:19:55 +00:00
|
|
|
package postgres
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"git.dragse.it/anthrove/otter-space-sdk/pkg/models"
|
2024-06-21 13:15:20 +00:00
|
|
|
"git.dragse.it/anthrove/otter-space-sdk/pkg/models/graphModels"
|
2024-06-14 11:19:55 +00:00
|
|
|
log "github.com/sirupsen/logrus"
|
|
|
|
"gorm.io/gorm"
|
|
|
|
)
|
|
|
|
|
2024-06-21 13:15:20 +00:00
|
|
|
func EstablishAnthrovePostToSourceLink(ctx context.Context, db *gorm.DB, anthrovePostID models.AnthrovePostID, anthroveSourceDomain string, anthrovePostRelationship *graphModels.AnthrovePostRelationship) error {
|
2024-06-22 20:06:36 +00:00
|
|
|
var source models.Source
|
2024-06-19 21:32:42 +00:00
|
|
|
var err error
|
2024-06-14 11:19:55 +00:00
|
|
|
|
|
|
|
// Find the source
|
|
|
|
err = db.WithContext(ctx).Where("domain = ?", anthroveSourceDomain).First(&source).Error
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
// Establish the relationship
|
2024-06-22 20:06:36 +00:00
|
|
|
err = db.WithContext(ctx).Create(models.PostReference{
|
2024-06-19 21:32:42 +00:00
|
|
|
PostID: string(anthrovePostID),
|
|
|
|
SourceID: source.ID,
|
2024-06-21 13:15:20 +00:00
|
|
|
URL: anthrovePostRelationship.Url,
|
2024-06-19 21:32:42 +00:00
|
|
|
}).Error
|
|
|
|
|
2024-06-14 11:19:55 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
log.WithFields(log.Fields{
|
|
|
|
"anthrove_post_id": anthrovePostID,
|
|
|
|
"anthrove_source_domain": anthroveSourceDomain,
|
|
|
|
}).Trace("database: created anthrove post to source link")
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
2024-06-14 11:22:52 +00:00
|
|
|
|
|
|
|
func EstablishUserToPostLink(ctx context.Context, db *gorm.DB, anthroveUserID models.AnthroveUserID, anthrovePostID models.AnthrovePostID) error {
|
2024-06-22 20:06:36 +00:00
|
|
|
userFavorite := models.UserFavorite{
|
2024-06-14 11:22:52 +00:00
|
|
|
UserID: string(anthroveUserID),
|
|
|
|
PostID: string(anthrovePostID),
|
|
|
|
}
|
|
|
|
|
|
|
|
err := db.WithContext(ctx).Create(&userFavorite).Error
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
log.WithFields(log.Fields{
|
|
|
|
"anthrove_user_id": anthroveUserID,
|
|
|
|
"anthrove_post_id": anthrovePostID,
|
|
|
|
}).Trace("database: created user to post link")
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
2024-06-14 11:25:54 +00:00
|
|
|
|
|
|
|
func CheckUserToPostLink(ctx context.Context, db *gorm.DB, anthroveUserID models.AnthroveUserID, anthrovePostID models.AnthrovePostID) (bool, error) {
|
|
|
|
var count int64
|
2024-06-22 20:06:36 +00:00
|
|
|
err := db.WithContext(ctx).Model(&models.UserFavorite{}).Where("user_id = ? AND post_id = ?", string(anthroveUserID), string(anthrovePostID)).Count(&count).Error
|
2024-06-14 11:25:54 +00:00
|
|
|
if err != nil {
|
|
|
|
return false, err
|
|
|
|
}
|
|
|
|
|
|
|
|
exists := count > 0
|
|
|
|
|
|
|
|
log.WithFields(log.Fields{
|
|
|
|
"relationship_exists": exists,
|
|
|
|
"relationship_anthrove_user_id": anthroveUserID,
|
|
|
|
"relationship_anthrove_post_id": anthrovePostID,
|
|
|
|
}).Trace("database: checked user post relationship")
|
|
|
|
|
|
|
|
return exists, nil
|
|
|
|
}
|