e3bb8b19dd
Also improves migrations and updates the db schema docs. Signed-off-by: Michael Mayer <michael@photoprism.app>
118 lines
2.6 KiB
Go
118 lines
2.6 KiB
Go
package api
|
|
|
|
import (
|
|
"net/http"
|
|
"os"
|
|
"path"
|
|
"path/filepath"
|
|
"time"
|
|
|
|
"github.com/gin-gonic/gin"
|
|
"github.com/photoprism/photoprism/internal/acl"
|
|
"github.com/photoprism/photoprism/internal/event"
|
|
"github.com/photoprism/photoprism/internal/get"
|
|
"github.com/photoprism/photoprism/internal/i18n"
|
|
"github.com/photoprism/photoprism/pkg/clean"
|
|
)
|
|
|
|
// Upload adds files to the import folder, from where supported file types are moved to the originals folders.
|
|
//
|
|
// POST /api/v1/upload/:path
|
|
func Upload(router *gin.RouterGroup) {
|
|
router.POST("/upload/:token", func(c *gin.Context) {
|
|
conf := get.Config()
|
|
|
|
if conf.ReadOnly() || !conf.Settings().Features.Upload {
|
|
Abort(c, http.StatusForbidden, i18n.ErrReadOnly)
|
|
return
|
|
}
|
|
|
|
s := AuthAny(c, acl.ResourceFiles, acl.Permissions{acl.ActionManage, acl.ActionUpload})
|
|
|
|
if s.Abort(c) {
|
|
return
|
|
}
|
|
|
|
start := time.Now()
|
|
token := clean.Token(c.Param("token"))
|
|
|
|
f, err := c.MultipartForm()
|
|
|
|
if err != nil {
|
|
log.Errorf("upload: %s", err)
|
|
AbortBadRequest(c)
|
|
return
|
|
}
|
|
|
|
event.Publish("upload.start", event.Data{"time": start})
|
|
|
|
files := f.File["files"]
|
|
uploaded := len(files)
|
|
|
|
var uploads []string
|
|
|
|
uploadDir := path.Join(conf.ImportPath(), UploadPath, s.RefID+token)
|
|
|
|
if err = os.MkdirAll(uploadDir, os.ModePerm); err != nil {
|
|
log.Errorf("upload: failed creating folder %s", clean.Log(filepath.Base(uploadDir)))
|
|
AbortBadRequest(c)
|
|
return
|
|
}
|
|
|
|
for _, file := range files {
|
|
filename := path.Join(uploadDir, filepath.Base(file.Filename))
|
|
|
|
log.Debugf("upload: saving file %s", clean.Log(file.Filename))
|
|
|
|
if err := c.SaveUploadedFile(file, filename); err != nil {
|
|
log.Errorf("upload: failed saving file %s", clean.Log(filepath.Base(file.Filename)))
|
|
AbortBadRequest(c)
|
|
return
|
|
}
|
|
|
|
uploads = append(uploads, filename)
|
|
}
|
|
|
|
if !conf.UploadNSFW() {
|
|
nd := get.NsfwDetector()
|
|
|
|
containsNSFW := false
|
|
|
|
for _, filename := range uploads {
|
|
labels, err := nd.File(filename)
|
|
|
|
if err != nil {
|
|
log.Debug(err)
|
|
continue
|
|
}
|
|
|
|
if labels.IsSafe() {
|
|
continue
|
|
}
|
|
|
|
log.Infof("nsfw: %s might be offensive", clean.Log(filename))
|
|
|
|
containsNSFW = true
|
|
}
|
|
|
|
if containsNSFW {
|
|
for _, filename := range uploads {
|
|
if err := os.Remove(filename); err != nil {
|
|
log.Errorf("nsfw: could not delete %s", clean.Log(filename))
|
|
}
|
|
}
|
|
|
|
Abort(c, http.StatusForbidden, i18n.ErrOffensiveUpload)
|
|
return
|
|
}
|
|
}
|
|
|
|
elapsed := int(time.Since(start).Seconds())
|
|
|
|
msg := i18n.Msg(i18n.MsgFilesUploadedIn, uploaded, elapsed)
|
|
|
|
log.Info(msg)
|
|
|
|
c.JSON(http.StatusOK, i18n.Response{Code: http.StatusOK, Msg: msg})
|
|
})
|
|
}
|