photoprism/internal/query/errors.go

27 lines
619 B
Go
Raw Normal View History

package query
import (
"strings"
"github.com/photoprism/photoprism/internal/entity"
)
// Errors returns the error log filtered with an optional search string.
func Errors(limit, offset int, s string) (results entity.Errors, err error) {
stmt := Db()
s = strings.TrimSpace(s)
if s == "errors" {
stmt = stmt.Where("error_level = 'error'")
} else if s == "warnings" {
stmt = stmt.Where("error_level = 'warning'")
} else if len(s) >= 3 {
stmt = stmt.Where("error_message LIKE ?", "%"+s+"%")
}
err = stmt.Order("error_time DESC").Limit(limit).Offset(offset).Find(&results).Error
return results, err
}