sqlite

package
v0.25.1 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Mar 13, 2024 License: AGPL-3.0 Imports: 43 Imported by: 0

Documentation

Index

Constants

View Source
const TimestampFormat = time.RFC3339

Variables

View Source
var (
	// ErrDatabaseNotInitialized indicates that the database is not
	// initialized, usually due to an incomplete configuration.
	ErrDatabaseNotInitialized = errors.New("database not initialized")
)
View Source
var FingerprintReaderWriter = &fingerprintQueryBuilder{
	repository: repository{
		tableName: fingerprintTable,
		idColumn:  fileIDColumn,
	},

	tableMgr: fingerprintTableMgr,
}

Functions

func RegisterPostMigration added in v0.17.0

func RegisterPostMigration(schemaVersion uint, fn customMigrationFunc)

func RegisterPreMigration added in v0.17.0

func RegisterPreMigration(schemaVersion uint, fn customMigrationFunc)

Types

type Anonymiser added in v0.19.0

type Anonymiser struct {
	*Database
}

func NewAnonymiser added in v0.19.0

func NewAnonymiser(db *Database, outPath string) (*Anonymiser, error)

func (*Anonymiser) Anonymise added in v0.19.0

func (db *Anonymiser) Anonymise(ctx context.Context) error

type BlobStore added in v0.20.0

type BlobStore struct {
	// contains filtered or unexported fields
}

func NewBlobStore added in v0.20.0

func NewBlobStore(options BlobStoreOptions) *BlobStore

func (*BlobStore) Count added in v0.20.0

func (qb *BlobStore) Count(ctx context.Context) (int, error)

func (*BlobStore) Delete added in v0.20.0

func (qb *BlobStore) Delete(ctx context.Context, checksum string) error

Delete marks a checksum as no longer in use by a single reference. If no references remain, the blob is deleted from the database and filesystem.

func (*BlobStore) EntryExists added in v0.25.0

func (qb *BlobStore) EntryExists(ctx context.Context, checksum string) (bool, error)

func (*BlobStore) FindBlobs added in v0.20.0

func (qb *BlobStore) FindBlobs(ctx context.Context, n uint, lastChecksum string) ([]string, error)

func (*BlobStore) MigrateBlob added in v0.20.0

func (qb *BlobStore) MigrateBlob(ctx context.Context, checksum string, deleteOld bool) error

MigrateBlob migrates a blob from the filesystem to the database, or vice versa. The target is determined by the UseDatabase and UseFilesystem options. If deleteOld is true, the blob is deleted from the source after migration.

func (*BlobStore) Read added in v0.20.0

func (qb *BlobStore) Read(ctx context.Context, checksum string) ([]byte, error)

Read reads the data from the database or filesystem, depending on which is enabled.

func (*BlobStore) Write added in v0.20.0

func (qb *BlobStore) Write(ctx context.Context, data []byte) (string, error)

Write stores the data and its checksum in enabled stores. Always writes at least the checksum to the database.

type BlobStoreOptions added in v0.20.0

type BlobStoreOptions struct {
	// UseFilesystem should be true if blob data should be stored in the filesystem
	UseFilesystem bool
	// UseDatabase should be true if blob data should be stored in the database
	UseDatabase bool
	// Path is the filesystem path to use for storing blobs
	Path string
	// SupplementaryPaths are alternative filesystem paths that will be used to find blobs
	// No changes will be made to these filesystems
	SupplementaryPaths []string
}

type ChecksumBlobNotExistError added in v0.20.0

type ChecksumBlobNotExistError struct {
	Checksum string
}

func (*ChecksumBlobNotExistError) Error added in v0.20.0

func (e *ChecksumBlobNotExistError) Error() string

type ChecksumNotFoundError added in v0.20.0

type ChecksumNotFoundError struct {
	Checksum string
}

func (*ChecksumNotFoundError) Error added in v0.20.0

func (e *ChecksumNotFoundError) Error() string

type CustomSQLiteConn added in v0.20.0

type CustomSQLiteConn struct {
	*sqlite3.SQLiteConn
}

func (*CustomSQLiteConn) Close added in v0.20.0

func (c *CustomSQLiteConn) Close() error

type CustomSQLiteDriver added in v0.20.0

type CustomSQLiteDriver struct{}

func (*CustomSQLiteDriver) Open added in v0.20.0

func (d *CustomSQLiteDriver) Open(dsn string) (driver.Conn, error)

type Database added in v0.17.0

type Database struct {
	Blobs          *BlobStore
	File           *FileStore
	Folder         *FolderStore
	Image          *ImageStore
	Gallery        *GalleryStore
	GalleryChapter *GalleryChapterStore
	Scene          *SceneStore
	SceneMarker    *SceneMarkerStore
	Performer      *PerformerStore
	SavedFilter    *SavedFilterStore
	Studio         *StudioStore
	Tag            *TagStore
	Movie          *MovieStore
	// contains filtered or unexported fields
}

func NewDatabase added in v0.17.0

func NewDatabase() *Database

func (*Database) Analyze added in v0.22.0

func (db *Database) Analyze(ctx context.Context) error

Analyze runs an ANALYZE on the database to improve query performance.

func (*Database) Anonymise added in v0.19.0

func (db *Database) Anonymise(outPath string) error

func (*Database) AnonymousDatabasePath added in v0.19.0

func (db *Database) AnonymousDatabasePath(backupDirectoryPath string) string

func (*Database) AppSchemaVersion added in v0.17.0

func (db *Database) AppSchemaVersion() uint

func (*Database) Backup added in v0.17.0

func (db *Database) Backup(backupPath string) (err error)

Backup the database. If db is nil, then uses the existing database connection.

func (*Database) Begin added in v0.17.0

func (db *Database) Begin(ctx context.Context, exclusive bool) (context.Context, error)

func (*Database) Close added in v0.17.0

func (db *Database) Close() error

func (*Database) Commit added in v0.17.0

func (db *Database) Commit(ctx context.Context) error

func (*Database) DatabaseBackupPath added in v0.17.0

func (db *Database) DatabaseBackupPath(backupDirectoryPath string) string

func (*Database) DatabasePath added in v0.17.0

func (db *Database) DatabasePath() string

func (*Database) ExecSQL added in v0.22.0

func (db *Database) ExecSQL(ctx context.Context, query string, args []interface{}) (*int64, *int64, error)

func (*Database) IsLocked added in v0.17.0

func (db *Database) IsLocked(err error) bool

func (*Database) Open added in v0.17.0

func (db *Database) Open(dbPath string) error

Open initializes the database. If the database is new, then it performs a full migration to the latest schema version. Otherwise, any necessary migrations must be run separately using RunMigrations. Returns true if the database is new.

func (*Database) Optimise added in v0.22.0

func (db *Database) Optimise(ctx context.Context) error

func (*Database) QuerySQL added in v0.22.0

func (db *Database) QuerySQL(ctx context.Context, query string, args []interface{}) ([]string, [][]interface{}, error)

func (*Database) Ready added in v0.17.0

func (db *Database) Ready() error

Ready returns an error if the database is not ready to begin transactions.

func (*Database) Remove added in v0.19.0

func (db *Database) Remove() error

func (*Database) Repository added in v0.24.0

func (db *Database) Repository() models.Repository

func (*Database) Reset added in v0.17.0

func (db *Database) Reset() error

func (*Database) RestoreFromBackup added in v0.17.0

func (db *Database) RestoreFromBackup(backupPath string) error

func (*Database) Rollback added in v0.17.0

func (db *Database) Rollback(ctx context.Context) error

func (*Database) RunMigrations added in v0.17.0

func (db *Database) RunMigrations() error

Migrate the database

func (*Database) SetBlobStoreOptions added in v0.20.0

func (db *Database) SetBlobStoreOptions(options BlobStoreOptions)

func (*Database) Vacuum added in v0.20.0

func (db *Database) Vacuum(ctx context.Context) error

Vacuum runs a VACUUM on the database, rebuilding the database file into a minimal amount of disk space.

func (*Database) Version added in v0.17.0

func (db *Database) Version() uint

func (*Database) WithDatabase added in v0.17.0

func (db *Database) WithDatabase(ctx context.Context) (context.Context, error)

type Date added in v0.22.0

type Date struct {
	Date time.Time
}

Date represents a date stored as "YYYY-MM-DD"

func (*Date) Scan added in v0.22.0

func (d *Date) Scan(value interface{}) error

Scan implements the Scanner interface.

func (Date) Value added in v0.22.0

func (d Date) Value() (driver.Value, error)

Value implements the driver Valuer interface.

type FileStore added in v0.17.0

type FileStore struct {
	// contains filtered or unexported fields
}

func NewFileStore added in v0.17.0

func NewFileStore() *FileStore

func (*FileStore) CountAllInPaths added in v0.17.0

func (qb *FileStore) CountAllInPaths(ctx context.Context, p []string) (int, error)

CountAllInPaths returns a count of all files that are within any of the given paths. Returns count of all files if p is empty.

func (*FileStore) CountByFolderID added in v0.22.0

func (qb *FileStore) CountByFolderID(ctx context.Context, folderID models.FolderID) (int, error)

func (*FileStore) Create added in v0.17.0

func (qb *FileStore) Create(ctx context.Context, f models.File) error

func (*FileStore) Destroy added in v0.17.0

func (qb *FileStore) Destroy(ctx context.Context, id models.FileID) error

func (*FileStore) DestroyFingerprints added in v0.24.0

func (qb *FileStore) DestroyFingerprints(ctx context.Context, fileID models.FileID, types []string) error

func (*FileStore) Find added in v0.17.0

func (qb *FileStore) Find(ctx context.Context, ids ...models.FileID) ([]models.File, error)

func (*FileStore) FindAllByPath added in v0.19.0

func (qb *FileStore) FindAllByPath(ctx context.Context, p string) ([]models.File, error)

FindAllByPath returns all the files that match the given path. Wildcard characters are supported.

func (*FileStore) FindAllInPaths added in v0.17.0

func (qb *FileStore) FindAllInPaths(ctx context.Context, p []string, limit, offset int) ([]models.File, error)

FindAllByPaths returns the all files that are within any of the given paths. Returns all if limit is < 0. Returns all files if p is empty.

func (*FileStore) FindByFileInfo added in v0.22.0

func (qb *FileStore) FindByFileInfo(ctx context.Context, info fs.FileInfo, size int64) ([]models.File, error)

FindByFileInfo finds files that match the base name, size, and mod time of the given file.

func (*FileStore) FindByFingerprint added in v0.17.0

func (qb *FileStore) FindByFingerprint(ctx context.Context, fp models.Fingerprint) ([]models.File, error)

func (*FileStore) FindByPath added in v0.17.0

func (qb *FileStore) FindByPath(ctx context.Context, p string) (models.File, error)

FindByPath returns the first file that matches the given path. Wildcard characters are supported.

func (*FileStore) FindByZipFileID added in v0.17.0

func (qb *FileStore) FindByZipFileID(ctx context.Context, zipFileID models.FileID) ([]models.File, error)

func (*FileStore) GetCaptions added in v0.17.0

func (qb *FileStore) GetCaptions(ctx context.Context, fileID models.FileID) ([]*models.VideoCaption, error)

func (*FileStore) IsPrimary added in v0.17.0

func (qb *FileStore) IsPrimary(ctx context.Context, fileID models.FileID) (bool, error)

func (*FileStore) ModifyFingerprints added in v0.24.0

func (qb *FileStore) ModifyFingerprints(ctx context.Context, fileID models.FileID, fingerprints []models.Fingerprint) error

ModifyFingerprints updates existing fingerprints and adds new ones.

func (*FileStore) Query added in v0.17.0

func (*FileStore) Update added in v0.17.0

func (qb *FileStore) Update(ctx context.Context, f models.File) error

func (*FileStore) UpdateCaptions added in v0.17.0

func (qb *FileStore) UpdateCaptions(ctx context.Context, fileID models.FileID, captions []*models.VideoCaption) error

type FolderStore added in v0.17.0

type FolderStore struct {
	// contains filtered or unexported fields
}

func NewFolderStore added in v0.17.0

func NewFolderStore() *FolderStore

func (*FolderStore) CountAllInPaths added in v0.17.0

func (qb *FolderStore) CountAllInPaths(ctx context.Context, p []string) (int, error)

CountAllInPaths returns a count of all folders that are within any of the given paths. Returns count of all folders if p is empty.

func (*FolderStore) Create added in v0.17.0

func (qb *FolderStore) Create(ctx context.Context, f *models.Folder) error

func (*FolderStore) Destroy added in v0.17.0

func (qb *FolderStore) Destroy(ctx context.Context, id models.FolderID) error

func (*FolderStore) Find added in v0.17.0

func (qb *FolderStore) Find(ctx context.Context, id models.FolderID) (*models.Folder, error)

func (*FolderStore) FindAllInPaths added in v0.17.0

func (qb *FolderStore) FindAllInPaths(ctx context.Context, p []string, limit, offset int) ([]*models.Folder, error)

FindAllInPaths returns the all folders that are or are within any of the given paths. Returns all if limit is < 0. Returns all folders if p is empty.

func (*FolderStore) FindByParentFolderID added in v0.17.0

func (qb *FolderStore) FindByParentFolderID(ctx context.Context, parentFolderID models.FolderID) ([]*models.Folder, error)

func (*FolderStore) FindByPath added in v0.17.0

func (qb *FolderStore) FindByPath(ctx context.Context, p string) (*models.Folder, error)

func (*FolderStore) FindByZipFileID added in v0.17.0

func (qb *FolderStore) FindByZipFileID(ctx context.Context, zipFileID models.FileID) ([]*models.Folder, error)

func (*FolderStore) Update added in v0.17.0

func (qb *FolderStore) Update(ctx context.Context, updatedObject *models.Folder) error

type GalleryChapterStore added in v0.22.0

type GalleryChapterStore struct {
	// contains filtered or unexported fields
}

func NewGalleryChapterStore added in v0.22.0

func NewGalleryChapterStore() *GalleryChapterStore

func (*GalleryChapterStore) Create added in v0.22.0

func (qb *GalleryChapterStore) Create(ctx context.Context, newObject *models.GalleryChapter) error

func (*GalleryChapterStore) Destroy added in v0.22.0

func (qb *GalleryChapterStore) Destroy(ctx context.Context, id int) error

func (*GalleryChapterStore) Find added in v0.22.0

returns nil, nil if not found

func (*GalleryChapterStore) FindByGalleryID added in v0.22.0

func (qb *GalleryChapterStore) FindByGalleryID(ctx context.Context, galleryID int) ([]*models.GalleryChapter, error)

func (*GalleryChapterStore) FindMany added in v0.22.0

func (qb *GalleryChapterStore) FindMany(ctx context.Context, ids []int) ([]*models.GalleryChapter, error)

func (*GalleryChapterStore) Update added in v0.22.0

func (qb *GalleryChapterStore) Update(ctx context.Context, updatedObject *models.GalleryChapter) error

func (*GalleryChapterStore) UpdatePartial added in v0.22.0

type GalleryStore added in v0.17.0

type GalleryStore struct {
	// contains filtered or unexported fields
}

func NewGalleryStore added in v0.17.0

func NewGalleryStore(fileStore *FileStore, folderStore *FolderStore) *GalleryStore

func (*GalleryStore) AddFileID added in v0.17.0

func (qb *GalleryStore) AddFileID(ctx context.Context, id int, fileID models.FileID) error

func (*GalleryStore) AddImages added in v0.17.0

func (qb *GalleryStore) AddImages(ctx context.Context, galleryID int, imageIDs ...int) error

func (*GalleryStore) All added in v0.17.0

func (qb *GalleryStore) All(ctx context.Context) ([]*models.Gallery, error)

func (*GalleryStore) Count added in v0.17.0

func (qb *GalleryStore) Count(ctx context.Context) (int, error)

func (*GalleryStore) CountByFileID added in v0.17.0

func (qb *GalleryStore) CountByFileID(ctx context.Context, fileID models.FileID) (int, error)

func (*GalleryStore) CountByImageID added in v0.17.0

func (qb *GalleryStore) CountByImageID(ctx context.Context, imageID int) (int, error)

func (*GalleryStore) Create added in v0.17.0

func (qb *GalleryStore) Create(ctx context.Context, newObject *models.Gallery, fileIDs []models.FileID) error

func (*GalleryStore) Destroy added in v0.17.0

func (qb *GalleryStore) Destroy(ctx context.Context, id int) error

func (*GalleryStore) Find added in v0.17.0

func (qb *GalleryStore) Find(ctx context.Context, id int) (*models.Gallery, error)

returns nil, nil if not found

func (*GalleryStore) FindByChecksum added in v0.17.0

func (qb *GalleryStore) FindByChecksum(ctx context.Context, checksum string) ([]*models.Gallery, error)

func (*GalleryStore) FindByChecksums added in v0.17.0

func (qb *GalleryStore) FindByChecksums(ctx context.Context, checksums []string) ([]*models.Gallery, error)

func (*GalleryStore) FindByFileID added in v0.17.0

func (qb *GalleryStore) FindByFileID(ctx context.Context, fileID models.FileID) ([]*models.Gallery, error)

func (*GalleryStore) FindByFingerprints added in v0.17.0

func (qb *GalleryStore) FindByFingerprints(ctx context.Context, fp []models.Fingerprint) ([]*models.Gallery, error)

func (*GalleryStore) FindByFolderID added in v0.17.0

func (qb *GalleryStore) FindByFolderID(ctx context.Context, folderID models.FolderID) ([]*models.Gallery, error)

func (*GalleryStore) FindByImageID added in v0.17.0

func (qb *GalleryStore) FindByImageID(ctx context.Context, imageID int) ([]*models.Gallery, error)

func (*GalleryStore) FindByPath added in v0.17.0

func (qb *GalleryStore) FindByPath(ctx context.Context, p string) ([]*models.Gallery, error)

func (*GalleryStore) FindBySceneID added in v0.17.0

func (qb *GalleryStore) FindBySceneID(ctx context.Context, sceneID int) ([]*models.Gallery, error)

func (*GalleryStore) FindMany added in v0.17.0

func (qb *GalleryStore) FindMany(ctx context.Context, ids []int) ([]*models.Gallery, error)

func (*GalleryStore) FindUserGalleryByTitle added in v0.17.0

func (qb *GalleryStore) FindUserGalleryByTitle(ctx context.Context, title string) ([]*models.Gallery, error)

func (*GalleryStore) GetFiles added in v0.17.0

func (qb *GalleryStore) GetFiles(ctx context.Context, id int) ([]models.File, error)

func (*GalleryStore) GetImageIDs added in v0.17.0

func (qb *GalleryStore) GetImageIDs(ctx context.Context, galleryID int) ([]int, error)

func (*GalleryStore) GetManyFileIDs added in v0.17.0

func (qb *GalleryStore) GetManyFileIDs(ctx context.Context, ids []int) ([][]models.FileID, error)

func (*GalleryStore) GetPerformerIDs added in v0.17.0

func (qb *GalleryStore) GetPerformerIDs(ctx context.Context, id int) ([]int, error)

func (*GalleryStore) GetSceneIDs added in v0.17.0

func (qb *GalleryStore) GetSceneIDs(ctx context.Context, id int) ([]int, error)

func (*GalleryStore) GetTagIDs added in v0.17.0

func (qb *GalleryStore) GetTagIDs(ctx context.Context, id int) ([]int, error)

func (*GalleryStore) GetURLs added in v0.23.0

func (qb *GalleryStore) GetURLs(ctx context.Context, galleryID int) ([]string, error)

func (*GalleryStore) Query added in v0.17.0

func (qb *GalleryStore) Query(ctx context.Context, galleryFilter *models.GalleryFilterType, findFilter *models.FindFilterType) ([]*models.Gallery, int, error)

func (*GalleryStore) QueryCount added in v0.17.0

func (qb *GalleryStore) QueryCount(ctx context.Context, galleryFilter *models.GalleryFilterType, findFilter *models.FindFilterType) (int, error)

func (*GalleryStore) RemoveImages added in v0.17.0

func (qb *GalleryStore) RemoveImages(ctx context.Context, galleryID int, imageIDs ...int) error

func (*GalleryStore) Update added in v0.17.0

func (qb *GalleryStore) Update(ctx context.Context, updatedObject *models.Gallery) error

func (*GalleryStore) UpdateImages added in v0.17.0

func (qb *GalleryStore) UpdateImages(ctx context.Context, galleryID int, imageIDs []int) error

func (*GalleryStore) UpdatePartial added in v0.17.0

func (qb *GalleryStore) UpdatePartial(ctx context.Context, id int, partial models.GalleryPartial) (*models.Gallery, error)

type ImageStore added in v0.17.0

type ImageStore struct {
	// contains filtered or unexported fields
}

func NewImageStore added in v0.17.0

func NewImageStore(fileStore *FileStore) *ImageStore

func (*ImageStore) AddFileID added in v0.17.0

func (qb *ImageStore) AddFileID(ctx context.Context, id int, fileID models.FileID) error

func (*ImageStore) All added in v0.17.0

func (qb *ImageStore) All(ctx context.Context) ([]*models.Image, error)

func (*ImageStore) Count added in v0.17.0

func (qb *ImageStore) Count(ctx context.Context) (int, error)

func (*ImageStore) CountByFileID added in v0.17.0

func (qb *ImageStore) CountByFileID(ctx context.Context, fileID models.FileID) (int, error)

func (*ImageStore) CountByGalleryID added in v0.17.0

func (qb *ImageStore) CountByGalleryID(ctx context.Context, galleryID int) (int, error)

func (*ImageStore) Create added in v0.17.0

func (qb *ImageStore) Create(ctx context.Context, newObject *models.Image, fileIDs []models.FileID) error

func (*ImageStore) DecrementOCounter added in v0.17.0

func (qb *ImageStore) DecrementOCounter(ctx context.Context, id int) (int, error)

func (*ImageStore) Destroy added in v0.17.0

func (qb *ImageStore) Destroy(ctx context.Context, id int) error

func (*ImageStore) Find added in v0.17.0

func (qb *ImageStore) Find(ctx context.Context, id int) (*models.Image, error)

returns nil, nil if not found

func (*ImageStore) FindByChecksum added in v0.17.0

func (qb *ImageStore) FindByChecksum(ctx context.Context, checksum string) ([]*models.Image, error)

func (*ImageStore) FindByFileID added in v0.17.0

func (qb *ImageStore) FindByFileID(ctx context.Context, fileID models.FileID) ([]*models.Image, error)

func (*ImageStore) FindByFingerprints added in v0.17.0

func (qb *ImageStore) FindByFingerprints(ctx context.Context, fp []models.Fingerprint) ([]*models.Image, error)

func (*ImageStore) FindByFolderID added in v0.17.0

func (qb *ImageStore) FindByFolderID(ctx context.Context, folderID models.FolderID) ([]*models.Image, error)

func (*ImageStore) FindByGalleryID added in v0.17.0

func (qb *ImageStore) FindByGalleryID(ctx context.Context, galleryID int) ([]*models.Image, error)

func (*ImageStore) FindByZipFileID added in v0.17.0

func (qb *ImageStore) FindByZipFileID(ctx context.Context, zipFileID models.FileID) ([]*models.Image, error)

func (*ImageStore) FindMany added in v0.17.0

func (qb *ImageStore) FindMany(ctx context.Context, ids []int) ([]*models.Image, error)

func (*ImageStore) GetFiles added in v0.17.0

func (qb *ImageStore) GetFiles(ctx context.Context, id int) ([]models.File, error)

func (*ImageStore) GetGalleryIDs added in v0.17.0

func (qb *ImageStore) GetGalleryIDs(ctx context.Context, imageID int) ([]int, error)

func (*ImageStore) GetManyFileIDs added in v0.17.0

func (qb *ImageStore) GetManyFileIDs(ctx context.Context, ids []int) ([][]models.FileID, error)

func (*ImageStore) GetPerformerIDs added in v0.17.0

func (qb *ImageStore) GetPerformerIDs(ctx context.Context, imageID int) ([]int, error)

func (*ImageStore) GetTagIDs added in v0.17.0

func (qb *ImageStore) GetTagIDs(ctx context.Context, imageID int) ([]int, error)

func (*ImageStore) GetURLs added in v0.23.0

func (qb *ImageStore) GetURLs(ctx context.Context, imageID int) ([]string, error)

func (*ImageStore) IncrementOCounter added in v0.17.0

func (qb *ImageStore) IncrementOCounter(ctx context.Context, id int) (int, error)

func (*ImageStore) OCount added in v0.24.0

func (qb *ImageStore) OCount(ctx context.Context) (int, error)

func (*ImageStore) OCountByPerformerID added in v0.21.0

func (qb *ImageStore) OCountByPerformerID(ctx context.Context, performerID int) (int, error)

func (*ImageStore) Query added in v0.17.0

func (*ImageStore) QueryCount added in v0.17.0

func (qb *ImageStore) QueryCount(ctx context.Context, imageFilter *models.ImageFilterType, findFilter *models.FindFilterType) (int, error)

func (*ImageStore) ResetOCounter added in v0.17.0

func (qb *ImageStore) ResetOCounter(ctx context.Context, id int) (int, error)

func (*ImageStore) Size added in v0.17.0

func (qb *ImageStore) Size(ctx context.Context) (float64, error)

func (*ImageStore) Update added in v0.17.0

func (qb *ImageStore) Update(ctx context.Context, updatedObject *models.Image) error

func (*ImageStore) UpdatePartial added in v0.17.0

func (qb *ImageStore) UpdatePartial(ctx context.Context, id int, partial models.ImagePartial) (*models.Image, error)

func (*ImageStore) UpdatePerformers added in v0.17.0

func (qb *ImageStore) UpdatePerformers(ctx context.Context, imageID int, performerIDs []int) error

func (*ImageStore) UpdateTags added in v0.17.0

func (qb *ImageStore) UpdateTags(ctx context.Context, imageID int, tagIDs []int) error

type MigrationNeededError added in v0.17.0

type MigrationNeededError struct {
	CurrentSchemaVersion  uint
	RequiredSchemaVersion uint
}

ErrMigrationNeeded indicates that a database migration is needed before the database can be initialized

func (*MigrationNeededError) Error added in v0.17.0

func (e *MigrationNeededError) Error() string

type MismatchedSchemaVersionError added in v0.17.0

type MismatchedSchemaVersionError struct {
	CurrentSchemaVersion  uint
	RequiredSchemaVersion uint
}

func (*MismatchedSchemaVersionError) Error added in v0.17.0

type MovieStore added in v0.22.0

type MovieStore struct {
	// contains filtered or unexported fields
}

func NewMovieStore added in v0.22.0

func NewMovieStore(blobStore *BlobStore) *MovieStore

func (*MovieStore) All added in v0.22.0

func (qb *MovieStore) All(ctx context.Context) ([]*models.Movie, error)

func (*MovieStore) Count added in v0.22.0

func (qb *MovieStore) Count(ctx context.Context) (int, error)

func (*MovieStore) CountByPerformerID added in v0.22.0

func (qb *MovieStore) CountByPerformerID(ctx context.Context, performerID int) (int, error)

func (*MovieStore) CountByStudioID added in v0.22.0

func (qb *MovieStore) CountByStudioID(ctx context.Context, studioID int) (int, error)

func (*MovieStore) Create added in v0.22.0

func (qb *MovieStore) Create(ctx context.Context, newObject *models.Movie) error

func (*MovieStore) Destroy added in v0.22.0

func (qb *MovieStore) Destroy(ctx context.Context, id int) error

func (*MovieStore) DestroyImage added in v0.22.0

func (qb *MovieStore) DestroyImage(ctx context.Context, id int, blobCol string) error

func (*MovieStore) Find added in v0.22.0

func (qb *MovieStore) Find(ctx context.Context, id int) (*models.Movie, error)

returns nil, nil if not found

func (*MovieStore) FindByName added in v0.22.0

func (qb *MovieStore) FindByName(ctx context.Context, name string, nocase bool) (*models.Movie, error)

func (*MovieStore) FindByNames added in v0.22.0

func (qb *MovieStore) FindByNames(ctx context.Context, names []string, nocase bool) ([]*models.Movie, error)

func (*MovieStore) FindByPerformerID added in v0.22.0

func (qb *MovieStore) FindByPerformerID(ctx context.Context, performerID int) ([]*models.Movie, error)

func (*MovieStore) FindByStudioID added in v0.22.0

func (qb *MovieStore) FindByStudioID(ctx context.Context, studioID int) ([]*models.Movie, error)

func (*MovieStore) FindMany added in v0.22.0

func (qb *MovieStore) FindMany(ctx context.Context, ids []int) ([]*models.Movie, error)

func (*MovieStore) GetBackImage added in v0.22.0

func (qb *MovieStore) GetBackImage(ctx context.Context, movieID int) ([]byte, error)

func (*MovieStore) GetFrontImage added in v0.22.0

func (qb *MovieStore) GetFrontImage(ctx context.Context, movieID int) ([]byte, error)

func (*MovieStore) GetImage added in v0.22.0

func (qb *MovieStore) GetImage(ctx context.Context, id int, blobCol string) ([]byte, error)

func (*MovieStore) HasBackImage added in v0.22.0

func (qb *MovieStore) HasBackImage(ctx context.Context, movieID int) (bool, error)

func (*MovieStore) HasFrontImage added in v0.22.0

func (qb *MovieStore) HasFrontImage(ctx context.Context, movieID int) (bool, error)

func (*MovieStore) HasImage added in v0.22.0

func (qb *MovieStore) HasImage(ctx context.Context, id int, blobCol string) (bool, error)

func (*MovieStore) Query added in v0.22.0

func (qb *MovieStore) Query(ctx context.Context, movieFilter *models.MovieFilterType, findFilter *models.FindFilterType) ([]*models.Movie, int, error)

func (*MovieStore) QueryCount added in v0.22.0

func (qb *MovieStore) QueryCount(ctx context.Context, movieFilter *models.MovieFilterType, findFilter *models.FindFilterType) (int, error)

func (*MovieStore) Update added in v0.22.0

func (qb *MovieStore) Update(ctx context.Context, updatedObject *models.Movie) error

func (*MovieStore) UpdateBackImage added in v0.22.0

func (qb *MovieStore) UpdateBackImage(ctx context.Context, movieID int, backImage []byte) error

func (*MovieStore) UpdateFrontImage added in v0.22.0

func (qb *MovieStore) UpdateFrontImage(ctx context.Context, movieID int, frontImage []byte) error

func (*MovieStore) UpdateImage added in v0.22.0

func (qb *MovieStore) UpdateImage(ctx context.Context, id int, blobCol string, image []byte) error

func (*MovieStore) UpdatePartial added in v0.22.0

func (qb *MovieStore) UpdatePartial(ctx context.Context, id int, partial models.MoviePartial) (*models.Movie, error)

type NotFoundError added in v0.17.0

type NotFoundError struct {
	ID    int
	Table string
}

func (*NotFoundError) Error added in v0.17.0

func (e *NotFoundError) Error() string

type NullDate added in v0.22.0

type NullDate struct {
	Date  time.Time
	Valid bool
}

NullDate represents a nullable date stored as "YYYY-MM-DD"

func NullDateFromDatePtr added in v0.22.0

func NullDateFromDatePtr(d *models.Date) NullDate

func (*NullDate) DatePtr added in v0.22.0

func (d *NullDate) DatePtr() *models.Date

func (*NullDate) Scan added in v0.22.0

func (d *NullDate) Scan(value interface{}) error

Scan implements the Scanner interface.

func (NullDate) Value added in v0.22.0

func (d NullDate) Value() (driver.Value, error)

Value implements the driver Valuer interface.

type NullTimestamp added in v0.22.0

type NullTimestamp struct {
	Timestamp time.Time
	Valid     bool
}

NullTimestamp represents a nullable time stored in RFC3339 format.

func NullTimestampFromTimePtr added in v0.22.0

func NullTimestampFromTimePtr(t *time.Time) NullTimestamp

func (*NullTimestamp) Scan added in v0.22.0

func (t *NullTimestamp) Scan(value interface{}) error

Scan implements the Scanner interface.

func (NullTimestamp) TimePtr added in v0.22.0

func (t NullTimestamp) TimePtr() *time.Time

func (NullTimestamp) Value added in v0.22.0

func (t NullTimestamp) Value() (driver.Value, error)

Value implements the driver Valuer interface.

type PerformerStore added in v0.18.0

type PerformerStore struct {
	// contains filtered or unexported fields
}

func NewPerformerStore added in v0.18.0

func NewPerformerStore(blobStore *BlobStore) *PerformerStore

func (*PerformerStore) All added in v0.18.0

func (qb *PerformerStore) All(ctx context.Context) ([]*models.Performer, error)

func (*PerformerStore) Count added in v0.18.0

func (qb *PerformerStore) Count(ctx context.Context) (int, error)

func (*PerformerStore) CountByTagID added in v0.18.0

func (qb *PerformerStore) CountByTagID(ctx context.Context, tagID int) (int, error)

func (*PerformerStore) Create added in v0.18.0

func (qb *PerformerStore) Create(ctx context.Context, newObject *models.Performer) error

func (*PerformerStore) Destroy added in v0.18.0

func (qb *PerformerStore) Destroy(ctx context.Context, id int) error

func (*PerformerStore) DestroyImage added in v0.18.0

func (qb *PerformerStore) DestroyImage(ctx context.Context, id int, blobCol string) error

func (*PerformerStore) Find added in v0.18.0

func (qb *PerformerStore) Find(ctx context.Context, id int) (*models.Performer, error)

returns nil, nil if not found

func (*PerformerStore) FindByGalleryID added in v0.18.0

func (qb *PerformerStore) FindByGalleryID(ctx context.Context, galleryID int) ([]*models.Performer, error)

func (*PerformerStore) FindByImageID added in v0.18.0

func (qb *PerformerStore) FindByImageID(ctx context.Context, imageID int) ([]*models.Performer, error)

func (*PerformerStore) FindByNames added in v0.18.0

func (qb *PerformerStore) FindByNames(ctx context.Context, names []string, nocase bool) ([]*models.Performer, error)

func (*PerformerStore) FindBySceneID added in v0.18.0

func (qb *PerformerStore) FindBySceneID(ctx context.Context, sceneID int) ([]*models.Performer, error)

func (*PerformerStore) FindByStashID added in v0.18.0

func (qb *PerformerStore) FindByStashID(ctx context.Context, stashID models.StashID) ([]*models.Performer, error)

func (*PerformerStore) FindByStashIDStatus added in v0.18.0

func (qb *PerformerStore) FindByStashIDStatus(ctx context.Context, hasStashID bool, stashboxEndpoint string) ([]*models.Performer, error)

func (*PerformerStore) FindMany added in v0.18.0

func (qb *PerformerStore) FindMany(ctx context.Context, ids []int) ([]*models.Performer, error)

func (*PerformerStore) GetAliases added in v0.19.0

func (qb *PerformerStore) GetAliases(ctx context.Context, performerID int) ([]string, error)

func (*PerformerStore) GetImage added in v0.18.0

func (qb *PerformerStore) GetImage(ctx context.Context, performerID int) ([]byte, error)

func (*PerformerStore) GetStashIDs added in v0.18.0

func (qb *PerformerStore) GetStashIDs(ctx context.Context, performerID int) ([]models.StashID, error)

func (*PerformerStore) GetTagIDs added in v0.18.0

func (qb *PerformerStore) GetTagIDs(ctx context.Context, id int) ([]int, error)

func (*PerformerStore) HasImage added in v0.20.0

func (qb *PerformerStore) HasImage(ctx context.Context, performerID int) (bool, error)

func (*PerformerStore) Query added in v0.18.0

func (qb *PerformerStore) Query(ctx context.Context, performerFilter *models.PerformerFilterType, findFilter *models.FindFilterType) ([]*models.Performer, int, error)

func (*PerformerStore) QueryCount added in v0.19.0

func (qb *PerformerStore) QueryCount(ctx context.Context, performerFilter *models.PerformerFilterType, findFilter *models.FindFilterType) (int, error)

func (*PerformerStore) QueryForAutoTag added in v0.18.0

func (qb *PerformerStore) QueryForAutoTag(ctx context.Context, words []string) ([]*models.Performer, error)

func (*PerformerStore) Update added in v0.18.0

func (qb *PerformerStore) Update(ctx context.Context, updatedObject *models.Performer) error

func (*PerformerStore) UpdateImage added in v0.18.0

func (qb *PerformerStore) UpdateImage(ctx context.Context, performerID int, image []byte) error

func (*PerformerStore) UpdatePartial added in v0.18.0

func (qb *PerformerStore) UpdatePartial(ctx context.Context, id int, partial models.PerformerPartial) (*models.Performer, error)

type SavedFilterStore added in v0.22.0

type SavedFilterStore struct {
	// contains filtered or unexported fields
}

func NewSavedFilterStore added in v0.22.0

func NewSavedFilterStore() *SavedFilterStore

func (*SavedFilterStore) All added in v0.22.0

func (*SavedFilterStore) Create added in v0.22.0

func (qb *SavedFilterStore) Create(ctx context.Context, newObject *models.SavedFilter) error

func (*SavedFilterStore) Destroy added in v0.22.0

func (qb *SavedFilterStore) Destroy(ctx context.Context, id int) error

func (*SavedFilterStore) Find added in v0.22.0

func (qb *SavedFilterStore) Find(ctx context.Context, id int) (*models.SavedFilter, error)

returns nil, nil if not found

func (*SavedFilterStore) FindByMode added in v0.22.0

func (qb *SavedFilterStore) FindByMode(ctx context.Context, mode models.FilterMode) ([]*models.SavedFilter, error)

func (*SavedFilterStore) FindDefault added in v0.22.0

func (qb *SavedFilterStore) FindDefault(ctx context.Context, mode models.FilterMode) (*models.SavedFilter, error)

func (*SavedFilterStore) FindMany added in v0.22.0

func (qb *SavedFilterStore) FindMany(ctx context.Context, ids []int, ignoreNotFound bool) ([]*models.SavedFilter, error)

func (*SavedFilterStore) SetDefault added in v0.22.0

func (qb *SavedFilterStore) SetDefault(ctx context.Context, obj *models.SavedFilter) error

func (*SavedFilterStore) Update added in v0.22.0

func (qb *SavedFilterStore) Update(ctx context.Context, updatedObject *models.SavedFilter) error

type SceneMarkerStore added in v0.22.0

type SceneMarkerStore struct {
	// contains filtered or unexported fields
}

func NewSceneMarkerStore added in v0.22.0

func NewSceneMarkerStore() *SceneMarkerStore

func (*SceneMarkerStore) All added in v0.22.0

func (*SceneMarkerStore) Count added in v0.22.0

func (qb *SceneMarkerStore) Count(ctx context.Context) (int, error)

func (*SceneMarkerStore) CountByTagID added in v0.22.0

func (qb *SceneMarkerStore) CountByTagID(ctx context.Context, tagID int) (int, error)

func (*SceneMarkerStore) Create added in v0.22.0

func (qb *SceneMarkerStore) Create(ctx context.Context, newObject *models.SceneMarker) error

func (*SceneMarkerStore) Destroy added in v0.22.0

func (qb *SceneMarkerStore) Destroy(ctx context.Context, id int) error

func (*SceneMarkerStore) Find added in v0.22.0

func (qb *SceneMarkerStore) Find(ctx context.Context, id int) (*models.SceneMarker, error)

returns nil, nil if not found

func (*SceneMarkerStore) FindBySceneID added in v0.22.0

func (qb *SceneMarkerStore) FindBySceneID(ctx context.Context, sceneID int) ([]*models.SceneMarker, error)

func (*SceneMarkerStore) FindMany added in v0.22.0

func (qb *SceneMarkerStore) FindMany(ctx context.Context, ids []int) ([]*models.SceneMarker, error)

func (*SceneMarkerStore) GetMarkerStrings added in v0.22.0

func (qb *SceneMarkerStore) GetMarkerStrings(ctx context.Context, q *string, sort *string) ([]*models.MarkerStringsResultType, error)

func (*SceneMarkerStore) GetTagIDs added in v0.22.0

func (qb *SceneMarkerStore) GetTagIDs(ctx context.Context, id int) ([]int, error)

func (*SceneMarkerStore) Query added in v0.22.0

func (qb *SceneMarkerStore) Query(ctx context.Context, sceneMarkerFilter *models.SceneMarkerFilterType, findFilter *models.FindFilterType) ([]*models.SceneMarker, int, error)

func (*SceneMarkerStore) QueryCount added in v0.22.0

func (qb *SceneMarkerStore) QueryCount(ctx context.Context, sceneMarkerFilter *models.SceneMarkerFilterType, findFilter *models.FindFilterType) (int, error)

func (*SceneMarkerStore) Update added in v0.22.0

func (qb *SceneMarkerStore) Update(ctx context.Context, updatedObject *models.SceneMarker) error

func (*SceneMarkerStore) UpdatePartial added in v0.22.0

func (qb *SceneMarkerStore) UpdatePartial(ctx context.Context, id int, partial models.SceneMarkerPartial) (*models.SceneMarker, error)

func (*SceneMarkerStore) UpdateTags added in v0.22.0

func (qb *SceneMarkerStore) UpdateTags(ctx context.Context, id int, tagIDs []int) error

func (*SceneMarkerStore) Wall added in v0.22.0

func (qb *SceneMarkerStore) Wall(ctx context.Context, q *string) ([]*models.SceneMarker, error)

type SceneStore added in v0.17.0

type SceneStore struct {
	// contains filtered or unexported fields
}

func NewSceneStore added in v0.17.0

func NewSceneStore(fileStore *FileStore, blobStore *BlobStore) *SceneStore

func (*SceneStore) AddFileID added in v0.17.0

func (qb *SceneStore) AddFileID(ctx context.Context, id int, fileID models.FileID) error

func (*SceneStore) AddGalleryIDs added in v0.17.0

func (qb *SceneStore) AddGalleryIDs(ctx context.Context, sceneID int, galleryIDs []int) error

func (*SceneStore) AddO added in v0.25.0

func (qb *SceneStore) AddO(ctx context.Context, id int, dates []time.Time) ([]time.Time, error)

func (*SceneStore) AddViews added in v0.25.0

func (qb *SceneStore) AddViews(ctx context.Context, id int, dates []time.Time) ([]time.Time, error)

func (*SceneStore) All added in v0.17.0

func (qb *SceneStore) All(ctx context.Context) ([]*models.Scene, error)

func (*SceneStore) AssignFiles added in v0.18.0

func (qb *SceneStore) AssignFiles(ctx context.Context, sceneID int, fileIDs []models.FileID) error

func (*SceneStore) Count added in v0.17.0

func (qb *SceneStore) Count(ctx context.Context) (int, error)

func (*SceneStore) CountAllViews added in v0.25.0

func (qb *SceneStore) CountAllViews(ctx context.Context) (int, error)

func (*SceneStore) CountByFileID added in v0.17.0

func (qb *SceneStore) CountByFileID(ctx context.Context, fileID models.FileID) (int, error)

func (*SceneStore) CountByMovieID added in v0.17.0

func (qb *SceneStore) CountByMovieID(ctx context.Context, movieID int) (int, error)

func (*SceneStore) CountByPerformerID added in v0.17.0

func (qb *SceneStore) CountByPerformerID(ctx context.Context, performerID int) (int, error)

func (*SceneStore) CountByStudioID added in v0.17.0

func (qb *SceneStore) CountByStudioID(ctx context.Context, studioID int) (int, error)

func (*SceneStore) CountByTagID added in v0.17.0

func (qb *SceneStore) CountByTagID(ctx context.Context, tagID int) (int, error)

func (*SceneStore) CountMissingChecksum added in v0.17.0

func (qb *SceneStore) CountMissingChecksum(ctx context.Context) (int, error)

CountMissingChecksum returns the number of scenes missing a checksum value.

func (*SceneStore) CountMissingOSHash added in v0.17.0

func (qb *SceneStore) CountMissingOSHash(ctx context.Context) (int, error)

CountMissingOSHash returns the number of scenes missing an oshash value.

func (*SceneStore) CountUniqueViews added in v0.25.0

func (qb *SceneStore) CountUniqueViews(ctx context.Context) (int, error)

func (*SceneStore) CountViews added in v0.25.0

func (qb *SceneStore) CountViews(ctx context.Context, id int) (int, error)

func (*SceneStore) Create added in v0.17.0

func (qb *SceneStore) Create(ctx context.Context, newObject *models.Scene, fileIDs []models.FileID) error

func (*SceneStore) DeleteAllViews added in v0.25.0

func (qb *SceneStore) DeleteAllViews(ctx context.Context, id int) (int, error)

func (*SceneStore) DeleteO added in v0.25.0

func (qb *SceneStore) DeleteO(ctx context.Context, id int, dates []time.Time) ([]time.Time, error)

func (*SceneStore) DeleteViews added in v0.25.0

func (qb *SceneStore) DeleteViews(ctx context.Context, id int, dates []time.Time) ([]time.Time, error)

func (*SceneStore) Destroy added in v0.17.0

func (qb *SceneStore) Destroy(ctx context.Context, id int) error

func (*SceneStore) DestroyImage added in v0.20.0

func (qb *SceneStore) DestroyImage(ctx context.Context, id int, blobCol string) error

func (*SceneStore) Duration added in v0.17.0

func (qb *SceneStore) Duration(ctx context.Context) (float64, error)

func (*SceneStore) Find added in v0.17.0

func (qb *SceneStore) Find(ctx context.Context, id int) (*models.Scene, error)

returns nil, nil if not found

func (*SceneStore) FindByChecksum added in v0.17.0

func (qb *SceneStore) FindByChecksum(ctx context.Context, checksum string) ([]*models.Scene, error)

func (*SceneStore) FindByFileID added in v0.17.0

func (qb *SceneStore) FindByFileID(ctx context.Context, fileID models.FileID) ([]*models.Scene, error)

func (*SceneStore) FindByFingerprints added in v0.17.0

func (qb *SceneStore) FindByFingerprints(ctx context.Context, fp []models.Fingerprint) ([]*models.Scene, error)

func (*SceneStore) FindByGalleryID added in v0.17.0

func (qb *SceneStore) FindByGalleryID(ctx context.Context, galleryID int) ([]*models.Scene, error)

func (*SceneStore) FindByMovieID added in v0.17.0

func (qb *SceneStore) FindByMovieID(ctx context.Context, movieID int) ([]*models.Scene, error)

func (*SceneStore) FindByOSHash added in v0.17.0

func (qb *SceneStore) FindByOSHash(ctx context.Context, oshash string) ([]*models.Scene, error)

func (*SceneStore) FindByPath added in v0.17.0

func (qb *SceneStore) FindByPath(ctx context.Context, p string) ([]*models.Scene, error)

func (*SceneStore) FindByPerformerID added in v0.17.0

func (qb *SceneStore) FindByPerformerID(ctx context.Context, performerID int) ([]*models.Scene, error)

func (*SceneStore) FindByPrimaryFileID added in v0.17.0

func (qb *SceneStore) FindByPrimaryFileID(ctx context.Context, fileID models.FileID) ([]*models.Scene, error)

func (*SceneStore) FindDuplicates added in v0.17.0

func (qb *SceneStore) FindDuplicates(ctx context.Context, distance int, durationDiff float64) ([][]*models.Scene, error)

func (*SceneStore) FindMany added in v0.17.0

func (qb *SceneStore) FindMany(ctx context.Context, ids []int) ([]*models.Scene, error)

func (*SceneStore) GetAllOCount added in v0.25.0

func (qb *SceneStore) GetAllOCount(ctx context.Context) (int, error)

func (*SceneStore) GetCover added in v0.17.0

func (qb *SceneStore) GetCover(ctx context.Context, sceneID int) ([]byte, error)

func (*SceneStore) GetFiles added in v0.17.0

func (qb *SceneStore) GetFiles(ctx context.Context, id int) ([]*models.VideoFile, error)

func (*SceneStore) GetGalleryIDs added in v0.17.0

func (qb *SceneStore) GetGalleryIDs(ctx context.Context, id int) ([]int, error)

func (*SceneStore) GetImage added in v0.20.0

func (qb *SceneStore) GetImage(ctx context.Context, id int, blobCol string) ([]byte, error)

func (*SceneStore) GetManyFileIDs added in v0.17.0

func (qb *SceneStore) GetManyFileIDs(ctx context.Context, ids []int) ([][]models.FileID, error)

func (*SceneStore) GetManyLastViewed added in v0.25.0

func (qb *SceneStore) GetManyLastViewed(ctx context.Context, ids []int) ([]*time.Time, error)

func (*SceneStore) GetManyOCount added in v0.25.0

func (qb *SceneStore) GetManyOCount(ctx context.Context, ids []int) ([]int, error)

func (*SceneStore) GetManyODates added in v0.25.0

func (qb *SceneStore) GetManyODates(ctx context.Context, ids []int) ([][]time.Time, error)

func (*SceneStore) GetManyViewCount added in v0.25.0

func (qb *SceneStore) GetManyViewCount(ctx context.Context, ids []int) ([]int, error)

func (*SceneStore) GetManyViewDates added in v0.25.0

func (qb *SceneStore) GetManyViewDates(ctx context.Context, ids []int) ([][]time.Time, error)

func (*SceneStore) GetMovies added in v0.17.0

func (qb *SceneStore) GetMovies(ctx context.Context, id int) (ret []models.MoviesScenes, err error)

func (*SceneStore) GetOCount added in v0.25.0

func (qb *SceneStore) GetOCount(ctx context.Context, id int) (int, error)

func (*SceneStore) GetODates added in v0.25.0

func (qb *SceneStore) GetODates(ctx context.Context, id int) ([]time.Time, error)

func (*SceneStore) GetPerformerIDs added in v0.17.0

func (qb *SceneStore) GetPerformerIDs(ctx context.Context, id int) ([]int, error)

func (*SceneStore) GetStashIDs added in v0.17.0

func (qb *SceneStore) GetStashIDs(ctx context.Context, sceneID int) ([]models.StashID, error)

func (*SceneStore) GetTagIDs added in v0.17.0

func (qb *SceneStore) GetTagIDs(ctx context.Context, id int) ([]int, error)

func (*SceneStore) GetURLs added in v0.22.0

func (qb *SceneStore) GetURLs(ctx context.Context, sceneID int) ([]string, error)

func (*SceneStore) GetUniqueOCount added in v0.25.0

func (qb *SceneStore) GetUniqueOCount(ctx context.Context) (int, error)

func (*SceneStore) GetViewDates added in v0.25.0

func (qb *SceneStore) GetViewDates(ctx context.Context, id int) ([]time.Time, error)

func (*SceneStore) HasCover added in v0.20.0

func (qb *SceneStore) HasCover(ctx context.Context, sceneID int) (bool, error)

func (*SceneStore) HasImage added in v0.20.0

func (qb *SceneStore) HasImage(ctx context.Context, id int, blobCol string) (bool, error)

func (*SceneStore) LastView added in v0.25.0

func (qb *SceneStore) LastView(ctx context.Context, id int) (*time.Time, error)

func (*SceneStore) OCountByPerformerID added in v0.21.0

func (qb *SceneStore) OCountByPerformerID(ctx context.Context, performerID int) (int, error)

func (*SceneStore) PlayDuration added in v0.22.0

func (qb *SceneStore) PlayDuration(ctx context.Context) (float64, error)

func (*SceneStore) Query added in v0.17.0

func (*SceneStore) QueryCount added in v0.22.0

func (qb *SceneStore) QueryCount(ctx context.Context, sceneFilter *models.SceneFilterType, findFilter *models.FindFilterType) (int, error)

func (*SceneStore) ResetO added in v0.25.0

func (qb *SceneStore) ResetO(ctx context.Context, id int) (int, error)

func (*SceneStore) SaveActivity added in v0.18.0

func (qb *SceneStore) SaveActivity(ctx context.Context, id int, resumeTime *float64, playDuration *float64) (bool, error)

func (*SceneStore) Size added in v0.17.0

func (qb *SceneStore) Size(ctx context.Context) (float64, error)

func (*SceneStore) Update added in v0.17.0

func (qb *SceneStore) Update(ctx context.Context, updatedObject *models.Scene) error

func (*SceneStore) UpdateCover added in v0.17.0

func (qb *SceneStore) UpdateCover(ctx context.Context, sceneID int, image []byte) error

func (*SceneStore) UpdateImage added in v0.20.0

func (qb *SceneStore) UpdateImage(ctx context.Context, id int, blobCol string, image []byte) error

func (*SceneStore) UpdatePartial added in v0.17.0

func (qb *SceneStore) UpdatePartial(ctx context.Context, id int, partial models.ScenePartial) (*models.Scene, error)

func (*SceneStore) Wall added in v0.17.0

func (qb *SceneStore) Wall(ctx context.Context, q *string) ([]*models.Scene, error)

type StudioStore added in v0.22.0

type StudioStore struct {
	// contains filtered or unexported fields
}

func NewStudioStore added in v0.22.0

func NewStudioStore(blobStore *BlobStore) *StudioStore

func (*StudioStore) All added in v0.22.0

func (qb *StudioStore) All(ctx context.Context) ([]*models.Studio, error)

func (*StudioStore) Count added in v0.22.0

func (qb *StudioStore) Count(ctx context.Context) (int, error)

func (*StudioStore) Create added in v0.22.0

func (qb *StudioStore) Create(ctx context.Context, newObject *models.Studio) error

func (*StudioStore) Destroy added in v0.22.0

func (qb *StudioStore) Destroy(ctx context.Context, id int) error

func (*StudioStore) DestroyImage added in v0.22.0

func (qb *StudioStore) DestroyImage(ctx context.Context, id int, blobCol string) error

func (*StudioStore) Find added in v0.22.0

func (qb *StudioStore) Find(ctx context.Context, id int) (*models.Studio, error)

returns nil, nil if not found

func (*StudioStore) FindByName added in v0.22.0

func (qb *StudioStore) FindByName(ctx context.Context, name string, nocase bool) (*models.Studio, error)

func (*StudioStore) FindBySceneID added in v0.22.0

func (qb *StudioStore) FindBySceneID(ctx context.Context, sceneID int) (*models.Studio, error)

func (*StudioStore) FindByStashID added in v0.22.0

func (qb *StudioStore) FindByStashID(ctx context.Context, stashID models.StashID) ([]*models.Studio, error)

func (*StudioStore) FindByStashIDStatus added in v0.22.0

func (qb *StudioStore) FindByStashIDStatus(ctx context.Context, hasStashID bool, stashboxEndpoint string) ([]*models.Studio, error)

func (*StudioStore) FindChildren added in v0.22.0

func (qb *StudioStore) FindChildren(ctx context.Context, id int) ([]*models.Studio, error)

func (*StudioStore) FindMany added in v0.22.0

func (qb *StudioStore) FindMany(ctx context.Context, ids []int) ([]*models.Studio, error)

func (*StudioStore) GetAliases added in v0.22.0

func (qb *StudioStore) GetAliases(ctx context.Context, studioID int) ([]string, error)

func (*StudioStore) GetImage added in v0.22.0

func (qb *StudioStore) GetImage(ctx context.Context, studioID int) ([]byte, error)

func (*StudioStore) GetStashIDs added in v0.22.0

func (qb *StudioStore) GetStashIDs(ctx context.Context, studioID int) ([]models.StashID, error)

func (*StudioStore) HasImage added in v0.22.0

func (qb *StudioStore) HasImage(ctx context.Context, studioID int) (bool, error)

func (*StudioStore) Query added in v0.22.0

func (qb *StudioStore) Query(ctx context.Context, studioFilter *models.StudioFilterType, findFilter *models.FindFilterType) ([]*models.Studio, int, error)

func (*StudioStore) QueryForAutoTag added in v0.22.0

func (qb *StudioStore) QueryForAutoTag(ctx context.Context, words []string) ([]*models.Studio, error)

func (*StudioStore) Update added in v0.22.0

func (qb *StudioStore) Update(ctx context.Context, updatedObject *models.Studio) error

This is only used by the Import/Export functionality

func (*StudioStore) UpdateImage added in v0.22.0

func (qb *StudioStore) UpdateImage(ctx context.Context, studioID int, image []byte) error

func (*StudioStore) UpdatePartial added in v0.22.0

func (qb *StudioStore) UpdatePartial(ctx context.Context, input models.StudioPartial) (*models.Studio, error)

type TagStore added in v0.22.0

type TagStore struct {
	// contains filtered or unexported fields
}

func NewTagStore added in v0.22.0

func NewTagStore(blobStore *BlobStore) *TagStore

func (*TagStore) All added in v0.22.0

func (qb *TagStore) All(ctx context.Context) ([]*models.Tag, error)

func (*TagStore) Count added in v0.22.0

func (qb *TagStore) Count(ctx context.Context) (int, error)

func (*TagStore) CountByChildTagID added in v0.23.0

func (qb *TagStore) CountByChildTagID(ctx context.Context, childID int) (int, error)

func (*TagStore) CountByParentTagID added in v0.23.0

func (qb *TagStore) CountByParentTagID(ctx context.Context, parentID int) (int, error)

func (*TagStore) Create added in v0.22.0

func (qb *TagStore) Create(ctx context.Context, newObject *models.Tag) error

func (*TagStore) Destroy added in v0.22.0

func (qb *TagStore) Destroy(ctx context.Context, id int) error

func (*TagStore) DestroyImage added in v0.22.0

func (qb *TagStore) DestroyImage(ctx context.Context, id int, blobCol string) error

func (*TagStore) Find added in v0.22.0

func (qb *TagStore) Find(ctx context.Context, id int) (*models.Tag, error)

returns nil, nil if not found

func (*TagStore) FindAllAncestors added in v0.22.0

func (qb *TagStore) FindAllAncestors(ctx context.Context, tagID int, excludeIDs []int) ([]*models.TagPath, error)

FindAllAncestors returns a slice of TagPath objects, representing all ancestors of the tag with the provided id.

func (*TagStore) FindAllDescendants added in v0.22.0

func (qb *TagStore) FindAllDescendants(ctx context.Context, tagID int, excludeIDs []int) ([]*models.TagPath, error)

FindAllDescendants returns a slice of TagPath objects, representing all descendants of the tag with the provided id.

func (*TagStore) FindByChildTagID added in v0.22.0

func (qb *TagStore) FindByChildTagID(ctx context.Context, parentID int) ([]*models.Tag, error)

func (*TagStore) FindByGalleryID added in v0.22.0

func (qb *TagStore) FindByGalleryID(ctx context.Context, galleryID int) ([]*models.Tag, error)

func (*TagStore) FindByImageID added in v0.22.0

func (qb *TagStore) FindByImageID(ctx context.Context, imageID int) ([]*models.Tag, error)

func (*TagStore) FindByName added in v0.22.0

func (qb *TagStore) FindByName(ctx context.Context, name string, nocase bool) (*models.Tag, error)

func (*TagStore) FindByNames added in v0.22.0

func (qb *TagStore) FindByNames(ctx context.Context, names []string, nocase bool) ([]*models.Tag, error)

func (*TagStore) FindByParentTagID added in v0.22.0

func (qb *TagStore) FindByParentTagID(ctx context.Context, parentID int) ([]*models.Tag, error)

func (*TagStore) FindByPerformerID added in v0.22.0

func (qb *TagStore) FindByPerformerID(ctx context.Context, performerID int) ([]*models.Tag, error)

func (*TagStore) FindBySceneID added in v0.22.0

func (qb *TagStore) FindBySceneID(ctx context.Context, sceneID int) ([]*models.Tag, error)

func (*TagStore) FindBySceneMarkerID added in v0.22.0

func (qb *TagStore) FindBySceneMarkerID(ctx context.Context, sceneMarkerID int) ([]*models.Tag, error)

func (*TagStore) FindMany added in v0.22.0

func (qb *TagStore) FindMany(ctx context.Context, ids []int) ([]*models.Tag, error)

func (*TagStore) GetAliases added in v0.22.0

func (qb *TagStore) GetAliases(ctx context.Context, tagID int) ([]string, error)

func (*TagStore) GetImage added in v0.22.0

func (qb *TagStore) GetImage(ctx context.Context, tagID int) ([]byte, error)

func (*TagStore) HasImage added in v0.22.0

func (qb *TagStore) HasImage(ctx context.Context, tagID int) (bool, error)

func (*TagStore) Merge added in v0.22.0

func (qb *TagStore) Merge(ctx context.Context, source []int, destination int) error

func (*TagStore) Query added in v0.22.0

func (qb *TagStore) Query(ctx context.Context, tagFilter *models.TagFilterType, findFilter *models.FindFilterType) ([]*models.Tag, int, error)

func (*TagStore) QueryForAutoTag added in v0.22.0

func (qb *TagStore) QueryForAutoTag(ctx context.Context, words []string) ([]*models.Tag, error)

func (*TagStore) Update added in v0.22.0

func (qb *TagStore) Update(ctx context.Context, updatedObject *models.Tag) error

func (*TagStore) UpdateAliases added in v0.22.0

func (qb *TagStore) UpdateAliases(ctx context.Context, tagID int, aliases []string) error

func (*TagStore) UpdateChildTags added in v0.22.0

func (qb *TagStore) UpdateChildTags(ctx context.Context, tagID int, childIDs []int) error

func (*TagStore) UpdateImage added in v0.22.0

func (qb *TagStore) UpdateImage(ctx context.Context, tagID int, image []byte) error

func (*TagStore) UpdateParentTags added in v0.22.0

func (qb *TagStore) UpdateParentTags(ctx context.Context, tagID int, parentIDs []int) error

func (*TagStore) UpdatePartial added in v0.22.0

func (qb *TagStore) UpdatePartial(ctx context.Context, id int, partial models.TagPartial) (*models.Tag, error)

type Timestamp added in v0.22.0

type Timestamp struct {
	Timestamp time.Time
}

Timestamp represents a time stored in RFC3339 format.

func (*Timestamp) Scan added in v0.22.0

func (t *Timestamp) Scan(value interface{}) error

Scan implements the Scanner interface.

func (Timestamp) Value added in v0.22.0

func (t Timestamp) Value() (driver.Value, error)

Value implements the driver Valuer interface.

type UTCTimestamp added in v0.25.0

type UTCTimestamp struct {
	Timestamp
}

UTCTimestamp stores a time in UTC. TODO - Timestamp should use UTC by default

func (UTCTimestamp) Value added in v0.25.0

func (t UTCTimestamp) Value() (driver.Value, error)

Value implements the driver Valuer interface.

Directories

Path Synopsis

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL