2015-09-29 05:46:43 +02:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2015-10-04 08:25:00 +02:00
|
|
|
"fmt"
|
2015-09-29 05:46:43 +02:00
|
|
|
"net/http"
|
|
|
|
|
2019-01-25 08:33:11 +01:00
|
|
|
"github.com/andreimarcu/linx-server/backends"
|
2015-09-29 05:46:43 +02:00
|
|
|
"github.com/zenazn/goji/web"
|
|
|
|
)
|
|
|
|
|
|
|
|
func deleteHandler(c web.C, w http.ResponseWriter, r *http.Request) {
|
2015-10-06 06:31:09 +02:00
|
|
|
requestKey := r.Header.Get("Linx-Delete-Key")
|
2015-09-29 05:46:43 +02:00
|
|
|
|
|
|
|
filename := c.URLParams["name"]
|
|
|
|
|
2019-01-25 08:33:11 +01:00
|
|
|
// Ensure that file exists and delete key is correct
|
|
|
|
metadata, err := storageBackend.Head(filename)
|
|
|
|
if err == backends.NotFoundErr {
|
2015-09-29 05:46:43 +02:00
|
|
|
notFoundHandler(c, w, r) // 404 - file doesn't exist
|
|
|
|
return
|
2019-01-25 08:33:11 +01:00
|
|
|
} else if err != nil {
|
2015-09-29 05:46:43 +02:00
|
|
|
unauthorizedHandler(c, w, r) // 401 - no metadata available
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2015-10-08 04:45:34 +02:00
|
|
|
if metadata.DeleteKey == requestKey {
|
2019-01-25 08:33:11 +01:00
|
|
|
err := storageBackend.Delete(filename)
|
|
|
|
if err != nil {
|
2015-10-04 18:47:20 +02:00
|
|
|
oopsHandler(c, w, r, RespPLAIN, "Could not delete")
|
2015-09-29 05:46:43 +02:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2015-10-04 08:25:00 +02:00
|
|
|
fmt.Fprintf(w, "DELETED")
|
2015-09-29 05:46:43 +02:00
|
|
|
return
|
|
|
|
|
|
|
|
} else {
|
|
|
|
unauthorizedHandler(c, w, r) // 401 - wrong delete key
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|