This repository has been archived on 2023-06-09. You can view files and clone it, but cannot push or open issues or pull requests.
deno-http/example/test.ts

102 lines
2.6 KiB
TypeScript
Raw Normal View History

2023-05-10 12:21:20 +00:00
import { Status } from "https://deno.land/std@0.186.0/http/http_status.ts";
import prettyTime from "npm:pretty-time";
2023-05-11 08:29:54 +00:00
import { HTTPServer } from "../mod.ts";
2023-05-10 12:21:20 +00:00
2023-05-12 10:43:54 +00:00
const JOKES = [
"Why do Java developers often wear glasses? They can't C#.",
"A SQL query walks into a bar, goes up to two tables and says “can I join you?”",
"Wasn't hard to crack Forrest Gump's password. 1forrest1.",
"I love pressing the F5 key. It's refreshing.",
"Called IT support and a chap from Australia came to fix my network connection. I asked “Do you come from a LAN down under?”",
"There are 10 types of people in the world. Those who understand binary and those who don't.",
"Why are assembly programmers often wet? They work below C level.",
"My favourite computer based band is the Black IPs.",
"What programme do you use to predict the music tastes of former US presidential candidates? An Al Gore Rhythm.",
"An SEO expert walked into a bar, pub, inn, tavern, hostelry, public house.",
];
2023-05-10 12:21:20 +00:00
const httpServer = new HTTPServer();
2023-05-11 06:42:45 +00:00
2023-05-12 10:28:26 +00:00
httpServer.preprocessor((_req, rep) => {
2023-05-12 09:56:48 +00:00
rep.header("Access-Control-Allow-Origin", "*");
2023-05-12 10:28:26 +00:00
});
httpServer.middleware(async (req, _rep, done) => {
2023-05-12 08:16:26 +00:00
const processTime = await done();
2023-05-12 11:09:23 +00:00
console.log(`${req.method} - ${req.remoteIpAddr} - ${req.path} - ${prettyTime(processTime)}`);
2023-05-11 11:11:14 +00:00
});
2023-05-11 07:32:18 +00:00
httpServer.error((req, _rep) => {
return JSON.stringify(
{
code: Status.NotFound,
message: "Route not found!",
path: req.path,
2023-05-11 09:53:28 +00:00
url: req.url,
2023-05-11 07:32:18 +00:00
},
null,
2,
);
2023-05-11 09:53:28 +00:00
});
2023-05-11 07:32:18 +00:00
2023-05-12 10:43:54 +00:00
httpServer.get("/api/joke", (_req, rep) => {
const randomIndex = Math.floor(Math.random() * JOKES.length);
const joke = JOKES[randomIndex];
rep.json({
code: 200,
joke,
});
});
httpServer.get("/site", (_req, rep) => {
const htmlTest = `
<html>
<head>
<title>HTML Test</title>
</head>
<body>
<h1>Hello World!</h1>
<button onclick="alert('bruh')">Useless button, do not press.</button>
</body>
</html>
`;
rep.html(htmlTest);
});
2023-05-12 09:56:48 +00:00
httpServer.get("/", (req, rep) => {
rep.status(Status.Teapot)
.header("working", "true")
2023-05-11 04:46:41 +00:00
.type("application/json")
.cookie("working", "true");
2023-05-11 06:42:45 +00:00
2023-05-11 04:46:41 +00:00
console.log(req.cookie("working"));
2023-05-11 09:53:28 +00:00
return {
code: Status.Teapot,
message: "Hello World!",
};
2023-05-10 12:21:20 +00:00
});
2023-05-11 06:42:45 +00:00
2023-05-12 09:56:48 +00:00
httpServer.get("/api/user/:userId", (req, rep) => {
2023-05-11 04:46:41 +00:00
rep.status(Status.Teapot)
2023-05-11 06:42:45 +00:00
.type("application/json");
2023-05-11 04:46:41 +00:00
2023-05-11 05:03:10 +00:00
console.log(req.queryParams);
2023-05-11 04:46:41 +00:00
return JSON.stringify(
{
code: Status.Teapot,
2023-05-11 06:42:45 +00:00
message: `UserID is ${req.pathParam("userId")}`,
queryParams: req.queryParams,
2023-05-11 04:46:41 +00:00
},
null,
2,
);
});
2023-05-11 06:42:45 +00:00
2023-05-10 12:21:20 +00:00
httpServer.listen({
port: 8080,
2023-05-10 12:57:29 +00:00
staticLocalDir: "/static",
staticServePath: "/assets",
2023-05-10 12:21:20 +00:00
});