From f1308a436040f3a72e058e10ec2693cfb599da30 Mon Sep 17 00:00:00 2001 From: xengineering Date: Fri, 31 Mar 2023 19:47:55 +0200 Subject: Remove image functionality Recipe images are currently complicated to implement and have little use. Probably they will not be covered in the next release. --- storage.go | 28 ---------------------------- 1 file changed, 28 deletions(-) delete mode 100644 storage.go (limited to 'storage.go') diff --git a/storage.go b/storage.go deleted file mode 100644 index dd6feb2..0000000 --- a/storage.go +++ /dev/null @@ -1,28 +0,0 @@ -package main - -import ( - "io/ioutil" - "log" - "net/http" - "path/filepath" -) - -func ServeStorage(w http.ResponseWriter, r *http.Request, path string) { - - path = filepath.Join(config.Http.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 - - http.ServeFile(w, r, path) -} - -func SaveStorageFile(data *[]byte, path string) error { - fullpath := filepath.Join(config.Http.Storage, path) - return ioutil.WriteFile(fullpath, *data, 0644) -} -- cgit v1.2.3-70-g09d2