photoprism/internal/api/upload.go

105 lines
2.2 KiB
Go
Raw Normal View History

2019-06-13 20:26:01 +02:00
package api
import (
"fmt"
"net/http"
"os"
"path"
2019-06-13 20:26:01 +02:00
"path/filepath"
"time"
"github.com/photoprism/photoprism/internal/config"
"github.com/photoprism/photoprism/internal/ling"
2019-06-13 20:26:01 +02:00
"github.com/gin-gonic/gin"
)
// POST /api/v1/upload/:path
2019-06-13 20:26:01 +02:00
func Upload(router *gin.RouterGroup, conf *config.Config) {
router.POST("/upload/:path", func(c *gin.Context) {
if conf.ReadOnly() {
c.AbortWithStatusJSON(http.StatusForbidden, ErrReadOnly)
return
}
if Unauthorized(c, conf) {
c.AbortWithStatusJSON(http.StatusUnauthorized, ErrUnauthorized)
return
}
2019-06-13 20:26:01 +02:00
start := time.Now()
subPath := c.Param("path")
2019-06-13 20:26:01 +02:00
f, err := c.MultipartForm()
2019-06-13 20:26:01 +02:00
if err != nil {
c.AbortWithStatusJSON(http.StatusBadRequest, gin.H{"error": ling.UcFirst(err.Error())})
2019-06-13 20:26:01 +02:00
return
}
files := f.File["files"]
uploaded := len(files)
var uploads []string
2019-06-13 20:26:01 +02:00
p := path.Join(conf.ImportPath(), "upload", subPath)
2019-06-13 20:26:01 +02:00
if err := os.MkdirAll(p, os.ModePerm); err != nil {
c.AbortWithStatusJSON(http.StatusBadRequest, gin.H{"error": ling.UcFirst(err.Error())})
2019-06-13 20:26:01 +02:00
return
}
for _, file := range files {
filename := path.Join(p, filepath.Base(file.Filename))
2019-06-13 20:26:01 +02:00
log.Debugf("upload: saving file \"%s\"", file.Filename)
2019-06-13 20:26:01 +02:00
if err := c.SaveUploadedFile(file, filename); err != nil {
c.AbortWithStatusJSON(http.StatusBadRequest, gin.H{"error": ling.UcFirst(err.Error())})
2019-06-13 20:26:01 +02:00
return
}
uploads = append(uploads, filename)
}
if !conf.UploadNSFW() {
initNsfwDetector(conf)
containsNSFW := false
for _, filename := range uploads {
labels, err := nd.LabelsFromFile(filename)
if err != nil {
log.Debug(err)
continue
}
if labels.IsSafe() {
continue
}
log.Infof("nsfw: \"%s\" might be offensive", filename)
containsNSFW = true
}
if containsNSFW {
for _, filename := range uploads {
if err := os.Remove(filename); err != nil {
log.Errorf("nsfw: could not delete \"%s\"", filename)
}
}
c.AbortWithStatusJSON(http.StatusForbidden, ErrUploadNSFW)
return
}
2019-06-13 20:26:01 +02:00
}
elapsed := time.Since(start)
log.Infof("%d files uploaded in %s", uploaded, elapsed)
2019-06-13 20:26:01 +02:00
c.JSON(http.StatusOK, gin.H{"message": fmt.Sprintf("%d files uploaded in %s", uploaded, elapsed)})
2019-06-13 20:26:01 +02:00
})
}