mirror of https://github.com/stashapp/stash.git
71 lines
1.0 KiB
Go
71 lines
1.0 KiB
Go
package sqlite
|
|
|
|
import (
|
|
"gopkg.in/guregu/null.v4"
|
|
|
|
"github.com/stashapp/stash/pkg/models"
|
|
)
|
|
|
|
// null package does not provide methods to convert null.Int to int pointer
|
|
func intFromPtr(i *int) null.Int {
|
|
if i == nil {
|
|
return null.NewInt(0, false)
|
|
}
|
|
|
|
return null.IntFrom(int64(*i))
|
|
}
|
|
|
|
func nullIntPtr(i null.Int) *int {
|
|
if !i.Valid {
|
|
return nil
|
|
}
|
|
|
|
v := int(i.Int64)
|
|
return &v
|
|
}
|
|
|
|
func nullFloatPtr(i null.Float) *float64 {
|
|
if !i.Valid {
|
|
return nil
|
|
}
|
|
|
|
v := float64(i.Float64)
|
|
return &v
|
|
}
|
|
|
|
func nullIntFolderIDPtr(i null.Int) *models.FolderID {
|
|
if !i.Valid {
|
|
return nil
|
|
}
|
|
|
|
v := models.FolderID(i.Int64)
|
|
|
|
return &v
|
|
}
|
|
|
|
func nullIntFileIDPtr(i null.Int) *models.FileID {
|
|
if !i.Valid {
|
|
return nil
|
|
}
|
|
|
|
v := models.FileID(i.Int64)
|
|
|
|
return &v
|
|
}
|
|
|
|
func nullIntFromFileIDPtr(i *models.FileID) null.Int {
|
|
if i == nil {
|
|
return null.NewInt(0, false)
|
|
}
|
|
|
|
return null.IntFrom(int64(*i))
|
|
}
|
|
|
|
func nullIntFromFolderIDPtr(i *models.FolderID) null.Int {
|
|
if i == nil {
|
|
return null.NewInt(0, false)
|
|
}
|
|
|
|
return null.IntFrom(int64(*i))
|
|
}
|