1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
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)
}
|