mirror of
https://github.com/aclindsa/moneygo.git
synced 2024-10-31 16:00:05 -04:00
48 lines
894 B
Go
48 lines
894 B
Go
package handlers
|
|
|
|
import (
|
|
"encoding/json"
|
|
"log"
|
|
"net/http"
|
|
"strings"
|
|
)
|
|
|
|
type Error struct {
|
|
ErrorId int
|
|
ErrorString string
|
|
}
|
|
|
|
func (e *Error) Read(json_str string) error {
|
|
dec := json.NewDecoder(strings.NewReader(json_str))
|
|
return dec.Decode(e)
|
|
}
|
|
|
|
func (e *Error) Write(w http.ResponseWriter) error {
|
|
enc := json.NewEncoder(w)
|
|
return enc.Encode(e)
|
|
}
|
|
|
|
var error_codes = map[int]string{
|
|
1: "Not Signed In",
|
|
2: "Unauthorized Access",
|
|
3: "Invalid Request",
|
|
4: "User Exists",
|
|
// 5: "Connection Failed", //reserved for client-side error
|
|
6: "Import Error",
|
|
999: "Internal Error",
|
|
}
|
|
|
|
func WriteError(w http.ResponseWriter, error_code int) {
|
|
msg, ok := error_codes[error_code]
|
|
if !ok {
|
|
log.Printf("Error: WriteError received error code of %d", error_code)
|
|
msg = error_codes[999]
|
|
}
|
|
e := Error{error_code, msg}
|
|
|
|
err := e.Write(w)
|
|
if err != nil {
|
|
log.Fatal(err)
|
|
}
|
|
}
|