2024-01-16 05:19:36 +00:00
|
|
|
package account
|
|
|
|
|
2024-01-16 18:30:36 +00:00
|
|
|
import (
|
2024-01-28 07:20:59 +00:00
|
|
|
"crypto/ed25519"
|
2024-01-16 18:30:36 +00:00
|
|
|
"git.lumeweb.com/LumeWeb/portal/db/models"
|
2024-01-28 07:20:59 +00:00
|
|
|
"github.com/spf13/viper"
|
|
|
|
"go.uber.org/fx"
|
2024-01-16 18:30:36 +00:00
|
|
|
"golang.org/x/crypto/bcrypt"
|
2024-01-17 18:03:52 +00:00
|
|
|
"gorm.io/gorm"
|
2024-01-16 18:30:36 +00:00
|
|
|
)
|
2024-01-16 05:19:36 +00:00
|
|
|
|
2024-01-28 07:20:59 +00:00
|
|
|
type AccountServiceParams struct {
|
|
|
|
fx.In
|
|
|
|
Db *gorm.DB
|
|
|
|
Config *viper.Viper
|
|
|
|
Identity ed25519.PrivateKey
|
|
|
|
}
|
|
|
|
|
|
|
|
var Module = fx.Module("account",
|
|
|
|
fx.Options(
|
|
|
|
fx.Provide(NewAccountService),
|
|
|
|
),
|
2024-01-16 05:19:36 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
type AccountServiceImpl struct {
|
2024-01-28 07:20:59 +00:00
|
|
|
db *gorm.DB
|
|
|
|
config *viper.Viper
|
|
|
|
identity ed25519.PrivateKey
|
2024-01-16 05:19:36 +00:00
|
|
|
}
|
|
|
|
|
2024-01-28 07:20:59 +00:00
|
|
|
func NewAccountService(params AccountServiceParams) *AccountServiceImpl {
|
|
|
|
return &AccountServiceImpl{db: params.Db, config: params.Config, identity: params.Identity}
|
2024-01-16 05:19:36 +00:00
|
|
|
}
|
2024-01-16 18:30:36 +00:00
|
|
|
|
|
|
|
func (s AccountServiceImpl) EmailExists(email string) (bool, models.User) {
|
|
|
|
var user models.User
|
|
|
|
|
2024-01-28 07:20:59 +00:00
|
|
|
result := s.db.Model(&models.User{}).Where(&models.User{Email: email}).First(&user)
|
2024-01-16 18:30:36 +00:00
|
|
|
|
|
|
|
return result.RowsAffected > 0, user
|
|
|
|
}
|
|
|
|
func (s AccountServiceImpl) PubkeyExists(pubkey string) (bool, models.PublicKey) {
|
|
|
|
var model models.PublicKey
|
|
|
|
|
2024-01-28 07:20:59 +00:00
|
|
|
result := s.db.Model(&models.PublicKey{}).Where(&models.PublicKey{Key: pubkey}).First(&model)
|
2024-01-16 18:30:36 +00:00
|
|
|
|
|
|
|
return result.RowsAffected > 0, model
|
|
|
|
}
|
2024-01-17 13:35:42 +00:00
|
|
|
|
|
|
|
func (s AccountServiceImpl) AccountExists(id uint64) (bool, models.User) {
|
|
|
|
var model models.User
|
|
|
|
|
2024-01-28 07:20:59 +00:00
|
|
|
result := s.db.Model(&models.User{}).First(&model, id)
|
2024-01-17 13:35:42 +00:00
|
|
|
|
|
|
|
return result.RowsAffected > 0, model
|
|
|
|
}
|
2024-01-16 18:30:36 +00:00
|
|
|
func (s AccountServiceImpl) CreateAccount(email string, password string) (*models.User, error) {
|
|
|
|
var user models.User
|
|
|
|
|
|
|
|
bytes, err := bcrypt.GenerateFromPassword([]byte(password), bcrypt.DefaultCost)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
user.Email = email
|
|
|
|
user.PasswordHash = string(bytes)
|
|
|
|
|
2024-01-28 07:20:59 +00:00
|
|
|
result := s.db.Create(&user)
|
2024-01-16 18:30:36 +00:00
|
|
|
|
|
|
|
if result.Error != nil {
|
|
|
|
return nil, result.Error
|
|
|
|
}
|
|
|
|
|
|
|
|
return &user, nil
|
|
|
|
}
|
|
|
|
func (s AccountServiceImpl) AddPubkeyToAccount(user models.User, pubkey string) error {
|
|
|
|
var model models.PublicKey
|
|
|
|
|
|
|
|
model.Key = pubkey
|
|
|
|
model.UserID = user.ID
|
|
|
|
|
2024-01-28 07:20:59 +00:00
|
|
|
result := s.db.Create(&model)
|
2024-01-16 18:30:36 +00:00
|
|
|
|
|
|
|
if result.Error != nil {
|
|
|
|
return result.Error
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
func (s AccountServiceImpl) LoginPassword(email string, password string) (string, error) {
|
|
|
|
var user models.User
|
|
|
|
|
2024-01-28 07:20:59 +00:00
|
|
|
result := s.db.Model(&models.User{}).Where(&models.User{Email: email}).First(&user)
|
2024-01-16 18:30:36 +00:00
|
|
|
|
|
|
|
if result.RowsAffected == 0 || result.Error != nil {
|
|
|
|
return "", result.Error
|
|
|
|
}
|
|
|
|
|
|
|
|
err := bcrypt.CompareHashAndPassword([]byte(user.PasswordHash), []byte(password))
|
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
|
2024-01-28 07:20:59 +00:00
|
|
|
token, err := GenerateToken(s.identity, user.ID)
|
2024-01-16 18:30:36 +00:00
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
|
|
|
|
return token, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s AccountServiceImpl) LoginPubkey(pubkey string) (string, error) {
|
|
|
|
var model models.PublicKey
|
|
|
|
|
2024-01-28 07:20:59 +00:00
|
|
|
result := s.db.Model(&models.PublicKey{}).Where(&models.PublicKey{Key: pubkey}).First(&model)
|
2024-01-16 18:30:36 +00:00
|
|
|
|
|
|
|
if result.RowsAffected == 0 || result.Error != nil {
|
|
|
|
return "", result.Error
|
|
|
|
}
|
|
|
|
|
2024-01-28 07:20:59 +00:00
|
|
|
token, err := GenerateToken(s.identity, model.UserID)
|
2024-01-16 18:30:36 +00:00
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
|
|
|
|
return token, nil
|
|
|
|
}
|
2024-01-17 17:32:50 +00:00
|
|
|
|
|
|
|
func (s AccountServiceImpl) AccountPins(id uint64, createdAfter uint64) ([]models.Pin, error) {
|
|
|
|
var pins []models.Pin
|
|
|
|
|
2024-01-28 07:20:59 +00:00
|
|
|
result := s.db.Model(&models.Pin{}).
|
2024-01-24 17:47:20 +00:00
|
|
|
Preload("Upload"). // Preload the related Upload for each Pin
|
|
|
|
Where(&models.Pin{UserID: uint(id)}).
|
|
|
|
Where("created_at > ?", createdAfter).
|
|
|
|
Order("created_at desc").
|
|
|
|
Find(&pins)
|
2024-01-17 17:32:50 +00:00
|
|
|
|
|
|
|
if result.Error != nil {
|
|
|
|
return nil, result.Error
|
|
|
|
}
|
|
|
|
|
|
|
|
return pins, nil
|
|
|
|
}
|
2024-01-17 18:03:52 +00:00
|
|
|
|
|
|
|
func (s AccountServiceImpl) DeletePinByHash(hash string, accountID uint) error {
|
|
|
|
// Define a struct for the query condition
|
|
|
|
uploadQuery := models.Upload{Hash: hash}
|
|
|
|
|
|
|
|
// Retrieve the upload ID for the given hash
|
|
|
|
var uploadID uint
|
2024-01-28 07:20:59 +00:00
|
|
|
result := s.db.
|
2024-01-17 18:03:52 +00:00
|
|
|
Model(&models.Upload{}).
|
|
|
|
Where(&uploadQuery).
|
|
|
|
Select("id").
|
|
|
|
First(&uploadID)
|
|
|
|
|
|
|
|
if result.Error != nil {
|
|
|
|
if result.Error == gorm.ErrRecordNotFound {
|
|
|
|
// No record found, nothing to delete
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
return result.Error
|
|
|
|
}
|
|
|
|
|
|
|
|
// Delete pins with the retrieved upload ID and matching account ID
|
|
|
|
pinQuery := models.Pin{UploadID: uploadID, UserID: accountID}
|
2024-01-28 07:20:59 +00:00
|
|
|
result = s.db.
|
2024-01-17 18:03:52 +00:00
|
|
|
Where(&pinQuery).
|
|
|
|
Delete(&models.Pin{})
|
|
|
|
|
|
|
|
if result.Error != nil {
|
|
|
|
return result.Error
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
2024-01-17 18:13:37 +00:00
|
|
|
func (s AccountServiceImpl) PinByHash(hash string, accountID uint) error {
|
|
|
|
// Define a struct for the query condition
|
|
|
|
uploadQuery := models.Upload{Hash: hash}
|
|
|
|
|
|
|
|
// Retrieve the upload ID for the given hash
|
|
|
|
var uploadID uint
|
2024-01-28 07:20:59 +00:00
|
|
|
result := s.db.
|
2024-01-17 18:13:37 +00:00
|
|
|
Model(&models.Upload{}).
|
|
|
|
Where(&uploadQuery).
|
|
|
|
First(&uploadID)
|
|
|
|
|
|
|
|
if result.Error != nil {
|
|
|
|
return result.Error
|
|
|
|
}
|
|
|
|
|
2024-01-17 22:19:46 +00:00
|
|
|
return s.PinByID(uploadID, accountID)
|
2024-01-17 18:13:37 +00:00
|
|
|
}
|
2024-01-17 22:14:45 +00:00
|
|
|
|
|
|
|
func (s AccountServiceImpl) PinByID(uploadId uint, accountID uint) error {
|
2024-01-28 07:20:59 +00:00
|
|
|
result := s.db.Model(&models.Pin{}).Where(&models.Pin{UploadID: uploadId, UserID: accountID}).First(&models.Pin{})
|
2024-01-17 22:18:58 +00:00
|
|
|
|
|
|
|
if result.Error != nil && result.Error != gorm.ErrRecordNotFound {
|
|
|
|
return result.Error
|
|
|
|
}
|
|
|
|
|
|
|
|
if result.RowsAffected > 0 {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2024-01-17 22:14:45 +00:00
|
|
|
// Create a pin with the retrieved upload ID and matching account ID
|
|
|
|
pinQuery := models.Pin{UploadID: uploadId, UserID: accountID}
|
2024-01-28 07:20:59 +00:00
|
|
|
result = s.db.Create(&pinQuery)
|
2024-01-17 22:14:45 +00:00
|
|
|
|
|
|
|
if result.Error != nil {
|
|
|
|
return result.Error
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|