-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresponse.ts
175 lines (151 loc) · 2.87 KB
/
response.ts
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
// Copyright Zaiste. All rights reserved.
// Licensed under the Apache License, Version 2.0
import type { Resource, Response, ResponseBody } from "./types.ts";
//
// 2xx
//
export const OK = (body: ResponseBody, headers = {}) => {
return { headers, body, statusCode: 200 } as Response;
};
export function Created(resource: Resource = "", headers = {}): Response {
return {
statusCode: 201,
headers,
body: resource,
};
}
export function Plain(content: string): Response {
return {
statusCode: 200,
type: "text/plain",
body: content,
};
}
export function Accepted(resource: Resource = "", headers = {}): Response {
return {
statusCode: 202,
headers,
body: resource,
};
}
export function NoContent(headers = {}): Response {
return {
statusCode: 204,
headers,
body: "",
};
}
export function Redirect(
url: string,
body = "Redirecting...",
statusCode = 302,
): Response {
return {
statusCode,
headers: { Location: url },
type: "text/plain",
body,
};
}
export function NotModified(headers = {}): Response {
return {
statusCode: 304,
headers,
body: "",
};
}
export function JSONPayload(content = {}, statusCode = 200) {
return {
statusCode,
body: JSON.stringify(content),
type: "application/json",
};
}
export function HTMLString(content: string): Response {
return {
statusCode: 200,
type: "text/html",
body: content,
};
}
// HTMLStream(content: string): Response {
// const Readable = require('stream').Readable;
// const s = new Readable();
// s.push(content);
// s.push(null);
// return s;
// },
export function JavaScriptString(content: string): Response {
return {
statusCode: 200,
type: "application/javascript",
body: content,
};
}
export function StyleSheetString(content: string): Response {
return {
statusCode: 200,
type: "text/css",
body: content,
};
}
//
// 4xx
//
export function BadRequest(): Response {
return {
statusCode: 400,
headers: {},
body: "",
};
}
export function Unauthorized(): Response {
return {
statusCode: 401,
headers: {},
body: "",
};
}
export function Forbidden(content = ""): Response {
return {
statusCode: 403,
body: content,
};
}
export function NotFound(headers = {}): Response {
return {
statusCode: 404,
type: "text/html",
headers,
body: "Not Found",
};
}
export function MethodNotAllowed(): Response {
return {
statusCode: 405,
headers: {},
body: "",
};
}
export function NotAcceptable(): Response {
return {
statusCode: 406,
headers: {},
body: "",
};
}
export function Conflict(content = ""): Response {
return {
statusCode: 409,
body: content,
};
}
//
// 5xx
//
export function InternalServerError(content = ""): Response {
return {
statusCode: 500,
body: content,
};
}