b62af742ae
Signed-off-by: Michael Mayer <michael@liquidbytes.net>
26 lines
619 B
Go
26 lines
619 B
Go
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
|
|
}
|