-
Notifications
You must be signed in to change notification settings - Fork 0
/
response_utils.go
81 lines (67 loc) · 1.81 KB
/
response_utils.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
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
package atlas
import (
"encoding/json"
"encoding/xml"
"fmt"
"net/http"
"path"
"path/filepath"
)
func (at *Atlas) WriteJson(w http.ResponseWriter, status int, data interface{}, headers ...http.Header) error {
out, err := json.MarshalIndent(data, "", "\t")
if err != nil {
return err
}
if len(headers) > 0 {
for k, v := range headers[0] {
w.Header()[k] = v
}
}
w.Header().Set("Content-Type", "application/json")
w.WriteHeader(status)
_, err = w.Write(out)
if err != nil {
return err
}
return nil
}
func (at *Atlas) WriteXml(w http.ResponseWriter, status int, data interface{}, headers ...http.Header) error {
out, err := xml.MarshalIndent(data, "", " ")
if err != nil {
return err
}
if len(headers) > 0 {
for k, v := range headers[0] {
w.Header()[k] = v
}
}
w.Header().Set("Content-Type", "application/xml")
w.WriteHeader(status)
_, err = w.Write(out)
if err != nil {
return err
}
return nil
}
func (at *Atlas) DownloadFile(w http.ResponseWriter, r *http.Request, filePath, fileName string) error {
fp := path.Join(filePath, fileName)
fileToServe := filepath.Clean(fp)
w.Header().Set("Content-Disposition", fmt.Sprintf("attachment; file=\"%s\"", fileName))
http.ServeFile(w, r, fileToServe)
return nil
}
func (at *Atlas) ErrNotFound(w http.ResponseWriter, r *http.Request) {
at.ErrStatus(w, http.StatusNotFound)
}
func (at *Atlas) ErrInternalServer(w http.ResponseWriter, r *http.Request) {
at.ErrStatus(w, http.StatusInternalServerError)
}
func (at *Atlas) ErrUnauthorized(w http.ResponseWriter, r *http.Request) {
at.ErrStatus(w, http.StatusUnauthorized)
}
func (at *Atlas) ErrForbidden(w http.ResponseWriter, r *http.Request) {
at.ErrStatus(w, http.StatusForbidden)
}
func (at *Atlas) ErrStatus(w http.ResponseWriter, status int) {
http.Error(w, http.StatusText(status), status)
}