diff options
author | xengineering <me@xengineering.eu> | 2022-11-05 21:25:31 +0100 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2022-11-07 21:17:44 +0100 |
commit | 1d6b45bebea66391a2a535a3bb328a5732aaa75d (patch) | |
tree | 12faa62d8d8574ad8c94f4a7c9ff206c34456430 /utils/storage.go | |
download | ceres-1d6b45bebea66391a2a535a3bb328a5732aaa75d.tar ceres-1d6b45bebea66391a2a535a3bb328a5732aaa75d.tar.zst ceres-1d6b45bebea66391a2a535a3bb328a5732aaa75d.zip |
Add existing work
Diffstat (limited to 'utils/storage.go')
-rw-r--r-- | utils/storage.go | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/utils/storage.go b/utils/storage.go new file mode 100644 index 0000000..ee5b7bf --- /dev/null +++ b/utils/storage.go @@ -0,0 +1,31 @@ + +package utils + +import ( + "log" + "net/http" + "io/ioutil" + "path/filepath" +) + +func ServeStorage(w http.ResponseWriter, r *http.Request, storage string, path string) { + + // generate absolute, cleaned path of ressource + path = filepath.Join(storage, path) + path,err := filepath.Abs(path) + if err != nil { + log.Print(err) + http.Error(w, http.StatusText(400), 400) + return + } + + // TODO check if path is still in storage folder + + // serve the file if nothing has been wrong + http.ServeFile(w, r, path) +} + +func SaveStorageFile(data *[]byte, storage string, path string) error { + fullpath := filepath.Join(storage, path) + return ioutil.WriteFile(fullpath, *data, 0644) +} |