summaryrefslogtreecommitdiff
path: root/utils/storage.go
diff options
context:
space:
mode:
authorxengineering <me@xengineering.eu>2023-02-08 20:53:20 +0100
committerxengineering <me@xengineering.eu>2023-02-08 21:01:27 +0100
commitf9a5140071703faf0c7515a05f52e69fdc1f11ba (patch)
treeee073f3c7fc1a6bbda1eee6e3bec076e73363740 /utils/storage.go
parent9005de11ef8b7cf32cc8503e8b5f134eca47b4fb (diff)
downloadceres-f9a5140071703faf0c7515a05f52e69fdc1f11ba.tar
ceres-f9a5140071703faf0c7515a05f52e69fdc1f11ba.tar.zst
ceres-f9a5140071703faf0c7515a05f52e69fdc1f11ba.zip
Move all sources to package main
This project is not so big that it needs multiple packages.
Diffstat (limited to 'utils/storage.go')
-rw-r--r--utils/storage.go31
1 files changed, 0 insertions, 31 deletions
diff --git a/utils/storage.go b/utils/storage.go
deleted file mode 100644
index ee5b7bf..0000000
--- a/utils/storage.go
+++ /dev/null
@@ -1,31 +0,0 @@
-
-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)
-}