diff options
Diffstat (limited to 'storage.go')
-rw-r--r-- | storage.go | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -8,10 +8,10 @@ import ( "path/filepath" ) -func ServeStorage(w http.ResponseWriter, r *http.Request, storage string, path string) { +func ServeStorage(w http.ResponseWriter, r *http.Request, path string) { // generate absolute, cleaned path of ressource - path = filepath.Join(storage, path) + path = filepath.Join(config.Http.Storage, path) path,err := filepath.Abs(path) if err != nil { log.Print(err) @@ -25,7 +25,7 @@ func ServeStorage(w http.ResponseWriter, r *http.Request, storage string, path s http.ServeFile(w, r, path) } -func SaveStorageFile(data *[]byte, storage string, path string) error { - fullpath := filepath.Join(storage, path) +func SaveStorageFile(data *[]byte, path string) error { + fullpath := filepath.Join(config.Http.Storage, path) return ioutil.WriteFile(fullpath, *data, 0644) } |