filebrowser/browse/post.go

130 lines
3.2 KiB
Go
Raw Normal View History

2015-09-26 21:02:49 +00:00
package browse
import (
"bytes"
"encoding/json"
"errors"
2016-02-25 20:02:06 +00:00
"fmt"
2015-09-26 21:02:49 +00:00
"io"
"mime/multipart"
"net/http"
"os"
2016-02-25 20:02:06 +00:00
"path/filepath"
2015-09-26 21:02:49 +00:00
"strings"
2015-10-18 14:10:32 +00:00
"github.com/hacdias/caddy-hugo/config"
"github.com/hacdias/caddy-hugo/utils"
2015-09-26 21:02:49 +00:00
)
2016-02-14 10:20:47 +00:00
// POST handles the POST method on browse page. It's used to create new files,
// folders and upload content.
2015-09-30 21:03:28 +00:00
func POST(w http.ResponseWriter, r *http.Request, c *config.Config) (int, error) {
2016-02-07 21:39:34 +00:00
// Remove prefix slash
2015-09-26 21:02:49 +00:00
r.URL.Path = strings.TrimPrefix(r.URL.Path, "/")
// If it's the upload of a file
if r.Header.Get("X-Upload") == "true" {
2016-02-07 21:39:34 +00:00
return upload(w, r, c)
2015-09-26 21:02:49 +00:00
}
// Get the JSON information sent using a buffer
buffer := new(bytes.Buffer)
buffer.ReadFrom(r.Body)
// Creates the raw file "map" using the JSON
var info map[string]interface{}
json.Unmarshal(buffer.Bytes(), &info)
// Check if filename and archetype are specified in
// the request
if _, ok := info["filename"]; !ok {
2015-09-26 21:19:22 +00:00
return http.StatusBadRequest, errors.New("Filename not specified.")
2015-09-26 21:02:49 +00:00
}
if _, ok := info["archetype"]; !ok {
2015-09-26 21:19:22 +00:00
return http.StatusBadRequest, errors.New("Archtype not specified.")
2015-09-26 21:02:49 +00:00
}
// Sanitize the file name path
filename := info["filename"].(string)
filename = strings.TrimPrefix(filename, "/")
filename = strings.TrimSuffix(filename, "/")
2016-02-25 20:02:06 +00:00
url := "/admin/edit/" + r.URL.Path + filename
2015-09-30 21:03:28 +00:00
filename = c.Path + r.URL.Path + filename
2015-09-26 21:02:49 +00:00
2016-02-20 12:04:12 +00:00
if strings.HasPrefix(filename, c.Path+"content/") &&
(strings.HasSuffix(filename, ".md") || strings.HasSuffix(filename, ".markdown")) {
filename = strings.Replace(filename, c.Path+"content/", "", 1)
args := []string{"new", filename}
2015-09-26 21:02:49 +00:00
archetype := info["archetype"].(string)
2016-02-20 12:04:12 +00:00
if archetype != "" {
args = append(args, "--kind", archetype)
2015-09-26 21:02:49 +00:00
}
2016-02-20 22:33:10 +00:00
if err := utils.RunCommand(c.Hugo, args, c.Path); err != nil {
2016-02-20 12:04:12 +00:00
return http.StatusInternalServerError, err
}
} else {
2016-02-25 20:02:06 +00:00
var err error
if filepath.Ext(filename) == "" {
err = os.MkdirAll(filename, 0755)
url = strings.Replace(url, "edit", "browse", 1)
} else {
var wf *os.File
wf, err = os.Create(filename)
defer wf.Close()
}
2016-02-20 12:04:12 +00:00
if err != nil {
return http.StatusInternalServerError, err
2015-09-26 21:02:49 +00:00
}
}
2016-02-25 20:02:06 +00:00
fmt.Println(url)
2015-09-26 21:02:49 +00:00
w.Header().Set("Content-Type", "application/json")
2016-02-25 20:02:06 +00:00
w.Write([]byte("{\"Location\": \"" + url + "\"}"))
2015-09-26 21:19:22 +00:00
return http.StatusOK, nil
2015-09-26 21:02:49 +00:00
}
2016-02-07 21:39:34 +00:00
func upload(w http.ResponseWriter, r *http.Request, c *config.Config) (int, error) {
2015-09-26 21:02:49 +00:00
// Parse the multipart form in the request
err := r.ParseMultipartForm(100000)
if err != nil {
2015-09-26 21:19:22 +00:00
return http.StatusInternalServerError, err
2015-09-26 21:02:49 +00:00
}
// For each file header in the multipart form
for _, fheaders := range r.MultipartForm.File {
// Handle each file
for _, hdr := range fheaders {
// Open the first file
var infile multipart.File
if infile, err = hdr.Open(); nil != err {
2015-09-26 21:19:22 +00:00
return http.StatusInternalServerError, err
2015-09-26 21:02:49 +00:00
}
// Create the file
var outfile *os.File
2016-02-07 21:39:34 +00:00
if outfile, err = os.Create(c.Path + r.URL.Path + hdr.Filename); nil != err {
2015-09-26 21:19:22 +00:00
return http.StatusInternalServerError, err
2015-09-26 21:02:49 +00:00
}
// Copy the file content
if _, err = io.Copy(outfile, infile); nil != err {
2015-09-26 21:19:22 +00:00
return http.StatusInternalServerError, err
2015-09-26 21:02:49 +00:00
}
2015-10-17 07:10:42 +00:00
defer outfile.Close()
2015-09-26 21:02:49 +00:00
}
}
w.Header().Set("Content-Type", "application/json")
w.Write([]byte("{}"))
2015-09-26 21:19:22 +00:00
return http.StatusOK, nil
2015-09-26 21:02:49 +00:00
}