-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstrings.go
34 lines (31 loc) · 1.07 KB
/
strings.go
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
package main
const (
// StatusOK means no problems.
StatusOK = iota
// StatusNoCredentials means wrong inputs to login.
StatusNoCredentials = iota
// StatusNoAuth means no or wrong auth token was passed.
StatusNoAuth = iota
// StatusAuthFailed means username or password was wrong, or account non-existent.
StatusAuthFailed = iota
// StatusNoAccess means the token given does not have access to the requested data.
StatusNoAccess = iota
// StatusError is for generic error messages.
StatusError = iota
)
var messages = map[int]string{
StatusOK: "OK",
StatusNoCredentials: "Missing username or password.",
StatusNoAuth: "No valid authorisation token provided.",
StatusAuthFailed: "Login failed.",
StatusNoAccess: "Not accessible with provided credentials.",
}
// API endpoints
const (
// PathWatch requires 'name', 'user' and 'token' parameters.
PathWatch = "/watch"
// PathUnwatch requires 'name', 'user' and 'token' parameters.
PathUnwatch = "/unwatch"
// PathTrigger requires 'name', 'user' and 'token' parameters.
PathTrigger = "/trigger"
)