photoprism/internal/query/photo_counts.go
Michael Mayer 252e67ce03 Add photo_count column to labels table
Signed-off-by: Michael Mayer <michael@liquidbytes.net>
2020-05-09 11:00:22 +02:00

29 lines
856 B
Go

package query
import "github.com/jinzhu/gorm"
// UpdatePhotoCounts updates photos count in related tables as needed.
func UpdatePhotoCounts() error {
if err := Db().Table("places").
UpdateColumn("photo_count", gorm.Expr("(SELECT COUNT(*) FROM photos ph " +
"WHERE places.id = ph.place_id " +
"AND ph.photo_quality >= 0 " +
"AND ph.photo_private = 0 " +
"AND ph.deleted_at IS NULL)")).Error; err != nil {
return err
}
if err := Db().Table("labels").
UpdateColumn("photo_count", gorm.Expr("(SELECT COUNT(*) FROM photos_labels " +
"JOIN photos ph ON photos_labels.photo_id = ph.id " +
"WHERE photos_labels.label_id = labels.id " +
"AND photos_labels.uncertainty < 100 " +
"AND ph.photo_quality >= 0 " +
"AND ph.photo_private = 0 " +
"AND ph.deleted_at IS NULL)")).Error; err != nil {
return err
}
return nil
}