2019-06-15 01:35:18 +02:00
|
|
|
package api
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"net/http"
|
|
|
|
"time"
|
|
|
|
|
2019-06-18 07:28:30 +02:00
|
|
|
"github.com/jinzhu/gorm"
|
2019-06-15 01:35:18 +02:00
|
|
|
"github.com/photoprism/photoprism/internal/config"
|
2019-12-11 16:55:18 +01:00
|
|
|
"github.com/photoprism/photoprism/internal/entity"
|
2019-12-06 16:47:30 +01:00
|
|
|
"github.com/photoprism/photoprism/internal/event"
|
2019-12-05 19:21:35 +01:00
|
|
|
"github.com/photoprism/photoprism/internal/form"
|
2020-01-12 14:00:56 +01:00
|
|
|
"github.com/photoprism/photoprism/pkg/txt"
|
2019-06-15 01:35:18 +02:00
|
|
|
|
|
|
|
"github.com/gin-gonic/gin"
|
|
|
|
)
|
|
|
|
|
2020-01-09 02:09:54 +01:00
|
|
|
// POST /api/v1/batch/photos/archive
|
|
|
|
func BatchPhotosArchive(router *gin.RouterGroup, conf *config.Config) {
|
|
|
|
router.POST("/batch/photos/archive", func(c *gin.Context) {
|
2019-11-11 21:10:41 +01:00
|
|
|
if Unauthorized(c, conf) {
|
|
|
|
c.AbortWithStatusJSON(http.StatusUnauthorized, ErrUnauthorized)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2019-06-15 01:35:18 +02:00
|
|
|
start := time.Now()
|
|
|
|
|
2020-02-04 05:18:22 +01:00
|
|
|
var f form.Selection
|
2019-06-15 01:35:18 +02:00
|
|
|
|
2019-12-05 19:21:35 +01:00
|
|
|
if err := c.BindJSON(&f); err != nil {
|
2020-01-07 17:36:49 +01:00
|
|
|
c.AbortWithStatusJSON(http.StatusBadRequest, gin.H{"error": txt.UcFirst(err.Error())})
|
2019-06-18 06:37:10 +02:00
|
|
|
return
|
2019-06-15 01:35:18 +02:00
|
|
|
}
|
|
|
|
|
2019-12-05 19:21:35 +01:00
|
|
|
if len(f.Photos) == 0 {
|
2019-06-15 01:35:18 +02:00
|
|
|
log.Error("no photos selected")
|
2020-01-07 17:36:49 +01:00
|
|
|
c.AbortWithStatusJSON(http.StatusBadRequest, gin.H{"error": txt.UcFirst("no photos selected")})
|
2019-06-18 06:37:10 +02:00
|
|
|
return
|
2019-06-15 01:35:18 +02:00
|
|
|
}
|
|
|
|
|
2019-12-05 19:21:35 +01:00
|
|
|
log.Infof("deleting photos: %#v", f.Photos)
|
2019-06-15 01:35:18 +02:00
|
|
|
|
|
|
|
db := conf.Db()
|
|
|
|
|
2019-12-11 16:55:18 +01:00
|
|
|
db.Where("photo_uuid IN (?)", f.Photos).Delete(&entity.Photo{})
|
2019-06-15 01:35:18 +02:00
|
|
|
|
2019-12-06 16:47:30 +01:00
|
|
|
elapsed := int(time.Since(start).Seconds())
|
|
|
|
|
2020-01-06 05:45:03 +01:00
|
|
|
event.Publish("config.updated", event.Data(conf.ClientConfig()))
|
2019-12-11 04:12:54 +01:00
|
|
|
|
2020-01-30 18:19:26 +01:00
|
|
|
event.Publish("photos.archived", event.Data{
|
|
|
|
"entities": f.Photos,
|
|
|
|
})
|
|
|
|
|
2020-01-09 02:09:54 +01:00
|
|
|
c.JSON(http.StatusOK, gin.H{"message": fmt.Sprintf("photos archived in %d s", elapsed)})
|
2019-12-06 16:47:30 +01:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2020-01-06 05:45:03 +01:00
|
|
|
// POST /api/v1/batch/photos/restore
|
|
|
|
func BatchPhotosRestore(router *gin.RouterGroup, conf *config.Config) {
|
|
|
|
router.POST("/batch/photos/restore", func(c *gin.Context) {
|
|
|
|
if Unauthorized(c, conf) {
|
|
|
|
c.AbortWithStatusJSON(http.StatusUnauthorized, ErrUnauthorized)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
start := time.Now()
|
|
|
|
|
2020-02-04 05:18:22 +01:00
|
|
|
var f form.Selection
|
2020-01-06 05:45:03 +01:00
|
|
|
|
|
|
|
if err := c.BindJSON(&f); err != nil {
|
2020-01-07 17:36:49 +01:00
|
|
|
c.AbortWithStatusJSON(http.StatusBadRequest, gin.H{"error": txt.UcFirst(err.Error())})
|
2020-01-06 05:45:03 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(f.Photos) == 0 {
|
|
|
|
log.Error("no photos selected")
|
2020-01-07 17:36:49 +01:00
|
|
|
c.AbortWithStatusJSON(http.StatusBadRequest, gin.H{"error": txt.UcFirst("no photos selected")})
|
2020-01-06 05:45:03 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
log.Infof("restoring photos: %#v", f.Photos)
|
|
|
|
|
|
|
|
db := conf.Db()
|
|
|
|
|
|
|
|
db.Unscoped().Model(&entity.Photo{}).Where("photo_uuid IN (?)", f.Photos).
|
|
|
|
UpdateColumn("deleted_at", gorm.Expr("NULL"))
|
|
|
|
|
|
|
|
elapsed := int(time.Since(start).Seconds())
|
|
|
|
|
|
|
|
event.Publish("config.updated", event.Data(conf.ClientConfig()))
|
|
|
|
|
2020-01-30 18:19:26 +01:00
|
|
|
event.Publish("photos.restored", event.Data{
|
|
|
|
"entities": f.Photos,
|
|
|
|
})
|
|
|
|
|
2020-01-06 05:45:03 +01:00
|
|
|
c.JSON(http.StatusOK, gin.H{"message": fmt.Sprintf("photos restored in %d s", elapsed)})
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2019-12-06 16:47:30 +01:00
|
|
|
// POST /api/v1/batch/albums/delete
|
|
|
|
func BatchAlbumsDelete(router *gin.RouterGroup, conf *config.Config) {
|
|
|
|
router.POST("/batch/albums/delete", func(c *gin.Context) {
|
|
|
|
if Unauthorized(c, conf) {
|
|
|
|
c.AbortWithStatusJSON(http.StatusUnauthorized, ErrUnauthorized)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2020-02-04 05:18:22 +01:00
|
|
|
var f form.Selection
|
2019-12-06 16:47:30 +01:00
|
|
|
|
|
|
|
if err := c.BindJSON(&f); err != nil {
|
2020-01-07 17:36:49 +01:00
|
|
|
c.AbortWithStatusJSON(http.StatusBadRequest, gin.H{"error": txt.UcFirst(err.Error())})
|
2019-12-06 16:47:30 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(f.Albums) == 0 {
|
|
|
|
log.Error("no albums selected")
|
2020-01-07 17:36:49 +01:00
|
|
|
c.AbortWithStatusJSON(http.StatusBadRequest, gin.H{"error": txt.UcFirst("no albums selected")})
|
2019-12-06 16:47:30 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
log.Infof("deleting albums: %#v", f.Albums)
|
|
|
|
|
|
|
|
db := conf.Db()
|
|
|
|
|
2019-12-11 16:55:18 +01:00
|
|
|
db.Where("album_uuid IN (?)", f.Albums).Delete(&entity.Album{})
|
|
|
|
db.Where("album_uuid IN (?)", f.Albums).Delete(&entity.PhotoAlbum{})
|
2019-12-06 16:47:30 +01:00
|
|
|
|
|
|
|
event.Publish("config.updated", event.Data(conf.ClientConfig()))
|
2019-06-15 01:35:18 +02:00
|
|
|
|
2020-01-30 18:19:26 +01:00
|
|
|
event.Publish("albums.deleted", event.Data{
|
|
|
|
"entities": f.Albums,
|
|
|
|
})
|
|
|
|
|
2019-12-06 16:47:30 +01:00
|
|
|
c.JSON(http.StatusOK, gin.H{"message": fmt.Sprintf("albums deleted")})
|
2019-06-15 01:35:18 +02:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2019-06-15 03:44:10 +02:00
|
|
|
// POST /api/v1/batch/photos/private
|
|
|
|
func BatchPhotosPrivate(router *gin.RouterGroup, conf *config.Config) {
|
|
|
|
router.POST("/batch/photos/private", func(c *gin.Context) {
|
2019-11-11 21:10:41 +01:00
|
|
|
if Unauthorized(c, conf) {
|
|
|
|
c.AbortWithStatusJSON(http.StatusUnauthorized, ErrUnauthorized)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2019-06-15 01:35:18 +02:00
|
|
|
start := time.Now()
|
|
|
|
|
2020-02-04 05:18:22 +01:00
|
|
|
var f form.Selection
|
2019-06-15 01:35:18 +02:00
|
|
|
|
2019-12-05 19:21:35 +01:00
|
|
|
if err := c.BindJSON(&f); err != nil {
|
2020-01-07 17:36:49 +01:00
|
|
|
c.AbortWithStatusJSON(http.StatusBadRequest, gin.H{"error": txt.UcFirst(err.Error())})
|
2019-06-18 06:37:10 +02:00
|
|
|
return
|
2019-06-15 01:35:18 +02:00
|
|
|
}
|
|
|
|
|
2019-12-05 19:21:35 +01:00
|
|
|
if len(f.Photos) == 0 {
|
2019-06-15 01:35:18 +02:00
|
|
|
log.Error("no photos selected")
|
2020-01-07 17:36:49 +01:00
|
|
|
c.AbortWithStatusJSON(http.StatusBadRequest, gin.H{"error": txt.UcFirst("no photos selected")})
|
2019-06-18 06:37:10 +02:00
|
|
|
return
|
2019-06-15 01:35:18 +02:00
|
|
|
}
|
|
|
|
|
2019-12-05 19:21:35 +01:00
|
|
|
log.Infof("marking photos as private: %#v", f.Photos)
|
2019-06-15 01:35:18 +02:00
|
|
|
|
|
|
|
db := conf.Db()
|
|
|
|
|
2019-12-11 16:55:18 +01:00
|
|
|
db.Model(entity.Photo{}).Where("photo_uuid IN (?)", f.Photos).UpdateColumn("photo_private", gorm.Expr("IF (`photo_private`, 0, 1)"))
|
2019-06-15 01:35:18 +02:00
|
|
|
|
|
|
|
elapsed := time.Since(start)
|
|
|
|
|
2019-06-15 03:44:10 +02:00
|
|
|
c.JSON(http.StatusOK, gin.H{"message": fmt.Sprintf("photos marked as private in %s", elapsed)})
|
2019-06-15 01:35:18 +02:00
|
|
|
})
|
|
|
|
}
|
2019-06-18 07:28:30 +02:00
|
|
|
|
|
|
|
// POST /api/v1/batch/photos/story
|
|
|
|
func BatchPhotosStory(router *gin.RouterGroup, conf *config.Config) {
|
|
|
|
router.POST("/batch/photos/story", func(c *gin.Context) {
|
2019-11-11 21:10:41 +01:00
|
|
|
if Unauthorized(c, conf) {
|
|
|
|
c.AbortWithStatusJSON(http.StatusUnauthorized, ErrUnauthorized)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2019-06-18 07:28:30 +02:00
|
|
|
start := time.Now()
|
|
|
|
|
2020-02-04 05:18:22 +01:00
|
|
|
var f form.Selection
|
2019-06-18 07:28:30 +02:00
|
|
|
|
2019-12-05 19:21:35 +01:00
|
|
|
if err := c.BindJSON(&f); err != nil {
|
2020-01-07 17:36:49 +01:00
|
|
|
c.AbortWithStatusJSON(http.StatusBadRequest, gin.H{"error": txt.UcFirst(err.Error())})
|
2019-06-18 07:28:30 +02:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2019-12-05 19:21:35 +01:00
|
|
|
if len(f.Photos) == 0 {
|
2019-06-18 07:28:30 +02:00
|
|
|
log.Error("no photos selected")
|
2020-01-07 17:36:49 +01:00
|
|
|
c.AbortWithStatusJSON(http.StatusBadRequest, gin.H{"error": txt.UcFirst("no photos selected")})
|
2019-06-18 07:28:30 +02:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2019-12-05 19:21:35 +01:00
|
|
|
log.Infof("marking photos as story: %#v", f.Photos)
|
2019-06-18 07:28:30 +02:00
|
|
|
|
|
|
|
db := conf.Db()
|
|
|
|
|
2019-12-11 16:55:18 +01:00
|
|
|
db.Model(entity.Photo{}).Where("photo_uuid IN (?)", f.Photos).Updates(map[string]interface{}{
|
2019-12-05 19:21:35 +01:00
|
|
|
"photo_story": gorm.Expr("IF (`photo_story`, 0, 1)"),
|
2019-06-18 07:28:30 +02:00
|
|
|
})
|
|
|
|
|
|
|
|
elapsed := time.Since(start)
|
|
|
|
|
|
|
|
c.JSON(http.StatusOK, gin.H{"message": fmt.Sprintf("photos marked as story in %s", elapsed)})
|
|
|
|
})
|
|
|
|
}
|
2020-02-04 05:18:22 +01:00
|
|
|
|
|
|
|
// POST /api/v1/batch/labels/delete
|
|
|
|
func BatchLabelsDelete(router *gin.RouterGroup, conf *config.Config) {
|
|
|
|
router.POST("/batch/labels/delete", func(c *gin.Context) {
|
|
|
|
if Unauthorized(c, conf) {
|
|
|
|
c.AbortWithStatusJSON(http.StatusUnauthorized, ErrUnauthorized)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
var f form.Selection
|
|
|
|
|
|
|
|
if err := c.BindJSON(&f); err != nil {
|
|
|
|
c.AbortWithStatusJSON(http.StatusBadRequest, gin.H{"error": txt.UcFirst(err.Error())})
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(f.Labels) == 0 {
|
|
|
|
log.Error("no labels selected")
|
|
|
|
c.AbortWithStatusJSON(http.StatusBadRequest, gin.H{"error": txt.UcFirst("no labels selected")})
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
log.Infof("deleting labels: %#v", f.Labels)
|
|
|
|
|
|
|
|
db := conf.Db()
|
|
|
|
|
|
|
|
db.Where("label_uuid IN (?)", f.Labels).Delete(&entity.Label{})
|
|
|
|
|
|
|
|
event.Publish("config.updated", event.Data(conf.ClientConfig()))
|
|
|
|
|
|
|
|
event.Publish("labels.deleted", event.Data{
|
|
|
|
"entities": f.Labels,
|
|
|
|
})
|
|
|
|
|
|
|
|
c.JSON(http.StatusOK, gin.H{"message": fmt.Sprintf("labels deleted")})
|
|
|
|
})
|
|
|
|
}
|