cfa369cf17
Signed-off-by: Michael Mayer <michael@liquidbytes.net>
137 lines
3.2 KiB
Go
137 lines
3.2 KiB
Go
package api
|
|
|
|
import (
|
|
"net/http"
|
|
"os"
|
|
"path/filepath"
|
|
"strings"
|
|
"time"
|
|
|
|
"github.com/gin-gonic/gin"
|
|
"github.com/photoprism/photoprism/internal/acl"
|
|
"github.com/photoprism/photoprism/internal/entity"
|
|
"github.com/photoprism/photoprism/internal/event"
|
|
"github.com/photoprism/photoprism/internal/form"
|
|
"github.com/photoprism/photoprism/internal/i18n"
|
|
"github.com/photoprism/photoprism/internal/photoprism"
|
|
"github.com/photoprism/photoprism/internal/service"
|
|
"github.com/photoprism/photoprism/pkg/fs"
|
|
"github.com/photoprism/photoprism/pkg/txt"
|
|
)
|
|
|
|
// POST /api/v1/import*
|
|
func StartImport(router *gin.RouterGroup) {
|
|
router.POST("/import/*path", func(c *gin.Context) {
|
|
s := Auth(SessionID(c), acl.ResourcePhotos, acl.ActionImport)
|
|
|
|
if s.Invalid() {
|
|
AbortUnauthorized(c)
|
|
return
|
|
}
|
|
|
|
conf := service.Config()
|
|
|
|
if conf.ReadOnly() || !conf.Settings().Features.Import {
|
|
AbortFeatureDisabled(c)
|
|
return
|
|
}
|
|
|
|
start := time.Now()
|
|
|
|
var f form.ImportOptions
|
|
|
|
if err := c.BindJSON(&f); err != nil {
|
|
AbortBadRequest(c)
|
|
return
|
|
}
|
|
|
|
subPath := ""
|
|
path := conf.ImportPath()
|
|
|
|
if subPath = c.Param("path"); subPath != "" && subPath != "/" {
|
|
subPath = strings.Replace(subPath, ".", "", -1)
|
|
path = filepath.Join(path, subPath)
|
|
} else if f.Path != "" {
|
|
subPath = strings.Replace(f.Path, ".", "", -1)
|
|
path = filepath.Join(path, subPath)
|
|
}
|
|
|
|
path = filepath.Clean(path)
|
|
|
|
imp := service.Import()
|
|
|
|
ClearFoldersCache(entity.RootImport)
|
|
|
|
var opt photoprism.ImportOptions
|
|
|
|
if f.Move {
|
|
event.InfoMsg(i18n.MsgMovingFilesFrom, txt.Quote(filepath.Base(path)))
|
|
opt = photoprism.ImportOptionsMove(path)
|
|
} else {
|
|
event.InfoMsg(i18n.MsgCopyingFilesFrom, txt.Quote(filepath.Base(path)))
|
|
opt = photoprism.ImportOptionsCopy(path)
|
|
}
|
|
|
|
if len(f.Albums) > 0 {
|
|
log.Debugf("import: files will be added to album %s", strings.Join(f.Albums, " and "))
|
|
opt.Albums = f.Albums
|
|
}
|
|
|
|
imp.Start(opt)
|
|
|
|
if subPath != "" && path != conf.ImportPath() && fs.IsEmpty(path) {
|
|
if err := os.Remove(path); err != nil {
|
|
log.Errorf("import: failed deleting empty folder %s: %s", txt.Quote(path), err)
|
|
} else {
|
|
log.Infof("import: deleted empty folder %s", txt.Quote(path))
|
|
}
|
|
}
|
|
|
|
moments := service.Moments()
|
|
|
|
if err := moments.Start(); err != nil {
|
|
log.Warnf("moments: %s", err)
|
|
}
|
|
|
|
elapsed := int(time.Since(start).Seconds())
|
|
|
|
msg := i18n.Msg(i18n.MsgImportCompletedIn, elapsed)
|
|
|
|
event.Success(msg)
|
|
event.Publish("import.completed", event.Data{"path": path, "seconds": elapsed})
|
|
event.Publish("index.completed", event.Data{"path": path, "seconds": elapsed})
|
|
|
|
for _, uid := range f.Albums {
|
|
PublishAlbumEvent(EntityUpdated, uid, c)
|
|
}
|
|
|
|
UpdateClientConfig()
|
|
|
|
c.JSON(http.StatusOK, i18n.Response{Code: http.StatusOK, Msg: msg})
|
|
})
|
|
}
|
|
|
|
// DELETE /api/v1/import
|
|
func CancelImport(router *gin.RouterGroup) {
|
|
router.DELETE("/import", func(c *gin.Context) {
|
|
s := Auth(SessionID(c), acl.ResourcePhotos, acl.ActionImport)
|
|
|
|
if s.Invalid() {
|
|
AbortUnauthorized(c)
|
|
return
|
|
}
|
|
|
|
conf := service.Config()
|
|
|
|
if conf.ReadOnly() || !conf.Settings().Features.Import {
|
|
AbortFeatureDisabled(c)
|
|
return
|
|
}
|
|
|
|
imp := service.Import()
|
|
|
|
imp.Cancel()
|
|
|
|
c.JSON(http.StatusOK, i18n.NewResponse(http.StatusOK, i18n.MsgImportCanceled))
|
|
})
|
|
}
|