@robinpath/http 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +97 -0
- package/dist/http.d.ts +191 -0
- package/dist/http.d.ts.map +1 -0
- package/dist/http.js +474 -0
- package/dist/http.js.map +1 -0
- package/dist/index.d.ts +6 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +12 -0
- package/dist/index.js.map +1 -0
- package/package.json +29 -0
package/README.md
ADDED
|
@@ -0,0 +1,97 @@
|
|
|
1
|
+
# @robinpath/http
|
|
2
|
+
|
|
3
|
+
> HTTP server for RobinPath scripts. Register routes with static responses (JSON, HTML, files), enable CORS, serve static directories. No callbacks needed.
|
|
4
|
+
|
|
5
|
+
   
|
|
6
|
+
|
|
7
|
+
## Why use this module?
|
|
8
|
+
|
|
9
|
+
The `http` module lets you:
|
|
10
|
+
|
|
11
|
+
- Create a new HTTP server instance (does not start listening yet)
|
|
12
|
+
- Register a GET route that returns static JSON data
|
|
13
|
+
- Register a POST route that returns static JSON data
|
|
14
|
+
- Register a PUT route that returns static JSON data
|
|
15
|
+
- Register a DELETE route that returns static JSON data
|
|
16
|
+
|
|
17
|
+
All functions are callable directly from RobinPath scripts with a simple, consistent API.
|
|
18
|
+
|
|
19
|
+
## Installation
|
|
20
|
+
|
|
21
|
+
```bash
|
|
22
|
+
npm install @robinpath/http
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
## Quick Start
|
|
26
|
+
|
|
27
|
+
No credentials needed — start using it right away:
|
|
28
|
+
|
|
29
|
+
```robinpath
|
|
30
|
+
any "myapi" "/api/products" [{"id": 1}]
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
## Available Functions
|
|
34
|
+
|
|
35
|
+
| Function | Description |
|
|
36
|
+
|----------|-------------|
|
|
37
|
+
| `http.createServer` | Create a new HTTP server instance (does not start listening yet) |
|
|
38
|
+
| `http.get` | Register a GET route that returns static JSON data |
|
|
39
|
+
| `http.post` | Register a POST route that returns static JSON data |
|
|
40
|
+
| `http.put` | Register a PUT route that returns static JSON data |
|
|
41
|
+
| `http.delete` | Register a DELETE route that returns static JSON data |
|
|
42
|
+
| `http.html` | Register a GET route that serves an HTML string |
|
|
43
|
+
| `http.file` | Register a GET route that serves a file from disk |
|
|
44
|
+
| `http.redirect` | Register a route that redirects to another URL |
|
|
45
|
+
| `http.static` | Register a directory to serve static files from |
|
|
46
|
+
| `http.cors` | Enable CORS on the server |
|
|
47
|
+
| `http.listen` | Start the HTTP server listening for requests |
|
|
48
|
+
| `http.stop` | Stop the HTTP server gracefully |
|
|
49
|
+
| `http.status` | Get server status: port, routes, listening state, request count |
|
|
50
|
+
| `http.logs` | Get the request log for a server |
|
|
51
|
+
|
|
52
|
+
## Examples
|
|
53
|
+
|
|
54
|
+
### Register a GET route that returns static JSON data
|
|
55
|
+
|
|
56
|
+
```robinpath
|
|
57
|
+
any "myapi" "/api/products" [{"id": 1}]
|
|
58
|
+
```
|
|
59
|
+
|
|
60
|
+
### Register a POST route that returns static JSON data
|
|
61
|
+
|
|
62
|
+
```robinpath
|
|
63
|
+
any "myapi" "/api/products" {"created": true}
|
|
64
|
+
```
|
|
65
|
+
|
|
66
|
+
### Register a PUT route that returns static JSON data
|
|
67
|
+
|
|
68
|
+
```robinpath
|
|
69
|
+
any "myapi" "/api/products/:id" {"updated": true}
|
|
70
|
+
```
|
|
71
|
+
|
|
72
|
+
## Integration with RobinPath
|
|
73
|
+
|
|
74
|
+
```typescript
|
|
75
|
+
import { RobinPath } from "@wiredwp/robinpath";
|
|
76
|
+
import Module from "@robinpath/http";
|
|
77
|
+
|
|
78
|
+
const rp = new RobinPath();
|
|
79
|
+
rp.registerModule(Module.name, Module.functions);
|
|
80
|
+
rp.registerModuleMeta(Module.name, Module.functionMetadata);
|
|
81
|
+
|
|
82
|
+
const result = await rp.executeScript(`
|
|
83
|
+
any "myapi" "/api/products" [{"id": 1}]
|
|
84
|
+
`);
|
|
85
|
+
```
|
|
86
|
+
|
|
87
|
+
## Full API Reference
|
|
88
|
+
|
|
89
|
+
See [MODULE.md](./MODULE.md) for complete documentation including all parameters, return types, error handling, and advanced examples.
|
|
90
|
+
|
|
91
|
+
## Related Modules
|
|
92
|
+
|
|
93
|
+
- [`@robinpath/json`](../json) — JSON module for complementary functionality
|
|
94
|
+
|
|
95
|
+
## License
|
|
96
|
+
|
|
97
|
+
MIT
|
package/dist/http.d.ts
ADDED
|
@@ -0,0 +1,191 @@
|
|
|
1
|
+
import type { BuiltinHandler } from "@wiredwp/robinpath";
|
|
2
|
+
export declare const HttpFunctions: Record<string, BuiltinHandler>;
|
|
3
|
+
export declare const HttpFunctionMetadata: {
|
|
4
|
+
createServer: {
|
|
5
|
+
description: string;
|
|
6
|
+
parameters: {
|
|
7
|
+
name: string;
|
|
8
|
+
dataType: string;
|
|
9
|
+
description: string;
|
|
10
|
+
formInputType: string;
|
|
11
|
+
required: boolean;
|
|
12
|
+
}[];
|
|
13
|
+
returnType: string;
|
|
14
|
+
returnDescription: string;
|
|
15
|
+
example: string;
|
|
16
|
+
};
|
|
17
|
+
get: {
|
|
18
|
+
description: string;
|
|
19
|
+
parameters: {
|
|
20
|
+
name: string;
|
|
21
|
+
dataType: string;
|
|
22
|
+
description: string;
|
|
23
|
+
formInputType: string;
|
|
24
|
+
required: boolean;
|
|
25
|
+
}[];
|
|
26
|
+
returnType: string;
|
|
27
|
+
returnDescription: string;
|
|
28
|
+
example: string;
|
|
29
|
+
};
|
|
30
|
+
post: {
|
|
31
|
+
description: string;
|
|
32
|
+
parameters: {
|
|
33
|
+
name: string;
|
|
34
|
+
dataType: string;
|
|
35
|
+
description: string;
|
|
36
|
+
formInputType: string;
|
|
37
|
+
required: boolean;
|
|
38
|
+
}[];
|
|
39
|
+
returnType: string;
|
|
40
|
+
returnDescription: string;
|
|
41
|
+
example: string;
|
|
42
|
+
};
|
|
43
|
+
put: {
|
|
44
|
+
description: string;
|
|
45
|
+
parameters: {
|
|
46
|
+
name: string;
|
|
47
|
+
dataType: string;
|
|
48
|
+
description: string;
|
|
49
|
+
formInputType: string;
|
|
50
|
+
required: boolean;
|
|
51
|
+
}[];
|
|
52
|
+
returnType: string;
|
|
53
|
+
returnDescription: string;
|
|
54
|
+
example: string;
|
|
55
|
+
};
|
|
56
|
+
delete: {
|
|
57
|
+
description: string;
|
|
58
|
+
parameters: {
|
|
59
|
+
name: string;
|
|
60
|
+
dataType: string;
|
|
61
|
+
description: string;
|
|
62
|
+
formInputType: string;
|
|
63
|
+
required: boolean;
|
|
64
|
+
}[];
|
|
65
|
+
returnType: string;
|
|
66
|
+
returnDescription: string;
|
|
67
|
+
example: string;
|
|
68
|
+
};
|
|
69
|
+
html: {
|
|
70
|
+
description: string;
|
|
71
|
+
parameters: {
|
|
72
|
+
name: string;
|
|
73
|
+
dataType: string;
|
|
74
|
+
description: string;
|
|
75
|
+
formInputType: string;
|
|
76
|
+
required: boolean;
|
|
77
|
+
}[];
|
|
78
|
+
returnType: string;
|
|
79
|
+
returnDescription: string;
|
|
80
|
+
example: string;
|
|
81
|
+
};
|
|
82
|
+
file: {
|
|
83
|
+
description: string;
|
|
84
|
+
parameters: {
|
|
85
|
+
name: string;
|
|
86
|
+
dataType: string;
|
|
87
|
+
description: string;
|
|
88
|
+
formInputType: string;
|
|
89
|
+
required: boolean;
|
|
90
|
+
}[];
|
|
91
|
+
returnType: string;
|
|
92
|
+
returnDescription: string;
|
|
93
|
+
example: string;
|
|
94
|
+
};
|
|
95
|
+
redirect: {
|
|
96
|
+
description: string;
|
|
97
|
+
parameters: {
|
|
98
|
+
name: string;
|
|
99
|
+
dataType: string;
|
|
100
|
+
description: string;
|
|
101
|
+
formInputType: string;
|
|
102
|
+
required: boolean;
|
|
103
|
+
}[];
|
|
104
|
+
returnType: string;
|
|
105
|
+
returnDescription: string;
|
|
106
|
+
example: string;
|
|
107
|
+
};
|
|
108
|
+
static: {
|
|
109
|
+
description: string;
|
|
110
|
+
parameters: {
|
|
111
|
+
name: string;
|
|
112
|
+
dataType: string;
|
|
113
|
+
description: string;
|
|
114
|
+
formInputType: string;
|
|
115
|
+
required: boolean;
|
|
116
|
+
}[];
|
|
117
|
+
returnType: string;
|
|
118
|
+
returnDescription: string;
|
|
119
|
+
example: string;
|
|
120
|
+
};
|
|
121
|
+
cors: {
|
|
122
|
+
description: string;
|
|
123
|
+
parameters: {
|
|
124
|
+
name: string;
|
|
125
|
+
dataType: string;
|
|
126
|
+
description: string;
|
|
127
|
+
formInputType: string;
|
|
128
|
+
required: boolean;
|
|
129
|
+
}[];
|
|
130
|
+
returnType: string;
|
|
131
|
+
returnDescription: string;
|
|
132
|
+
example: string;
|
|
133
|
+
};
|
|
134
|
+
listen: {
|
|
135
|
+
description: string;
|
|
136
|
+
parameters: {
|
|
137
|
+
name: string;
|
|
138
|
+
dataType: string;
|
|
139
|
+
description: string;
|
|
140
|
+
formInputType: string;
|
|
141
|
+
required: boolean;
|
|
142
|
+
}[];
|
|
143
|
+
returnType: string;
|
|
144
|
+
returnDescription: string;
|
|
145
|
+
example: string;
|
|
146
|
+
};
|
|
147
|
+
stop: {
|
|
148
|
+
description: string;
|
|
149
|
+
parameters: {
|
|
150
|
+
name: string;
|
|
151
|
+
dataType: string;
|
|
152
|
+
description: string;
|
|
153
|
+
formInputType: string;
|
|
154
|
+
required: boolean;
|
|
155
|
+
}[];
|
|
156
|
+
returnType: string;
|
|
157
|
+
returnDescription: string;
|
|
158
|
+
example: string;
|
|
159
|
+
};
|
|
160
|
+
status: {
|
|
161
|
+
description: string;
|
|
162
|
+
parameters: {
|
|
163
|
+
name: string;
|
|
164
|
+
dataType: string;
|
|
165
|
+
description: string;
|
|
166
|
+
formInputType: string;
|
|
167
|
+
required: boolean;
|
|
168
|
+
}[];
|
|
169
|
+
returnType: string;
|
|
170
|
+
returnDescription: string;
|
|
171
|
+
example: string;
|
|
172
|
+
};
|
|
173
|
+
logs: {
|
|
174
|
+
description: string;
|
|
175
|
+
parameters: {
|
|
176
|
+
name: string;
|
|
177
|
+
dataType: string;
|
|
178
|
+
description: string;
|
|
179
|
+
formInputType: string;
|
|
180
|
+
required: boolean;
|
|
181
|
+
}[];
|
|
182
|
+
returnType: string;
|
|
183
|
+
returnDescription: string;
|
|
184
|
+
example: string;
|
|
185
|
+
};
|
|
186
|
+
};
|
|
187
|
+
export declare const HttpModuleMetadata: {
|
|
188
|
+
description: string;
|
|
189
|
+
methods: string[];
|
|
190
|
+
};
|
|
191
|
+
//# sourceMappingURL=http.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"http.d.ts","sourceRoot":"","sources":["../src/http.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,cAAc,EAAoC,MAAM,oBAAoB,CAAC;AA8W3F,eAAO,MAAM,aAAa,EAAE,MAAM,CAAC,MAAM,EAAE,cAAc,CAExD,CAAC;AAEF,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA6IhC,CAAC;AAEF,eAAO,MAAM,kBAAkB;;;CAG9B,CAAC"}
|
package/dist/http.js
ADDED
|
@@ -0,0 +1,474 @@
|
|
|
1
|
+
const servers = new Map();
|
|
2
|
+
const MIME_TYPES = {
|
|
3
|
+
".html": "text/html",
|
|
4
|
+
".htm": "text/html",
|
|
5
|
+
".css": "text/css",
|
|
6
|
+
".js": "application/javascript",
|
|
7
|
+
".mjs": "application/javascript",
|
|
8
|
+
".json": "application/json",
|
|
9
|
+
".xml": "application/xml",
|
|
10
|
+
".txt": "text/plain",
|
|
11
|
+
".csv": "text/csv",
|
|
12
|
+
".png": "image/png",
|
|
13
|
+
".jpg": "image/jpeg",
|
|
14
|
+
".jpeg": "image/jpeg",
|
|
15
|
+
".gif": "image/gif",
|
|
16
|
+
".svg": "image/svg+xml",
|
|
17
|
+
".ico": "image/x-icon",
|
|
18
|
+
".webp": "image/webp",
|
|
19
|
+
".pdf": "application/pdf",
|
|
20
|
+
".zip": "application/zip",
|
|
21
|
+
".gz": "application/gzip",
|
|
22
|
+
".tar": "application/x-tar",
|
|
23
|
+
".mp3": "audio/mpeg",
|
|
24
|
+
".mp4": "video/mp4",
|
|
25
|
+
".webm": "video/webm",
|
|
26
|
+
".woff": "font/woff",
|
|
27
|
+
".woff2": "font/woff2",
|
|
28
|
+
".ttf": "font/ttf",
|
|
29
|
+
".otf": "font/otf",
|
|
30
|
+
".eot": "application/vnd.ms-fontobject",
|
|
31
|
+
".xlsx": "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet",
|
|
32
|
+
".xls": "application/vnd.ms-excel",
|
|
33
|
+
".docx": "application/vnd.openxmlformats-officedocument.wordprocessingml.document",
|
|
34
|
+
".doc": "application/msword",
|
|
35
|
+
".pptx": "application/vnd.openxmlformats-officedocument.presentationml.presentation",
|
|
36
|
+
".ppt": "application/vnd.ms-powerpoint",
|
|
37
|
+
".wasm": "application/wasm",
|
|
38
|
+
".map": "application/json",
|
|
39
|
+
};
|
|
40
|
+
function getMimeType(filePath) {
|
|
41
|
+
const ext = any(filePath).toLowerCase();
|
|
42
|
+
return MIME_TYPES[ext] || "application/octet-stream";
|
|
43
|
+
}
|
|
44
|
+
function matchRoute(pattern, urlPath) {
|
|
45
|
+
const params = {};
|
|
46
|
+
if (pattern === urlPath)
|
|
47
|
+
return { matched: true, params };
|
|
48
|
+
if (pattern.endsWith("/*")) {
|
|
49
|
+
const prefix = pattern.slice(0, -2);
|
|
50
|
+
if (urlPath === prefix || urlPath.startsWith(prefix + "/")) {
|
|
51
|
+
params["*"] = urlPath.slice(prefix.length + 1);
|
|
52
|
+
return { matched: true, params };
|
|
53
|
+
}
|
|
54
|
+
return { matched: false, params };
|
|
55
|
+
}
|
|
56
|
+
const patternParts = pattern.split("/");
|
|
57
|
+
const urlParts = urlPath.split("/");
|
|
58
|
+
if (patternParts.length !== urlParts.length)
|
|
59
|
+
return { matched: false, params };
|
|
60
|
+
for (let i = 0; i < patternParts.length; i++) {
|
|
61
|
+
const pp = patternParts[i];
|
|
62
|
+
const up = urlParts[i];
|
|
63
|
+
if (pp.startsWith(":")) {
|
|
64
|
+
params[pp.slice(1)] = decodeURIComponent(up);
|
|
65
|
+
}
|
|
66
|
+
else if (pp !== up) {
|
|
67
|
+
return { matched: false, params };
|
|
68
|
+
}
|
|
69
|
+
}
|
|
70
|
+
return { matched: true, params };
|
|
71
|
+
}
|
|
72
|
+
function getState(id) {
|
|
73
|
+
const state = servers.get(id);
|
|
74
|
+
if (!state)
|
|
75
|
+
throw new Error("HTTP server not found");
|
|
76
|
+
return state;
|
|
77
|
+
}
|
|
78
|
+
function addRoute(id, method, routePath, data, responseType, opts) {
|
|
79
|
+
const state = getState(id);
|
|
80
|
+
const options = (opts && typeof opts === "object" ? opts : {});
|
|
81
|
+
const status = typeof options.status === "number" ? options.status : (responseType === "redirect" ? 302 : 200);
|
|
82
|
+
const headers = (options.headers && typeof options.headers === "object" ? options.headers : {});
|
|
83
|
+
state.routes.push({ method: method.toUpperCase(), pattern: routePath, responseType, data, status, headers });
|
|
84
|
+
return { registered: true, method: method.toUpperCase(), path: routePath, responseType };
|
|
85
|
+
}
|
|
86
|
+
function createRequestHandler(state) {
|
|
87
|
+
return (req, res) => {
|
|
88
|
+
const method = (req.method || "GET").toUpperCase();
|
|
89
|
+
const parsedUrl = new URL(req.url || "/", "http://" + (req.headers.host || "localhost"));
|
|
90
|
+
const urlPath = parsedUrl.pathname;
|
|
91
|
+
let statusCode = 404;
|
|
92
|
+
if (state.corsEnabled) {
|
|
93
|
+
res.setHeader("Access-Control-Allow-Origin", state.corsOrigin);
|
|
94
|
+
res.setHeader("Access-Control-Allow-Methods", state.corsMethods);
|
|
95
|
+
res.setHeader("Access-Control-Allow-Headers", state.corsHeaders);
|
|
96
|
+
res.setHeader("Access-Control-Max-Age", "86400");
|
|
97
|
+
}
|
|
98
|
+
if (state.corsEnabled && method === "OPTIONS") {
|
|
99
|
+
statusCode = 204;
|
|
100
|
+
if (state.logRequests)
|
|
101
|
+
state.requestLog.push({ method, url: urlPath, timestamp: Date.now(), status: statusCode });
|
|
102
|
+
res.writeHead(204);
|
|
103
|
+
res.end();
|
|
104
|
+
return;
|
|
105
|
+
}
|
|
106
|
+
for (const route of state.routes) {
|
|
107
|
+
if (route.method !== "*" && route.method !== method)
|
|
108
|
+
continue;
|
|
109
|
+
const match = matchRoute(route.pattern, urlPath);
|
|
110
|
+
if (!match.matched)
|
|
111
|
+
continue;
|
|
112
|
+
statusCode = route.status;
|
|
113
|
+
for (const [key, val] of Object.entries(route.headers))
|
|
114
|
+
res.setHeader(key, val);
|
|
115
|
+
switch (route.responseType) {
|
|
116
|
+
case "json": {
|
|
117
|
+
res.setHeader("Content-Type", "application/json");
|
|
118
|
+
res.writeHead(statusCode);
|
|
119
|
+
res.end(JSON.stringify(route.data));
|
|
120
|
+
break;
|
|
121
|
+
}
|
|
122
|
+
case "html": {
|
|
123
|
+
res.setHeader("Content-Type", "text/html; charset=utf-8");
|
|
124
|
+
res.writeHead(statusCode);
|
|
125
|
+
res.end(String(route.data));
|
|
126
|
+
break;
|
|
127
|
+
}
|
|
128
|
+
case "text": {
|
|
129
|
+
res.setHeader("Content-Type", "text/plain; charset=utf-8");
|
|
130
|
+
res.writeHead(statusCode);
|
|
131
|
+
res.end(String(route.data));
|
|
132
|
+
break;
|
|
133
|
+
}
|
|
134
|
+
case "file": {
|
|
135
|
+
const filePath = String(route.data);
|
|
136
|
+
try {
|
|
137
|
+
if (!any(filePath)) {
|
|
138
|
+
statusCode = 404;
|
|
139
|
+
res.setHeader("Content-Type", "application/json");
|
|
140
|
+
res.writeHead(404);
|
|
141
|
+
res.end(JSON.stringify({ error: "File not found", path: filePath }));
|
|
142
|
+
}
|
|
143
|
+
else {
|
|
144
|
+
const mime = getMimeType(filePath);
|
|
145
|
+
res.setHeader("Content-Type", mime);
|
|
146
|
+
res.writeHead(statusCode);
|
|
147
|
+
const stream = any(filePath);
|
|
148
|
+
stream.pipe(res);
|
|
149
|
+
}
|
|
150
|
+
}
|
|
151
|
+
catch {
|
|
152
|
+
statusCode = 500;
|
|
153
|
+
res.setHeader("Content-Type", "application/json");
|
|
154
|
+
res.writeHead(500);
|
|
155
|
+
res.end(JSON.stringify({ error: "Failed to read file" }));
|
|
156
|
+
}
|
|
157
|
+
break;
|
|
158
|
+
}
|
|
159
|
+
case "redirect": {
|
|
160
|
+
res.setHeader("Location", String(route.data));
|
|
161
|
+
res.writeHead(statusCode);
|
|
162
|
+
res.end();
|
|
163
|
+
break;
|
|
164
|
+
}
|
|
165
|
+
}
|
|
166
|
+
if (state.logRequests)
|
|
167
|
+
state.requestLog.push({ method, url: urlPath, timestamp: Date.now(), status: statusCode });
|
|
168
|
+
return;
|
|
169
|
+
}
|
|
170
|
+
for (const dir of state.staticDirs) {
|
|
171
|
+
const filePath = any(dir, urlPath);
|
|
172
|
+
try {
|
|
173
|
+
if (any(filePath) && any(filePath).isFile()) {
|
|
174
|
+
statusCode = 200;
|
|
175
|
+
res.setHeader("Content-Type", getMimeType(filePath));
|
|
176
|
+
res.writeHead(200);
|
|
177
|
+
any(filePath).pipe(res);
|
|
178
|
+
if (state.logRequests)
|
|
179
|
+
state.requestLog.push({ method, url: urlPath, timestamp: Date.now(), status: statusCode });
|
|
180
|
+
return;
|
|
181
|
+
}
|
|
182
|
+
}
|
|
183
|
+
catch { /* continue */ }
|
|
184
|
+
}
|
|
185
|
+
statusCode = 404;
|
|
186
|
+
res.setHeader("Content-Type", "application/json");
|
|
187
|
+
res.writeHead(404);
|
|
188
|
+
res.end(JSON.stringify({ error: "Not Found", path: urlPath, method }));
|
|
189
|
+
if (state.logRequests)
|
|
190
|
+
state.requestLog.push({ method, url: urlPath, timestamp: Date.now(), status: statusCode });
|
|
191
|
+
};
|
|
192
|
+
}
|
|
193
|
+
const createServer = (args) => {
|
|
194
|
+
const id = String(args[0] ?? "default");
|
|
195
|
+
const opts = (args[1] && typeof args[1] === "object" ? args[1] : {});
|
|
196
|
+
if (servers.has(id))
|
|
197
|
+
return { id, existing: true, message: "Server already exists" };
|
|
198
|
+
const state = {
|
|
199
|
+
server: null,
|
|
200
|
+
port: typeof opts.port === "number" ? opts.port : 3000,
|
|
201
|
+
host: typeof opts.host === "string" ? opts.host : "127.0.0.1",
|
|
202
|
+
routes: [],
|
|
203
|
+
staticDirs: [],
|
|
204
|
+
corsEnabled: false,
|
|
205
|
+
corsOrigin: "*",
|
|
206
|
+
corsMethods: "GET,POST,PUT,DELETE,PATCH,OPTIONS",
|
|
207
|
+
corsHeaders: "Content-Type,Authorization,X-Requested-With",
|
|
208
|
+
requestLog: [],
|
|
209
|
+
logRequests: opts.logRequests === true,
|
|
210
|
+
};
|
|
211
|
+
servers.set(id, state);
|
|
212
|
+
return { id, port: state.port, host: state.host, created: true };
|
|
213
|
+
};
|
|
214
|
+
const get = (args) => {
|
|
215
|
+
return addRoute(String(args[0] ?? "default"), "GET", String(args[1] ?? "/"), args[2] ?? null, "json", args[3] ?? null);
|
|
216
|
+
};
|
|
217
|
+
const post = (args) => {
|
|
218
|
+
return addRoute(String(args[0] ?? "default"), "POST", String(args[1] ?? "/"), args[2] ?? null, "json", args[3] ?? null);
|
|
219
|
+
};
|
|
220
|
+
const put = (args) => {
|
|
221
|
+
return addRoute(String(args[0] ?? "default"), "PUT", String(args[1] ?? "/"), args[2] ?? null, "json", args[3] ?? null);
|
|
222
|
+
};
|
|
223
|
+
const del = (args) => {
|
|
224
|
+
return addRoute(String(args[0] ?? "default"), "DELETE", String(args[1] ?? "/"), args[2] ?? null, "json", args[3] ?? null);
|
|
225
|
+
};
|
|
226
|
+
const html = (args) => {
|
|
227
|
+
return addRoute(String(args[0] ?? "default"), "GET", String(args[1] ?? "/"), String(args[2] ?? ""), "html", args[3] ?? null);
|
|
228
|
+
};
|
|
229
|
+
const file = (args) => {
|
|
230
|
+
return addRoute(String(args[0] ?? "default"), "GET", String(args[1] ?? "/"), String(args[2] ?? ""), "file", args[3] ?? null);
|
|
231
|
+
};
|
|
232
|
+
const redirect = (args) => {
|
|
233
|
+
const opts = (args[3] && typeof args[3] === "object" ? args[3] : {});
|
|
234
|
+
const status = typeof opts.status === "number" ? opts.status : 302;
|
|
235
|
+
return addRoute(String(args[0] ?? "default"), "*", String(args[1] ?? "/"), String(args[2] ?? "/"), "redirect", { status, ...(opts.headers ? { headers: opts.headers } : {}) });
|
|
236
|
+
};
|
|
237
|
+
const staticDir = (args) => {
|
|
238
|
+
const id = String(args[0] ?? "default");
|
|
239
|
+
const dirPath = String(args[1] ?? "");
|
|
240
|
+
const state = getState(id);
|
|
241
|
+
const resolved = any(dirPath);
|
|
242
|
+
if (!any(resolved))
|
|
243
|
+
return { error: "Directory not found: " + resolved };
|
|
244
|
+
state.staticDirs.push(resolved);
|
|
245
|
+
return { registered: true, directory: resolved, totalStaticDirs: state.staticDirs.length };
|
|
246
|
+
};
|
|
247
|
+
const cors = (args) => {
|
|
248
|
+
const id = String(args[0] ?? "default");
|
|
249
|
+
const opts = (args[1] && typeof args[1] === "object" ? args[1] : {});
|
|
250
|
+
const state = getState(id);
|
|
251
|
+
state.corsEnabled = true;
|
|
252
|
+
if (typeof opts.origin === "string")
|
|
253
|
+
state.corsOrigin = opts.origin;
|
|
254
|
+
if (typeof opts.methods === "string")
|
|
255
|
+
state.corsMethods = opts.methods;
|
|
256
|
+
if (typeof opts.headers === "string")
|
|
257
|
+
state.corsHeaders = opts.headers;
|
|
258
|
+
return { enabled: true, origin: state.corsOrigin, methods: state.corsMethods, headers: state.corsHeaders };
|
|
259
|
+
};
|
|
260
|
+
const listen = (args) => {
|
|
261
|
+
const id = String(args[0] ?? "default");
|
|
262
|
+
const portArg = args[1];
|
|
263
|
+
const opts = (args[2] && typeof args[2] === "object" ? args[2] : {});
|
|
264
|
+
const state = getState(id);
|
|
265
|
+
if (state.server && state.server.listening)
|
|
266
|
+
return { id, listening: true, port: state.port, host: state.host, message: "Already listening" };
|
|
267
|
+
if (typeof portArg === "number")
|
|
268
|
+
state.port = portArg;
|
|
269
|
+
else if (typeof opts.port === "number")
|
|
270
|
+
state.port = opts.port;
|
|
271
|
+
if (typeof opts.host === "string")
|
|
272
|
+
state.host = opts.host;
|
|
273
|
+
const server = any(createRequestHandler(state));
|
|
274
|
+
state.server = server;
|
|
275
|
+
return new Promise((resolve, reject) => {
|
|
276
|
+
server.on("error", (err) => reject(new Error("Failed to start server: " + err.message)));
|
|
277
|
+
server.listen(state.port, state.host, () => {
|
|
278
|
+
resolve({ id, listening: true, port: state.port, host: state.host, url: "http://" + state.host + ":" + state.port });
|
|
279
|
+
});
|
|
280
|
+
});
|
|
281
|
+
};
|
|
282
|
+
const stop = (args) => {
|
|
283
|
+
const id = String(args[0] ?? "default");
|
|
284
|
+
const state = getState(id);
|
|
285
|
+
if (!state.server)
|
|
286
|
+
return { id, stopped: true, message: "No server to stop" };
|
|
287
|
+
return new Promise((resolve) => {
|
|
288
|
+
state.server.close(() => { state.server = null; resolve({ id, stopped: true }); });
|
|
289
|
+
setTimeout(() => { if (state.server) {
|
|
290
|
+
state.server = null;
|
|
291
|
+
resolve({ id, stopped: true, forced: true });
|
|
292
|
+
} }, 3000);
|
|
293
|
+
});
|
|
294
|
+
};
|
|
295
|
+
const status = (args) => {
|
|
296
|
+
const id = String(args[0] ?? "default");
|
|
297
|
+
const state = getState(id);
|
|
298
|
+
return {
|
|
299
|
+
id, port: state.port, host: state.host,
|
|
300
|
+
listening: state.server?.listening ?? false,
|
|
301
|
+
routeCount: state.routes.length,
|
|
302
|
+
staticDirCount: state.staticDirs.length,
|
|
303
|
+
corsEnabled: state.corsEnabled,
|
|
304
|
+
requestCount: state.requestLog.length,
|
|
305
|
+
logRequests: state.logRequests,
|
|
306
|
+
};
|
|
307
|
+
};
|
|
308
|
+
const logs = (args) => {
|
|
309
|
+
const id = String(args[0] ?? "default");
|
|
310
|
+
const opts = (args[1] && typeof args[1] === "object" ? args[1] : {});
|
|
311
|
+
const state = getState(id);
|
|
312
|
+
let entries = [...state.requestLog];
|
|
313
|
+
if (typeof opts.method === "string") {
|
|
314
|
+
const m = opts.method.toUpperCase();
|
|
315
|
+
entries = entries.filter((e) => e.method === m);
|
|
316
|
+
}
|
|
317
|
+
if (typeof opts.path === "string") {
|
|
318
|
+
const p = opts.path;
|
|
319
|
+
entries = entries.filter((e) => e.url.startsWith(p));
|
|
320
|
+
}
|
|
321
|
+
if (typeof opts.limit === "number" && opts.limit > 0)
|
|
322
|
+
entries = entries.slice(-opts.limit);
|
|
323
|
+
return entries;
|
|
324
|
+
};
|
|
325
|
+
export const HttpFunctions = {
|
|
326
|
+
createServer, get, post, put, delete: del, html, file, redirect, static: staticDir, cors, listen, stop, status, logs,
|
|
327
|
+
};
|
|
328
|
+
export const HttpFunctionMetadata = {
|
|
329
|
+
createServer: {
|
|
330
|
+
description: "Create a new HTTP server instance (does not start listening yet)",
|
|
331
|
+
parameters: [
|
|
332
|
+
{ name: "id", dataType: "string", description: "Unique server identifier", formInputType: "text", required: true },
|
|
333
|
+
{ name: "opts", dataType: "object", description: "Options: {port?, host?, logRequests?}", formInputType: "json", required: false },
|
|
334
|
+
],
|
|
335
|
+
returnType: "object", returnDescription: "Server creation info",
|
|
336
|
+
example: 'any "myapi" {"port": 8080}',
|
|
337
|
+
},
|
|
338
|
+
get: {
|
|
339
|
+
description: "Register a GET route that returns static JSON data",
|
|
340
|
+
parameters: [
|
|
341
|
+
{ name: "id", dataType: "string", description: "Server ID", formInputType: "text", required: true },
|
|
342
|
+
{ name: "path", dataType: "string", description: "URL path pattern", formInputType: "text", required: true },
|
|
343
|
+
{ name: "data", dataType: "any", description: "JSON data to return", formInputType: "json", required: true },
|
|
344
|
+
{ name: "opts", dataType: "object", description: "Options: {status?, headers?}", formInputType: "json", required: false },
|
|
345
|
+
],
|
|
346
|
+
returnType: "object", returnDescription: "Route registration info",
|
|
347
|
+
example: 'any "myapi" "/api/products" [{"id": 1}]',
|
|
348
|
+
},
|
|
349
|
+
post: {
|
|
350
|
+
description: "Register a POST route that returns static JSON data",
|
|
351
|
+
parameters: [
|
|
352
|
+
{ name: "id", dataType: "string", description: "Server ID", formInputType: "text", required: true },
|
|
353
|
+
{ name: "path", dataType: "string", description: "URL path pattern", formInputType: "text", required: true },
|
|
354
|
+
{ name: "data", dataType: "any", description: "JSON data to return", formInputType: "json", required: true },
|
|
355
|
+
{ name: "opts", dataType: "object", description: "Options: {status?, headers?}", formInputType: "json", required: false },
|
|
356
|
+
],
|
|
357
|
+
returnType: "object", returnDescription: "Route registration info",
|
|
358
|
+
example: 'any "myapi" "/api/products" {"created": true}',
|
|
359
|
+
},
|
|
360
|
+
put: {
|
|
361
|
+
description: "Register a PUT route that returns static JSON data",
|
|
362
|
+
parameters: [
|
|
363
|
+
{ name: "id", dataType: "string", description: "Server ID", formInputType: "text", required: true },
|
|
364
|
+
{ name: "path", dataType: "string", description: "URL path pattern", formInputType: "text", required: true },
|
|
365
|
+
{ name: "data", dataType: "any", description: "JSON data to return", formInputType: "json", required: true },
|
|
366
|
+
{ name: "opts", dataType: "object", description: "Options: {status?, headers?}", formInputType: "json", required: false },
|
|
367
|
+
],
|
|
368
|
+
returnType: "object", returnDescription: "Route registration info",
|
|
369
|
+
example: 'any "myapi" "/api/products/:id" {"updated": true}',
|
|
370
|
+
},
|
|
371
|
+
delete: {
|
|
372
|
+
description: "Register a DELETE route that returns static JSON data",
|
|
373
|
+
parameters: [
|
|
374
|
+
{ name: "id", dataType: "string", description: "Server ID", formInputType: "text", required: true },
|
|
375
|
+
{ name: "path", dataType: "string", description: "URL path pattern", formInputType: "text", required: true },
|
|
376
|
+
{ name: "data", dataType: "any", description: "JSON data to return", formInputType: "json", required: true },
|
|
377
|
+
{ name: "opts", dataType: "object", description: "Options: {status?, headers?}", formInputType: "json", required: false },
|
|
378
|
+
],
|
|
379
|
+
returnType: "object", returnDescription: "Route registration info",
|
|
380
|
+
example: 'any "myapi" "/api/products/:id" {"deleted": true}',
|
|
381
|
+
},
|
|
382
|
+
html: {
|
|
383
|
+
description: "Register a GET route that serves an HTML string",
|
|
384
|
+
parameters: [
|
|
385
|
+
{ name: "id", dataType: "string", description: "Server ID", formInputType: "text", required: true },
|
|
386
|
+
{ name: "path", dataType: "string", description: "URL path", formInputType: "text", required: true },
|
|
387
|
+
{ name: "content", dataType: "string", description: "HTML string to serve", formInputType: "textarea", required: true },
|
|
388
|
+
{ name: "opts", dataType: "object", description: "Options: {status?, headers?}", formInputType: "json", required: false },
|
|
389
|
+
],
|
|
390
|
+
returnType: "object", returnDescription: "Route registration info",
|
|
391
|
+
example: 'any "myapi" "/" "Hello World"',
|
|
392
|
+
},
|
|
393
|
+
file: {
|
|
394
|
+
description: "Register a GET route that serves a file from disk",
|
|
395
|
+
parameters: [
|
|
396
|
+
{ name: "id", dataType: "string", description: "Server ID", formInputType: "text", required: true },
|
|
397
|
+
{ name: "path", dataType: "string", description: "URL path", formInputType: "text", required: true },
|
|
398
|
+
{ name: "filePath", dataType: "string", description: "Absolute file path on disk", formInputType: "text", required: true },
|
|
399
|
+
{ name: "opts", dataType: "object", description: "Options: {status?, headers?}", formInputType: "json", required: false },
|
|
400
|
+
],
|
|
401
|
+
returnType: "object", returnDescription: "Route registration info",
|
|
402
|
+
example: 'any "myapi" "/report" "C:/reports/report.pdf"',
|
|
403
|
+
},
|
|
404
|
+
redirect: {
|
|
405
|
+
description: "Register a route that redirects to another URL",
|
|
406
|
+
parameters: [
|
|
407
|
+
{ name: "id", dataType: "string", description: "Server ID", formInputType: "text", required: true },
|
|
408
|
+
{ name: "fromPath", dataType: "string", description: "URL path to redirect from", formInputType: "text", required: true },
|
|
409
|
+
{ name: "toUrl", dataType: "string", description: "Target URL to redirect to", formInputType: "text", required: true },
|
|
410
|
+
{ name: "opts", dataType: "object", description: "Options: {status? (301 or 302)}", formInputType: "json", required: false },
|
|
411
|
+
],
|
|
412
|
+
returnType: "object", returnDescription: "Route registration info",
|
|
413
|
+
example: 'any "myapi" "/old" "/new" {"status": 301}',
|
|
414
|
+
},
|
|
415
|
+
static: {
|
|
416
|
+
description: "Register a directory to serve static files from",
|
|
417
|
+
parameters: [
|
|
418
|
+
{ name: "id", dataType: "string", description: "Server ID", formInputType: "text", required: true },
|
|
419
|
+
{ name: "dirPath", dataType: "string", description: "Absolute directory path", formInputType: "text", required: true },
|
|
420
|
+
{ name: "opts", dataType: "object", description: "Options (reserved)", formInputType: "json", required: false },
|
|
421
|
+
],
|
|
422
|
+
returnType: "object", returnDescription: "Static directory registration info",
|
|
423
|
+
example: 'any "myapi" "C:/mysite/public"',
|
|
424
|
+
},
|
|
425
|
+
cors: {
|
|
426
|
+
description: "Enable CORS on the server",
|
|
427
|
+
parameters: [
|
|
428
|
+
{ name: "id", dataType: "string", description: "Server ID", formInputType: "text", required: true },
|
|
429
|
+
{ name: "opts", dataType: "object", description: "Options: {origin?, methods?, headers?}", formInputType: "json", required: false },
|
|
430
|
+
],
|
|
431
|
+
returnType: "object", returnDescription: "CORS configuration info",
|
|
432
|
+
example: 'any "myapi" {"origin": "http://localhost:5173"}',
|
|
433
|
+
},
|
|
434
|
+
listen: {
|
|
435
|
+
description: "Start the HTTP server listening for requests",
|
|
436
|
+
parameters: [
|
|
437
|
+
{ name: "id", dataType: "string", description: "Server ID", formInputType: "text", required: true },
|
|
438
|
+
{ name: "port", dataType: "number", description: "Port number (default 3000)", formInputType: "text", required: false },
|
|
439
|
+
{ name: "opts", dataType: "object", description: "Options: {host?}", formInputType: "json", required: false },
|
|
440
|
+
],
|
|
441
|
+
returnType: "object", returnDescription: "Server listening info with URL",
|
|
442
|
+
example: 'any "myapi" 8080',
|
|
443
|
+
},
|
|
444
|
+
stop: {
|
|
445
|
+
description: "Stop the HTTP server gracefully",
|
|
446
|
+
parameters: [
|
|
447
|
+
{ name: "id", dataType: "string", description: "Server ID", formInputType: "text", required: true },
|
|
448
|
+
],
|
|
449
|
+
returnType: "object", returnDescription: "Server stop confirmation",
|
|
450
|
+
example: 'any "myapi"',
|
|
451
|
+
},
|
|
452
|
+
status: {
|
|
453
|
+
description: "Get server status: port, routes, listening state, request count",
|
|
454
|
+
parameters: [
|
|
455
|
+
{ name: "id", dataType: "string", description: "Server ID", formInputType: "text", required: true },
|
|
456
|
+
],
|
|
457
|
+
returnType: "object", returnDescription: "Server status info",
|
|
458
|
+
example: 'any "myapi"',
|
|
459
|
+
},
|
|
460
|
+
logs: {
|
|
461
|
+
description: "Get the request log for a server",
|
|
462
|
+
parameters: [
|
|
463
|
+
{ name: "id", dataType: "string", description: "Server ID", formInputType: "text", required: true },
|
|
464
|
+
{ name: "opts", dataType: "object", description: "Filter options: {limit?, method?, path?}", formInputType: "json", required: false },
|
|
465
|
+
],
|
|
466
|
+
returnType: "array", returnDescription: "Array of request log entries",
|
|
467
|
+
example: 'any "myapi" {"limit": 10, "method": "GET"}',
|
|
468
|
+
},
|
|
469
|
+
};
|
|
470
|
+
export const HttpModuleMetadata = {
|
|
471
|
+
description: "HTTP server for RobinPath scripts. Register routes with static responses (JSON, HTML, files), enable CORS, serve static directories. No callbacks needed.",
|
|
472
|
+
methods: ["createServer", "get", "post", "put", "delete", "html", "file", "redirect", "static", "cors", "listen", "stop", "status", "logs"],
|
|
473
|
+
};
|
|
474
|
+
//# sourceMappingURL=http.js.map
|
package/dist/http.js.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"http.js","sourceRoot":"","sources":["../src/http.ts"],"names":[],"mappings":"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"}
|
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import type { ModuleAdapter } from "@wiredwp/robinpath";
|
|
2
|
+
declare const HttpModule: ModuleAdapter;
|
|
3
|
+
export default HttpModule;
|
|
4
|
+
export { HttpModule };
|
|
5
|
+
export { HttpFunctions, HttpFunctionMetadata, HttpModuleMetadata } from "./http.js";
|
|
6
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,oBAAoB,CAAC;AAGxD,QAAA,MAAM,UAAU,EAAE,aAMjB,CAAC;AAEF,eAAe,UAAU,CAAC;AAC1B,OAAO,EAAE,UAAU,EAAE,CAAC;AACtB,OAAO,EAAE,aAAa,EAAE,oBAAoB,EAAE,kBAAkB,EAAE,MAAM,WAAW,CAAC"}
|
package/dist/index.js
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { HttpFunctions, HttpFunctionMetadata, HttpModuleMetadata } from "./http.js";
|
|
2
|
+
const HttpModule = {
|
|
3
|
+
name: "http",
|
|
4
|
+
functions: HttpFunctions,
|
|
5
|
+
functionMetadata: HttpFunctionMetadata,
|
|
6
|
+
moduleMetadata: HttpModuleMetadata,
|
|
7
|
+
global: false,
|
|
8
|
+
}; // as ModuleAdapter
|
|
9
|
+
export default HttpModule;
|
|
10
|
+
export { HttpModule };
|
|
11
|
+
export { HttpFunctions, HttpFunctionMetadata, HttpModuleMetadata } from "./http.js";
|
|
12
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,aAAa,EAAE,oBAAoB,EAAE,kBAAkB,EAAE,MAAM,WAAW,CAAC;AAEpF,MAAM,UAAU,GAAkB;IAChC,IAAI,EAAE,MAAM;IACZ,SAAS,EAAE,aAAa;IACxB,gBAAgB,EAAE,oBAA2B;IAC7C,cAAc,EAAE,kBAAyB;IACzC,MAAM,EAAE,KAAK;CACd,CAAC,CAAC,mBAAmB;AAEtB,eAAe,UAAU,CAAC;AAC1B,OAAO,EAAE,UAAU,EAAE,CAAC;AACtB,OAAO,EAAE,aAAa,EAAE,oBAAoB,EAAE,kBAAkB,EAAE,MAAM,WAAW,CAAC"}
|
package/package.json
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@robinpath/http",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"publishConfig": {
|
|
5
|
+
"access": "public"
|
|
6
|
+
},
|
|
7
|
+
"type": "module",
|
|
8
|
+
"main": "dist/index.js",
|
|
9
|
+
"types": "dist/index.d.ts",
|
|
10
|
+
"exports": {
|
|
11
|
+
".": {
|
|
12
|
+
"import": "./dist/index.js",
|
|
13
|
+
"types": "./dist/index.d.ts"
|
|
14
|
+
}
|
|
15
|
+
},
|
|
16
|
+
"files": [
|
|
17
|
+
"dist"
|
|
18
|
+
],
|
|
19
|
+
"scripts": {
|
|
20
|
+
"build": "tsc"
|
|
21
|
+
},
|
|
22
|
+
"peerDependencies": {
|
|
23
|
+
"@wiredwp/robinpath": ">=0.20.0"
|
|
24
|
+
},
|
|
25
|
+
"devDependencies": {
|
|
26
|
+
"@wiredwp/robinpath": "^0.30.1",
|
|
27
|
+
"typescript": "^5.6.0"
|
|
28
|
+
}
|
|
29
|
+
}
|