590420c870
Signed-off-by: Michael Mayer <michael@liquidbytes.net>
30 lines
742 B
Go
30 lines
742 B
Go
package query
|
|
|
|
import (
|
|
"github.com/photoprism/photoprism/internal/entity"
|
|
"github.com/photoprism/photoprism/pkg/fs"
|
|
)
|
|
|
|
// AccountUploads a list of files for uploading to a remote account.
|
|
func (q *Query) AccountUploads(a entity.Account, limit int) (results []entity.File, err error) {
|
|
s := q.db
|
|
|
|
s = s.Where("files.file_missing = 0").
|
|
Where("files.id NOT IN (SELECT file_id FROM files_sync WHERE file_id > 0 AND account_id = ?)", a.ID)
|
|
|
|
if !a.SyncRaw {
|
|
s = s.Where("files.file_type <> ? OR files.file_type IS NULL", fs.TypeRaw)
|
|
}
|
|
|
|
s = s.Order("files.file_name ASC")
|
|
|
|
if limit > 0 {
|
|
s = s.Limit(limit).Offset(0)
|
|
}
|
|
|
|
if result := s.Find(&results); result.Error != nil {
|
|
return results, result.Error
|
|
}
|
|
|
|
return results, nil
|
|
}
|