fix: create default transcodings on existing installations

This commit is contained in:
Deluan 2020-03-17 16:49:37 -04:00
parent bc1f767123
commit 811703ab60
3 changed files with 13 additions and 4 deletions

View file

@ -12,6 +12,7 @@ type Transcodings []Transcoding
type TranscodingRepository interface {
Get(id string) (*Transcoding, error)
CountAll(...QueryOptions) (int64, error)
Put(*Transcoding) error
FindByFormat(format string) (*Transcoding, error)
}

View file

@ -28,6 +28,10 @@ func (r *transcodingRepository) Get(id string) (*model.Transcoding, error) {
return &res, err
}
func (r *transcodingRepository) CountAll(qo ...model.QueryOptions) (int64, error) {
return r.count(Select(), qo...)
}
func (r *transcodingRepository) FindByFormat(format string) (*model.Transcoding, error) {
sel := r.newSelect().Columns("*").Where(Eq{"target_format": format})
var res model.Transcoding

View file

@ -14,6 +14,10 @@ import (
func initialSetup(ds model.DataStore) {
_ = ds.WithTx(func(tx model.DataStore) error {
if err := createDefaultTranscodings(ds); err != nil {
return err
}
_, err := ds.Property(nil).Get(consts.InitialSetupFlagKey)
if err == nil {
return nil
@ -29,10 +33,6 @@ func initialSetup(ds model.DataStore) {
}
}
if err = createDefaultTranscodings(ds); err != nil {
return err
}
err = ds.Property(nil).Put(consts.InitialSetupFlagKey, time.Now().String())
return err
})
@ -83,6 +83,10 @@ func createJWTSecret(ds model.DataStore) error {
func createDefaultTranscodings(ds model.DataStore) error {
repo := ds.Transcoding(nil)
c, _ := repo.CountAll()
if c != 0 {
return nil
}
for _, d := range consts.DefaultTranscodings {
var j []byte
var err error