photoprism/internal/entity/file_share_fixtures.go
Michael Mayer e3bb8b19dd Routing: Prefix frontend UI routes with /library #840 #2466
Also improves migrations and updates the db schema docs.

Signed-off-by: Michael Mayer <michael@photoprism.app>
2022-10-15 21:54:11 +02:00

58 lines
1.4 KiB
Go

package entity
import (
"time"
)
type FileShareMap map[string]FileShare
func (m FileShareMap) Get(name string, fileID, accountID uint, remoteName string) FileShare {
if result, ok := m[name]; ok {
return result
}
return *NewFileShare(fileID, accountID, remoteName)
}
func (m FileShareMap) Pointer(name string, fileID, accountID uint, remoteName string) *FileShare {
if result, ok := m[name]; ok {
return &result
}
return NewFileShare(fileID, accountID, remoteName)
}
var FileShareFixtures = FileShareMap{
"FileShare1": {
FileID: 1000000,
ServiceID: 1000000,
RemoteName: "/20100729-015747-Urlaub-2010.jpg",
Status: FileShareShared,
Error: "",
Errors: 0,
File: nil,
Account: &ServiceFixtureWebdavDummy,
CreatedAt: time.Date(2019, 1, 1, 0, 0, 0, 0, time.UTC),
UpdatedAt: time.Date(2020, 1, 1, 0, 0, 0, 0, time.UTC),
},
"FileShare2": {
FileID: 1000000,
ServiceID: 1000001,
RemoteName: "/20200729-015747-Dog-2020.jpg",
Status: FileShareNew,
Error: "",
Errors: 0,
File: nil,
Account: &ServiceFixtureWebdavDummy2,
CreatedAt: time.Date(2019, 1, 1, 0, 0, 0, 0, time.UTC),
UpdatedAt: time.Date(2020, 1, 1, 0, 0, 0, 0, time.UTC),
},
}
// CreateFileShareFixtures inserts known entities into the database for testing.
func CreateFileShareFixtures() {
for _, entity := range FileShareFixtures {
Db().Create(&entity)
}
}