summaryrefslogtreecommitdiff
path: root/errors.go
blob: 193cc115ca763ec29c768a6eff94b7cff0c94263 (plain)
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84

package main

import (
	"fmt"
	"log"
	"net/http"
)

func Err(w http.ResponseWriter, code int, a ...interface{}) {

	var msg string  // format string for error message
	var hc int      // HTTP error code

	var prefix string = fmt.Sprintf("Error %d - ", code)

	// ATTENTION: the used error codes in this switch statements should be
	// stable. Do not change them, just append to the list!
	switch code {

		case 1:
			msg = "Failed to load recipes from database."
			hc = http.StatusInternalServerError

		case 2:
			msg = "Could not parse recipe from database request."
			hc = http.StatusInternalServerError

		case 3:
			msg = "Exactly 1 'id' URL parameter expected but %d provided."
			hc = http.StatusBadRequest

		case 4:
			msg = "'id' URL parameter '%s' doas not match the regex '%s'."
			hc = http.StatusBadRequest

		case 5:
			msg = "Received error from database: '%s'."
			hc = http.StatusInternalServerError

		case 6:
			msg = "Expected exactly 1 recipe from database but got %d."
			hc = http.StatusInternalServerError

		// deprecated
		case 7:
			msg = "Exactly 1 'type' URL parameter expected but %d provided."
			hc = http.StatusBadRequest

		case 8:
			msg = "Form data does not contain recipe URL (key is '%s')."
			hc = http.StatusBadRequest

		case 9:
			msg = "Could not add recipe: '%s'."
			hc = http.StatusInternalServerError

		case 10:
			msg = "Expected exactly 1 recipe URL in '%s' but got %d (regex is '%s')."
			hc = http.StatusBadRequest

		case 11:
			msg = "Could not get recipe ID from database: '%s'."
			hc = http.StatusInternalServerError

		// deprecated
		case 12:
			msg = "Given recipe type '%s' is unknown."
			hc = http.StatusBadRequest

		default:
			msg = "An unknown error occured."
			hc = http.StatusInternalServerError

	}

	// format full error message
	final := fmt.Sprintf(prefix + msg, a...)

	// send message to log and user
	log.Println(final)
	http.Error(w, final, hc)

}