mirror of
https://github.com/photoprism/photoprism.git
synced 2025-10-07 17:51:30 +08:00
66 lines
1.5 KiB
Go
66 lines
1.5 KiB
Go
package entity
|
|
|
|
import (
|
|
"errors"
|
|
"reflect"
|
|
"strings"
|
|
|
|
"github.com/photoprism/photoprism/pkg/txt"
|
|
)
|
|
|
|
// Optimize the picture metadata based on the specified parameters.
|
|
func (m *Photo) Optimize(mergeMeta, mergeUuid, estimateLocation, force bool) (updated bool, merged Photos, err error) {
|
|
if !m.HasID() {
|
|
return false, merged, errors.New("photo: cannot maintain, id is empty")
|
|
}
|
|
|
|
current := *m
|
|
|
|
if m.HasLatLng() && !m.HasLocation() {
|
|
m.UpdateLocation()
|
|
}
|
|
|
|
if original, photos, mergeErr := m.Merge(mergeMeta, mergeUuid); mergeErr != nil {
|
|
return updated, merged, mergeErr
|
|
} else if len(photos) > 0 && original.ID == m.ID {
|
|
merged = photos
|
|
} else if len(photos) > 0 && original.ID != m.ID {
|
|
return false, photos, nil
|
|
}
|
|
|
|
// Estimate the location if it is unknown and this feature is enabled.
|
|
if estimateLocation && SrcPriority[m.PlaceSrc] <= SrcPriority[SrcEstimate] {
|
|
m.EstimateLocation(force)
|
|
}
|
|
|
|
// Get image classification labels.
|
|
labels := m.ClassifyLabels()
|
|
|
|
m.UpdateDateFields()
|
|
|
|
if updateErr := m.GenerateTitle(labels); updateErr != nil {
|
|
log.Info(updateErr)
|
|
}
|
|
|
|
details := m.GetDetails()
|
|
w := txt.UniqueWords(txt.Words(details.Keywords))
|
|
w = append(w, labels.Keywords()...)
|
|
details.Keywords = strings.Join(txt.UniqueWords(w), ", ")
|
|
|
|
if indexErr := m.IndexKeywords(); indexErr != nil {
|
|
log.Errorf("photo: %s", indexErr.Error())
|
|
}
|
|
|
|
m.PhotoQuality = m.QualityScore()
|
|
|
|
checked := Now()
|
|
|
|
if reflect.DeepEqual(*m, current) {
|
|
return false, merged, m.Update("CheckedAt", &checked)
|
|
}
|
|
|
|
m.CheckedAt = &checked
|
|
|
|
return true, merged, m.Save()
|
|
}
|