-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
174 additions
and
95 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
type ContextType = { | ||
json: (json: object, status?: number) => Promise<Response>; | ||
pretty: (json: object, status?: number) => Promise<Response>; | ||
text: (text: string, status?: number) => Promise<Response>; | ||
html: (html: string, status?: number) => Promise<Response>; | ||
error: (message: string, status?: number) => Promise<Response>; | ||
success: (message: string, status?: number) => Promise<Response>; | ||
redirect: (url: string, status?: number) => Promise<Response>; | ||
sendFile: (filePath: string, status?: number) => Promise<Response>; | ||
readHtml: (filePath: string) => Promise<string>; | ||
query: { | ||
get: (key: string) => string | null; | ||
}; | ||
req: Request; | ||
}; | ||
declare function Context(request: Request): ContextType; | ||
export { Context, type ContextType }; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,115 @@ | ||
import * as path from "path/posix"; | ||
|
||
type ContextType = { | ||
json: (json: object, status?: number) => Promise<Response>; | ||
pretty: (json: object, status?: number) => Promise<Response>; | ||
text: (text: string, status?: number) => Promise<Response>; | ||
html: (html: string, status?: number) => Promise<Response>; | ||
error: (message: string, status?: number) => Promise<Response>; | ||
success: (message: string, status?: number) => Promise<Response>; | ||
redirect: (url: string, status?: number) => Promise<Response>; | ||
sendFile: (filePath: string, status?: number) => Promise<Response>; | ||
readHtml: (filePath: string) => Promise<string>; | ||
query: { | ||
get: (key: string) => string | null; | ||
}; | ||
req: Request; | ||
}; | ||
|
||
function Context(request: Request): ContextType { | ||
const json = async (json: object, status: number = 200) => { | ||
return new Response(JSON.stringify(json), { | ||
status, | ||
headers: { | ||
"Content-Type": "application/json", | ||
}, | ||
}); | ||
}; | ||
|
||
const pretty = async (json: object, status: number = 200) => { | ||
return new Response(JSON.stringify(json, null, 2), { | ||
status, | ||
headers: { | ||
"Content-Type": "application/json", | ||
}, | ||
}); | ||
}; | ||
|
||
const text = async (text: string, status: number = 200) => { | ||
return new Response(text, { | ||
status, | ||
headers: { | ||
"Content-Type": "text/plain", | ||
}, | ||
}); | ||
}; | ||
|
||
const html = async (html: string, status: number = 200) => { | ||
return new Response(html, { | ||
status, | ||
headers: { | ||
"Content-Type": "text/html", | ||
}, | ||
}); | ||
}; | ||
|
||
const error = async (message: string, status: number = 500) => { | ||
return json({ error: message }, status); | ||
}; | ||
|
||
const success = async (message: string, status: number = 200) => { | ||
return json({ message }, status); | ||
}; | ||
|
||
const redirect = async (url: string, status: number = 302) => { | ||
return new Response(null, { | ||
status, | ||
headers: { | ||
Location: url, | ||
}, | ||
}); | ||
}; | ||
|
||
const sendFile = async (filePath: string, status: number = 200) => { | ||
const file = Bun.file(filePath); | ||
let rawFileName = path.basename(filePath); | ||
rawFileName = rawFileName.replace(/ /g, "_"); | ||
rawFileName = rawFileName.replace(/\\/g, "_"); | ||
rawFileName = rawFileName.split("_")[rawFileName.split("_").length - 1]; | ||
return new Response(file, { | ||
headers: { | ||
"Content-Type": "application/octet-stream", | ||
"Content-Disposition": `attachment; filename="${rawFileName}"`, | ||
}, | ||
status, | ||
}); | ||
}; | ||
|
||
const query = { | ||
get: (key: string) => { | ||
return new URL(request.url).searchParams.get(key); | ||
}, | ||
}; | ||
|
||
const readHtml = async (filePath: string) => { | ||
if (!filePath.endsWith(".html")) throw new Error("File must be an HTML file"); | ||
const file = await Bun.file(filePath).text(); | ||
return file; | ||
}; | ||
|
||
return { | ||
json, | ||
pretty, | ||
text, | ||
html, | ||
error, | ||
success, | ||
redirect, | ||
sendFile, | ||
readHtml, | ||
query, | ||
req: request, | ||
}; | ||
} | ||
|
||
export { Context, type ContextType }; |
Oops, something went wrong.