2019-12-11 16:55:18 +01:00
|
|
|
package entity
|
2018-07-18 15:17:56 +02:00
|
|
|
|
|
|
|
import (
|
2019-05-14 18:16:35 +02:00
|
|
|
"fmt"
|
2019-05-16 04:03:55 +02:00
|
|
|
"strings"
|
2019-12-27 05:18:52 +01:00
|
|
|
"time"
|
2019-05-14 18:16:35 +02:00
|
|
|
|
|
|
|
"github.com/gosimple/slug"
|
2018-07-18 15:17:56 +02:00
|
|
|
"github.com/jinzhu/gorm"
|
2020-01-12 14:00:56 +01:00
|
|
|
"github.com/photoprism/photoprism/pkg/rnd"
|
2018-07-18 15:17:56 +02:00
|
|
|
)
|
|
|
|
|
2018-11-18 19:18:19 +01:00
|
|
|
// An image or sidecar file that belongs to a photo
|
2018-07-18 15:17:56 +02:00
|
|
|
type File struct {
|
2020-02-01 20:52:28 +01:00
|
|
|
ID uint `gorm:"primary_key"`
|
|
|
|
Photo *Photo
|
|
|
|
PhotoID uint `gorm:"index;"`
|
|
|
|
PhotoUUID string `gorm:"type:varbinary(36);index;"`
|
|
|
|
FileUUID string `gorm:"type:varbinary(36);unique_index;"`
|
|
|
|
FileName string `gorm:"type:varbinary(600);unique_index"`
|
|
|
|
OriginalName string `gorm:"type:varbinary(600);"`
|
|
|
|
FileHash string `gorm:"type:varbinary(128);unique_index"`
|
|
|
|
FileModified time.Time
|
|
|
|
FileSize int64
|
|
|
|
FileType string `gorm:"type:varbinary(32)"`
|
|
|
|
FileMime string `gorm:"type:varbinary(64)"`
|
|
|
|
FilePrimary bool
|
|
|
|
FileSidecar bool
|
|
|
|
FileVideo bool
|
|
|
|
FileMissing bool
|
|
|
|
FileDuplicate bool
|
|
|
|
FilePortrait bool
|
|
|
|
FileWidth int
|
|
|
|
FileHeight int
|
|
|
|
FileOrientation int
|
|
|
|
FileAspectRatio float64
|
|
|
|
FileMainColor string `gorm:"type:varbinary(16);index;"`
|
|
|
|
FileColors string `gorm:"type:binary(9);"`
|
|
|
|
FileLuminance string `gorm:"type:binary(9);"`
|
|
|
|
FileChroma uint
|
|
|
|
FileNotes string `gorm:"type:text"`
|
|
|
|
FileError string `gorm:"type:varbinary(512)"`
|
|
|
|
CreatedAt time.Time
|
|
|
|
CreatedIn int64
|
|
|
|
UpdatedAt time.Time
|
|
|
|
UpdatedIn int64
|
|
|
|
DeletedAt *time.Time `sql:"index"`
|
2019-05-14 18:16:35 +02:00
|
|
|
}
|
|
|
|
|
2019-07-03 09:27:30 +02:00
|
|
|
func FindFileByHash(db *gorm.DB, fileHash string) (File, error) {
|
|
|
|
var file File
|
|
|
|
|
|
|
|
q := db.Unscoped().First(&file, "file_hash = ?", fileHash)
|
|
|
|
|
|
|
|
return file, q.Error
|
|
|
|
}
|
|
|
|
|
2019-06-04 18:26:35 +02:00
|
|
|
func (m *File) BeforeCreate(scope *gorm.Scope) error {
|
2020-01-12 12:32:24 +01:00
|
|
|
return scope.SetColumn("FileUUID", rnd.PPID('f'))
|
2019-06-04 18:26:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func (m *File) DownloadFileName() string {
|
|
|
|
if m.Photo == nil {
|
|
|
|
return fmt.Sprintf("%s.%s", m.FileHash, m.FileType)
|
2019-05-16 04:03:55 +02:00
|
|
|
}
|
2019-05-14 18:16:35 +02:00
|
|
|
|
2019-05-16 04:03:55 +02:00
|
|
|
var name string
|
2019-05-14 18:16:35 +02:00
|
|
|
|
2019-06-04 18:26:35 +02:00
|
|
|
if m.Photo.PhotoTitle != "" {
|
2019-12-05 21:06:53 +01:00
|
|
|
name = strings.Title(slug.MakeLang(m.Photo.PhotoTitle, "en"))
|
2019-05-16 04:03:55 +02:00
|
|
|
} else {
|
2019-12-06 16:47:30 +01:00
|
|
|
name = m.PhotoUUID
|
2019-05-16 04:03:55 +02:00
|
|
|
}
|
2019-05-14 18:16:35 +02:00
|
|
|
|
2019-06-04 18:26:35 +02:00
|
|
|
taken := m.Photo.TakenAt.Format("20060102-150405")
|
2019-05-16 04:03:55 +02:00
|
|
|
|
2019-06-04 18:26:35 +02:00
|
|
|
result := fmt.Sprintf("%s-%s.%s", taken, name, m.FileType)
|
2019-05-14 18:16:35 +02:00
|
|
|
|
|
|
|
return result
|
2018-07-18 15:17:56 +02:00
|
|
|
}
|
2020-02-01 20:52:28 +01:00
|
|
|
|
|
|
|
func (m File) Changed(fileSize int64, fileModified time.Time) bool {
|
|
|
|
if m.FileSize != fileSize {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
if m.FileModified != fileModified {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
return false
|
|
|
|
}
|