filebrowser/browse/delete.go

41 lines
835 B
Go
Raw Normal View History

2015-09-26 21:02:49 +00:00
package browse
import (
"net/http"
"os"
"strings"
2015-09-30 21:03:28 +00:00
2015-10-18 14:10:32 +00:00
"github.com/hacdias/caddy-hugo/config"
2015-09-26 21:02:49 +00:00
)
2016-02-14 10:20:47 +00:00
// DELETE handles the delete requests on browse pages
2015-09-30 21:03:28 +00:00
func DELETE(w http.ResponseWriter, r *http.Request, c *config.Config) (int, error) {
2015-09-26 21:02:49 +00:00
// Remove both beginning and trailing slashes
2015-09-30 21:03:28 +00:00
path := r.URL.Path
path = strings.TrimPrefix(path, "/")
path = strings.TrimSuffix(path, "/")
path = c.Path + path
2015-09-26 21:02:49 +00:00
// Check if the file or directory exists
2015-09-30 21:03:28 +00:00
if stat, err := os.Stat(path); err == nil {
2015-09-26 21:02:49 +00:00
var err error
// If it's dir, remove all of the content inside
if stat.IsDir() {
2015-09-30 21:03:28 +00:00
err = os.RemoveAll(path)
2015-09-26 21:02:49 +00:00
} else {
2015-09-30 21:03:28 +00:00
err = os.Remove(path)
2015-09-26 21:02:49 +00:00
}
// Check for errors
if err != nil {
return 500, err
}
} else {
return 404, nil
}
w.Header().Set("Content-Type", "application/json")
w.Write([]byte("{}"))
return 200, nil
}