717da1bd34
There is no UI for this setting yet.
172 lines
4.1 KiB
Go
172 lines
4.1 KiB
Go
package api
|
|
|
|
import (
|
|
"archive/zip"
|
|
"fmt"
|
|
"io"
|
|
"net/http"
|
|
"os"
|
|
"path"
|
|
"path/filepath"
|
|
"time"
|
|
|
|
"github.com/photoprism/photoprism/internal/acl"
|
|
"github.com/photoprism/photoprism/internal/form"
|
|
"github.com/photoprism/photoprism/internal/i18n"
|
|
"github.com/photoprism/photoprism/internal/photoprism"
|
|
"github.com/photoprism/photoprism/internal/query"
|
|
"github.com/photoprism/photoprism/internal/service"
|
|
"github.com/photoprism/photoprism/pkg/fs"
|
|
"github.com/photoprism/photoprism/pkg/rnd"
|
|
"github.com/photoprism/photoprism/pkg/txt"
|
|
|
|
"github.com/gin-gonic/gin"
|
|
)
|
|
|
|
// POST /api/v1/zip
|
|
func CreateZip(router *gin.RouterGroup) {
|
|
router.POST("/zip", func(c *gin.Context) {
|
|
s := Auth(SessionID(c), acl.ResourcePhotos, acl.ActionDownload)
|
|
|
|
if s.Invalid() {
|
|
AbortUnauthorized(c)
|
|
return
|
|
}
|
|
|
|
conf := service.Config()
|
|
|
|
if !conf.Settings().Features.Download {
|
|
AbortFeatureDisabled(c)
|
|
return
|
|
}
|
|
|
|
var f form.Selection
|
|
start := time.Now()
|
|
|
|
if err := c.BindJSON(&f); err != nil {
|
|
AbortBadRequest(c)
|
|
return
|
|
}
|
|
|
|
if f.Empty() {
|
|
Abort(c, http.StatusBadRequest, i18n.ErrNoItemsSelected)
|
|
return
|
|
}
|
|
|
|
files, err := query.FileSelection(f)
|
|
|
|
if err != nil {
|
|
Error(c, http.StatusBadRequest, err, i18n.ErrZipFailed)
|
|
return
|
|
} else if len(files) == 0 {
|
|
Abort(c, http.StatusNotFound, i18n.ErrNoFilesForDownload)
|
|
return
|
|
}
|
|
|
|
zipPath := path.Join(conf.TempPath(), "zip")
|
|
zipToken := rnd.Token(3)
|
|
zipYear := time.Now().Format("January-2006")
|
|
zipBaseName := fmt.Sprintf("Photos-%s-%s.zip", zipYear, zipToken)
|
|
zipFileName := path.Join(zipPath, zipBaseName)
|
|
|
|
if err := os.MkdirAll(zipPath, 0700); err != nil {
|
|
Error(c, http.StatusInternalServerError, err, i18n.ErrZipFailed)
|
|
return
|
|
}
|
|
|
|
newZipFile, err := os.Create(zipFileName)
|
|
|
|
if err != nil {
|
|
Error(c, http.StatusInternalServerError, err, i18n.ErrZipFailed)
|
|
return
|
|
}
|
|
|
|
defer newZipFile.Close()
|
|
|
|
zipWriter := zip.NewWriter(newZipFile)
|
|
defer zipWriter.Close()
|
|
|
|
for _, f := range files {
|
|
fileName := photoprism.FileName(f.FileRoot, f.FileName)
|
|
fileAlias := f.ShareBase()
|
|
|
|
if fs.FileExists(fileName) {
|
|
if err := addFileToZip(zipWriter, fileName, fileAlias); err != nil {
|
|
Error(c, http.StatusInternalServerError, err, i18n.ErrZipFailed)
|
|
return
|
|
}
|
|
log.Infof("zip: added %s as %s", txt.Quote(f.FileName), txt.Quote(fileAlias))
|
|
} else {
|
|
log.Warnf("zip: file %s is missing", txt.Quote(f.FileName))
|
|
logError("zip", f.Update("FileMissing", true))
|
|
}
|
|
}
|
|
|
|
elapsed := int(time.Since(start).Seconds())
|
|
|
|
log.Infof("zip: archive %s created in %s", txt.Quote(zipBaseName), time.Since(start))
|
|
|
|
c.JSON(http.StatusOK, gin.H{"code": http.StatusOK, "message": i18n.Msg(i18n.MsgZipCreatedIn, elapsed), "filename": zipBaseName})
|
|
})
|
|
}
|
|
|
|
// GET /api/v1/zip/:filename
|
|
func DownloadZip(router *gin.RouterGroup) {
|
|
router.GET("/zip/:filename", func(c *gin.Context) {
|
|
if InvalidDownloadToken(c) {
|
|
c.Data(http.StatusForbidden, "image/svg+xml", brokenIconSvg)
|
|
return
|
|
}
|
|
|
|
conf := service.Config()
|
|
zipBaseName := filepath.Base(c.Param("filename"))
|
|
zipPath := path.Join(conf.TempPath(), "zip")
|
|
zipFileName := path.Join(zipPath, zipBaseName)
|
|
|
|
c.Header("Content-Disposition", fmt.Sprintf("attachment; filename=%s", zipBaseName))
|
|
|
|
if !fs.FileExists(zipFileName) {
|
|
log.Errorf("could not find zip file: %s", zipFileName)
|
|
c.Data(404, "image/svg+xml", photoIconSvg)
|
|
return
|
|
}
|
|
|
|
c.File(zipFileName)
|
|
|
|
if err := os.Remove(zipFileName); err != nil {
|
|
log.Errorf("zip: failed removing %s (%s)", txt.Quote(zipFileName), err.Error())
|
|
}
|
|
})
|
|
}
|
|
|
|
func addFileToZip(zipWriter *zip.Writer, fileName, fileAlias string) error {
|
|
fileToZip, err := os.Open(fileName)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
defer fileToZip.Close()
|
|
|
|
// Get the file information
|
|
info, err := fileToZip.Stat()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
header, err := zip.FileInfoHeader(info)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
header.Name = fileAlias
|
|
|
|
// Change to deflate to gain better compression
|
|
// see http://golang.org/pkg/archive/zip/#pkg-constants
|
|
header.Method = zip.Deflate
|
|
|
|
writer, err := zipWriter.CreateHeader(header)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
_, err = io.Copy(writer, fileToZip)
|
|
return err
|
|
}
|