summaryrefslogtreecommitdiff
path: root/storage.go
diff options
context:
space:
mode:
authorxengineering <me@xengineering.eu>2023-02-11 13:08:04 +0100
committerxengineering <me@xengineering.eu>2023-02-11 13:08:04 +0100
commit312c59564700da719dbafad11c2d9f647b46d912 (patch)
treecb427f843e2aa92f72d01a7c8cd28bbb7415358a /storage.go
parent7e517ada827abc2658bb07347bc656c10860e091 (diff)
downloadceres-312c59564700da719dbafad11c2d9f647b46d912.tar
ceres-312c59564700da719dbafad11c2d9f647b46d912.tar.zst
ceres-312c59564700da719dbafad11c2d9f647b46d912.zip
Migrate storage.go to global config
Diffstat (limited to 'storage.go')
-rw-r--r--storage.go8
1 files changed, 4 insertions, 4 deletions
diff --git a/storage.go b/storage.go
index 02bc94d..10ec915 100644
--- a/storage.go
+++ b/storage.go
@@ -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)
}