summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorxengineering <me@xengineering.eu>2023-03-31 19:47:55 +0200
committerxengineering <me@xengineering.eu>2023-03-31 19:47:55 +0200
commitf1308a436040f3a72e058e10ec2693cfb599da30 (patch)
treea3fa6c854b5bdec68077c0401b541dceceb51c00
parent58b03b95f544a6ab6bde5e508fbadcb0a2e804dd (diff)
downloadceres-f1308a436040f3a72e058e10ec2693cfb599da30.tar
ceres-f1308a436040f3a72e058e10ec2693cfb599da30.tar.zst
ceres-f1308a436040f3a72e058e10ec2693cfb599da30.zip
Remove image functionality
Recipe images are currently complicated to implement and have little use. Probably they will not be covered in the next release.
-rw-r--r--config.go1
-rw-r--r--config/debug.json3
-rw-r--r--config/default.json3
-rw-r--r--data/storage/.gitkeep0
-rw-r--r--data/templates/recipe.html2
-rw-r--r--data/templates/recipe_edit.html2
-rw-r--r--handler.go19
-rw-r--r--mux.go9
-rw-r--r--server.go1
-rw-r--r--storage.go28
10 files changed, 2 insertions, 66 deletions
diff --git a/config.go b/config.go
index 4b5ecf0..64b2bfb 100644
--- a/config.go
+++ b/config.go
@@ -20,7 +20,6 @@ type HttpConfig struct {
Port string `json:"bind_port"`
Static string `json:"static"`
Templates string `json:"templates"`
- Storage string `json:"storage"`
}
type DatabaseConfig struct {
diff --git a/config/debug.json b/config/debug.json
index 7d1295b..b3f5cbd 100644
--- a/config/debug.json
+++ b/config/debug.json
@@ -3,8 +3,7 @@
"bind_host":"127.0.0.1",
"bind_port":"8080",
"static":"./data/static",
- "templates":"./data/templates",
- "storage":"./data/storage"
+ "templates":"./data/templates"
},
"database":{
"socket":"/run/mysqld/mysqld.sock",
diff --git a/config/default.json b/config/default.json
index 7710774..33ff4a4 100644
--- a/config/default.json
+++ b/config/default.json
@@ -3,8 +3,7 @@
"bind_host":"127.0.0.1",
"bind_port":"8080",
"static":"/usr/share/ceres/static",
- "templates":"/usr/share/ceres/templates",
- "storage":"/var/lib/ceres"
+ "templates":"/usr/share/ceres/templates"
},
"database":{
"socket":"/run/mysqld/mysqld.sock",
diff --git a/data/storage/.gitkeep b/data/storage/.gitkeep
deleted file mode 100644
index e69de29..0000000
--- a/data/storage/.gitkeep
+++ /dev/null
diff --git a/data/templates/recipe.html b/data/templates/recipe.html
index 98012fe..00b6906 100644
--- a/data/templates/recipe.html
+++ b/data/templates/recipe.html
@@ -17,13 +17,11 @@
</header>
<main>
- <img src="./recipe/image?id={{.Id}}" alt="Recipe image">
<h2>Recipe description</h2>
<a href="./recipe/edit?id={{.Id}}"><button>edit</button></a>
{{.RenderedDescriptionMarkdown}}
{{ template "footer.html" }}
-
</main>
</body>
</html>
diff --git a/data/templates/recipe_edit.html b/data/templates/recipe_edit.html
index bd67266..05a932c 100644
--- a/data/templates/recipe_edit.html
+++ b/data/templates/recipe_edit.html
@@ -17,8 +17,6 @@
<p>Recipe ID: {{.Id}}</p>
<input placeholder="Title" type="text" name="title" value="{{.Title}}"><br>
<input placeholder="Link (optional)" type="text" name="url" value="{{.UpstreamUrl}}"><br>
- <label for="image">New image (optional):</label>
- <input id="image" type="file"><br>
<pre contenteditable="true"><code>{{.DescriptionMarkdown}}</code></pre>
<button>save</button> <!-- TODO add functionality -->
<a href="/recipe?id={{.Id}}"><button>cancel</button></a>
diff --git a/handler.go b/handler.go
index 5198a9f..ed8b675 100644
--- a/handler.go
+++ b/handler.go
@@ -212,25 +212,6 @@ func updateRecipe(body string, idStr string) {
return
}
-func recipeImageGet(w http.ResponseWriter, r *http.Request) {
-
- ids := r.URL.Query()["id"]
- if len(ids) != 1 {
- http.Error(w, "Expected exactly one 'id' URL parameter.", 400)
- return
- }
- idStr := ids[0]
-
- idRegex := regexp.MustCompile(VALID_ID_REGEX)
- if !idRegex.MatchString(idStr) {
- http.Error(w, "Bad 'id' URL parameter.", 400)
- return
- }
-
- path := fmt.Sprintf("recipes/image/%s.jpg", idStr)
- ServeStorage(w, r, path)
-}
-
func addRecipesGet(w http.ResponseWriter, r *http.Request) {
ServeTemplate(w, "add.html", nil)
diff --git a/mux.go b/mux.go
index 4c84570..8c23855 100644
--- a/mux.go
+++ b/mux.go
@@ -35,15 +35,6 @@ func recipeEditMux(w http.ResponseWriter, r *http.Request) {
}
}
-func recipeImageMux(w http.ResponseWriter, r *http.Request) {
- switch r.Method {
- case "GET":
- recipeImageGet(w, r)
- default:
- http.Error(w, "Bad Request", 400)
- }
-}
-
func addRecipesMux(w http.ResponseWriter, r *http.Request) {
switch r.Method {
case "GET":
diff --git a/server.go b/server.go
index 67e6e37..e91859c 100644
--- a/server.go
+++ b/server.go
@@ -10,7 +10,6 @@ func setupRoutes() {
http.HandleFunc("/", indexMux)
http.HandleFunc("/recipe", recipeMux)
http.HandleFunc("/recipe/edit", recipeEditMux)
- http.HandleFunc("/recipe/image", recipeImageMux)
http.HandleFunc("/add_recipes", addRecipesMux)
http.HandleFunc("/static/style.css", staticStyleMux)
http.HandleFunc("/favicon.ico", faviconMux)
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)
-}