photoprism/internal/entity/photo_album.go
Michael Mayer b37d4472e4 Backend: Use original file if thumb size exceeds limit #172
Plus some mutex and config refactoring along the way...

Signed-off-by: Michael Mayer <michael@liquidbytes.net>
2020-01-08 19:51:21 +01:00

44 lines
935 B
Go

package entity
import (
"time"
"github.com/jinzhu/gorm"
"github.com/photoprism/photoprism/internal/mutex"
)
// Photos can be added to multiple albums
type PhotoAlbum struct {
PhotoUUID string `gorm:"type:varbinary(36);primary_key;auto_increment:false"`
AlbumUUID string `gorm:"type:varbinary(36);primary_key;auto_increment:false;index"`
Order int
CreatedAt time.Time
UpdatedAt time.Time
Photo *Photo
Album *Album
}
func (PhotoAlbum) TableName() string {
return "photos_albums"
}
func NewPhotoAlbum(photoUUID, albumUUID string) *PhotoAlbum {
result := &PhotoAlbum{
PhotoUUID: photoUUID,
AlbumUUID: albumUUID,
}
return result
}
func (m *PhotoAlbum) FirstOrCreate(db *gorm.DB) *PhotoAlbum {
mutex.Db.Lock()
defer mutex.Db.Unlock()
if err := db.FirstOrCreate(m, "photo_uuid = ? AND album_uuid = ?", m.PhotoUUID, m.AlbumUUID).Error; err != nil {
log.Errorf("photo album: %s", err)
}
return m
}