mirror of
https://github.com/octoleo/restic.git
synced 2024-11-04 12:34:13 +00:00
restic-server: Fix content length for HEAD requests
This commit is contained in:
parent
51d86370a5
commit
4749e610af
@ -4,6 +4,7 @@ package main
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
|
"fmt"
|
||||||
"io/ioutil"
|
"io/ioutil"
|
||||||
"net/http"
|
"net/http"
|
||||||
"os"
|
"os"
|
||||||
@ -40,10 +41,12 @@ func AuthHandler(f *HtpasswdFile, h http.Handler) http.HandlerFunc {
|
|||||||
func CheckConfig(c *Context) http.HandlerFunc {
|
func CheckConfig(c *Context) http.HandlerFunc {
|
||||||
return func(w http.ResponseWriter, r *http.Request) {
|
return func(w http.ResponseWriter, r *http.Request) {
|
||||||
config := filepath.Join(c.path, "config")
|
config := filepath.Join(c.path, "config")
|
||||||
if _, err := os.Stat(config); err != nil {
|
st, err := os.Stat(config)
|
||||||
|
if err != nil {
|
||||||
http.Error(w, "404 not found", 404)
|
http.Error(w, "404 not found", 404)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
w.Header().Add("Content-Length", fmt.Sprint(st.Size()))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -113,11 +116,12 @@ func CheckBlob(c *Context) http.HandlerFunc {
|
|||||||
dir := vars[1]
|
dir := vars[1]
|
||||||
name := vars[2]
|
name := vars[2]
|
||||||
path := filepath.Join(c.path, dir, name)
|
path := filepath.Join(c.path, dir, name)
|
||||||
_, err := os.Stat(path)
|
st, err := os.Stat(path)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
http.Error(w, "404 not found", 404)
|
http.Error(w, "404 not found", 404)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
w.Header().Add("Content-Length", fmt.Sprint(st.Size()))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user