Files
photoprism/internal/entity/photo_quality.go
Ömer Duran 1e00d1f52e UX: Add batch edit dialog and API endpoints #271 #5324
Signed-off-by: Michael Mayer <michael@photoprism.app>
Co-authored-by: Michael Mayer <michael@photoprism.app>
Co-authored-by: graciousgrey <theresagresch@gmail.com>
2025-11-19 11:20:34 +01:00

92 lines
1.8 KiB
Go

package entity
import (
"strings"
"time"
"github.com/photoprism/photoprism/pkg/txt"
)
var NonPhotographicKeywords = map[string]bool{
"screenshot": true,
"screenshots": true,
"info": true,
}
var (
year2008 = time.Date(2008, 1, 1, 0, 0, 0, 0, time.UTC)
year2012 = time.Date(2012, 1, 1, 0, 0, 0, 0, time.UTC)
)
// QualityScore returns the heuristic review score derived from favorites, trusted metadata, age, and resolution.
func (m *Photo) QualityScore() (score int) {
if m.PhotoFavorite {
score += 3
}
if SrcPriority[m.TakenSrc] > SrcPriority[SrcEstimate] {
score++
}
if m.TrustedLocation() {
score++
}
if m.TakenAt.Before(year2008) {
score++
} else if m.TakenAt.Before(year2012) && m.PhotoResolution >= 1 {
score++
} else if m.PhotoResolution >= 2 {
score++
}
if !m.IsNonPhotographic() {
score++
}
if score < 3 && (m.PhotoType != MediaImage || m.EditedAt != nil) {
score = 3
}
return score
}
// UpdateQuality recomputes the quality score and persists it unless the photo is already deleted/invalid.
func (m *Photo) UpdateQuality() error {
if m.DeletedAt != nil || m.PhotoQuality < 0 {
return nil
}
m.PhotoQuality = m.QualityScore()
if !m.HasID() {
return nil
}
return m.Update("PhotoQuality", m.PhotoQuality)
}
// IsNonPhotographic checks whether the image looks like a non-photographic asset based on type and keywords.
func (m *Photo) IsNonPhotographic() (result bool) {
if m.PhotoType == MediaUnknown || m.PhotoType == MediaVector || m.PhotoType == MediaAnimated || m.PhotoType == MediaDocument {
return true
}
details := m.GetDetails()
if details.Keywords != "" {
keywords := txt.Words(details.Keywords)
for _, w := range keywords {
w = strings.ToLower(w)
if _, ok := NonPhotographicKeywords[w]; ok {
result = true
break
}
}
}
return result
}