842da9f09b
Signed-off-by: Michael Mayer <michael@liquidbytes.net>
57 lines
1.2 KiB
Go
57 lines
1.2 KiB
Go
package query
|
|
|
|
import (
|
|
"time"
|
|
|
|
"github.com/photoprism/photoprism/internal/entity"
|
|
)
|
|
|
|
// FileShares returns up to 100 file shares for a given account id and status.
|
|
func FileShares(accountId uint, status string) (result []entity.FileShare, err error) {
|
|
s := Db().Where(&entity.FileShare{})
|
|
|
|
if accountId > 0 {
|
|
s = s.Where("account_id = ?", accountId)
|
|
}
|
|
|
|
if status != "" {
|
|
s = s.Where("status = ?", status)
|
|
}
|
|
|
|
s = s.Order("created_at ASC")
|
|
s = s.Limit(100).Offset(0)
|
|
|
|
s = s.Preload("File")
|
|
|
|
if err := s.Find(&result).Error; err != nil {
|
|
return result, err
|
|
}
|
|
|
|
return result, nil
|
|
}
|
|
|
|
// ExpiredFileShares returns up to 100 expired file shares for a given account.
|
|
func ExpiredFileShares(account entity.Account) (result []entity.FileShare, err error) {
|
|
if account.ShareExpires <= 0 {
|
|
return result, nil
|
|
}
|
|
|
|
s := Db().Where(&entity.FileShare{})
|
|
|
|
exp := time.Now().Add(time.Duration(-1*account.ShareExpires) * time.Second)
|
|
|
|
s = s.Where("account_id = ?", account.ID)
|
|
s = s.Where("status = ?", entity.FileShareShared)
|
|
s = s.Where("updated_at < ?", exp)
|
|
|
|
s = s.Order("updated_at ASC")
|
|
s = s.Limit(100).Offset(0)
|
|
|
|
s = s.Preload("File")
|
|
|
|
if err := s.Find(&result).Error; err != nil {
|
|
return result, err
|
|
}
|
|
|
|
return result, nil
|
|
}
|