@ezetgalaxy/titan 26.8.0 → 26.8.2
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/package.json +1 -1
- package/templates/js/server/src/main.rs +1 -6
- package/templates/js/titan/bundle.js +1 -1
- package/templates/js/titan/dev.js +258 -194
- package/templates/rust/server/Cargo.toml +12 -0
- package/templates/rust/server/src/main.rs +0 -6
- package/templates/rust/titan/bundle.js +157 -157
- package/templates/rust/titan/dev.js +266 -194
- package/templates/rust/titan/titan.js +122 -122
- package/templates/js/server/src/actions_rust/mod.rs +0 -15
|
@@ -1,122 +1,122 @@
|
|
|
1
|
-
import fs from "fs";
|
|
2
|
-
import path from "path";
|
|
3
|
-
import { bundle } from "./bundle.js";
|
|
4
|
-
|
|
5
|
-
const cyan = (t) => `\x1b[36m${t}\x1b[0m`;
|
|
6
|
-
const green = (t) => `\x1b[32m${t}\x1b[0m`;
|
|
7
|
-
|
|
8
|
-
const routes = {};
|
|
9
|
-
const dynamicRoutes = {};
|
|
10
|
-
const actionMap = {};
|
|
11
|
-
|
|
12
|
-
function addRoute(method, route) {
|
|
13
|
-
const key = `${method.toUpperCase()}:${route}`;
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
return {
|
|
17
|
-
reply(value) {
|
|
18
|
-
routes[key] = {
|
|
19
|
-
type: typeof value === "object" ? "json" : "text",
|
|
20
|
-
value
|
|
21
|
-
};
|
|
22
|
-
},
|
|
23
|
-
|
|
24
|
-
action(name) {
|
|
25
|
-
if (route.includes(":")) {
|
|
26
|
-
if (!dynamicRoutes[method]) dynamicRoutes[method] = [];
|
|
27
|
-
dynamicRoutes[method].push({
|
|
28
|
-
method: method.toUpperCase(),
|
|
29
|
-
pattern: route,
|
|
30
|
-
action: name
|
|
31
|
-
});
|
|
32
|
-
} else {
|
|
33
|
-
routes[key] = {
|
|
34
|
-
type: "action",
|
|
35
|
-
value: name
|
|
36
|
-
};
|
|
37
|
-
actionMap[key] = name;
|
|
38
|
-
}
|
|
39
|
-
}
|
|
40
|
-
};
|
|
41
|
-
}
|
|
42
|
-
|
|
43
|
-
/**
|
|
44
|
-
* @typedef {Object} RouteHandler
|
|
45
|
-
* @property {(value: any) => void} reply - Send a direct response
|
|
46
|
-
* @property {(name: string) => void} action - Bind to a server-side action
|
|
47
|
-
*/
|
|
48
|
-
|
|
49
|
-
/**
|
|
50
|
-
* Titan App Builder
|
|
51
|
-
*/
|
|
52
|
-
const t = {
|
|
53
|
-
/**
|
|
54
|
-
* Define a GET route
|
|
55
|
-
* @param {string} route
|
|
56
|
-
* @returns {RouteHandler}
|
|
57
|
-
*/
|
|
58
|
-
get(route) {
|
|
59
|
-
return addRoute("GET", route);
|
|
60
|
-
},
|
|
61
|
-
|
|
62
|
-
/**
|
|
63
|
-
* Define a POST route
|
|
64
|
-
* @param {string} route
|
|
65
|
-
* @returns {RouteHandler}
|
|
66
|
-
*/
|
|
67
|
-
post(route) {
|
|
68
|
-
return addRoute("POST", route);
|
|
69
|
-
},
|
|
70
|
-
|
|
71
|
-
log(module, msg) {
|
|
72
|
-
console.log(`[\x1b[35m${module}\x1b[0m] ${msg}`);
|
|
73
|
-
},
|
|
74
|
-
|
|
75
|
-
/**
|
|
76
|
-
* Start the Titan Server
|
|
77
|
-
* @param {number} [port=3000]
|
|
78
|
-
* @param {string} [msg=""]
|
|
79
|
-
*/
|
|
80
|
-
async start(port = 3000, msg = "") {
|
|
81
|
-
try {
|
|
82
|
-
console.log(cyan("[Titan] Preparing runtime..."));
|
|
83
|
-
await bundle();
|
|
84
|
-
|
|
85
|
-
const base = path.join(process.cwd(), "server");
|
|
86
|
-
if (!fs.existsSync(base)) {
|
|
87
|
-
fs.mkdirSync(base, { recursive: true });
|
|
88
|
-
}
|
|
89
|
-
|
|
90
|
-
const routesPath = path.join(base, "routes.json");
|
|
91
|
-
const actionMapPath = path.join(base, "action_map.json");
|
|
92
|
-
|
|
93
|
-
fs.writeFileSync(
|
|
94
|
-
routesPath,
|
|
95
|
-
JSON.stringify(
|
|
96
|
-
{
|
|
97
|
-
__config: { port },
|
|
98
|
-
routes,
|
|
99
|
-
__dynamic_routes: Object.values(dynamicRoutes).flat()
|
|
100
|
-
},
|
|
101
|
-
null,
|
|
102
|
-
2
|
|
103
|
-
)
|
|
104
|
-
);
|
|
105
|
-
|
|
106
|
-
fs.writeFileSync(
|
|
107
|
-
actionMapPath,
|
|
108
|
-
JSON.stringify(actionMap, null, 2)
|
|
109
|
-
);
|
|
110
|
-
|
|
111
|
-
console.log(green("✔ Titan metadata written successfully"));
|
|
112
|
-
if (msg) console.log(cyan(msg));
|
|
113
|
-
|
|
114
|
-
} catch (e) {
|
|
115
|
-
console.error(`\x1b[31m[Titan] Build Error: ${e.message}\x1b[0m`);
|
|
116
|
-
process.exit(1);
|
|
117
|
-
}
|
|
118
|
-
}
|
|
119
|
-
};
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
export default t;
|
|
1
|
+
import fs from "fs";
|
|
2
|
+
import path from "path";
|
|
3
|
+
import { bundle } from "./bundle.js";
|
|
4
|
+
|
|
5
|
+
const cyan = (t) => `\x1b[36m${t}\x1b[0m`;
|
|
6
|
+
const green = (t) => `\x1b[32m${t}\x1b[0m`;
|
|
7
|
+
|
|
8
|
+
const routes = {};
|
|
9
|
+
const dynamicRoutes = {};
|
|
10
|
+
const actionMap = {};
|
|
11
|
+
|
|
12
|
+
function addRoute(method, route) {
|
|
13
|
+
const key = `${method.toUpperCase()}:${route}`;
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
return {
|
|
17
|
+
reply(value) {
|
|
18
|
+
routes[key] = {
|
|
19
|
+
type: typeof value === "object" ? "json" : "text",
|
|
20
|
+
value
|
|
21
|
+
};
|
|
22
|
+
},
|
|
23
|
+
|
|
24
|
+
action(name) {
|
|
25
|
+
if (route.includes(":")) {
|
|
26
|
+
if (!dynamicRoutes[method]) dynamicRoutes[method] = [];
|
|
27
|
+
dynamicRoutes[method].push({
|
|
28
|
+
method: method.toUpperCase(),
|
|
29
|
+
pattern: route,
|
|
30
|
+
action: name
|
|
31
|
+
});
|
|
32
|
+
} else {
|
|
33
|
+
routes[key] = {
|
|
34
|
+
type: "action",
|
|
35
|
+
value: name
|
|
36
|
+
};
|
|
37
|
+
actionMap[key] = name;
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
};
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
/**
|
|
44
|
+
* @typedef {Object} RouteHandler
|
|
45
|
+
* @property {(value: any) => void} reply - Send a direct response
|
|
46
|
+
* @property {(name: string) => void} action - Bind to a server-side action
|
|
47
|
+
*/
|
|
48
|
+
|
|
49
|
+
/**
|
|
50
|
+
* Titan App Builder
|
|
51
|
+
*/
|
|
52
|
+
const t = {
|
|
53
|
+
/**
|
|
54
|
+
* Define a GET route
|
|
55
|
+
* @param {string} route
|
|
56
|
+
* @returns {RouteHandler}
|
|
57
|
+
*/
|
|
58
|
+
get(route) {
|
|
59
|
+
return addRoute("GET", route);
|
|
60
|
+
},
|
|
61
|
+
|
|
62
|
+
/**
|
|
63
|
+
* Define a POST route
|
|
64
|
+
* @param {string} route
|
|
65
|
+
* @returns {RouteHandler}
|
|
66
|
+
*/
|
|
67
|
+
post(route) {
|
|
68
|
+
return addRoute("POST", route);
|
|
69
|
+
},
|
|
70
|
+
|
|
71
|
+
log(module, msg) {
|
|
72
|
+
console.log(`[\x1b[35m${module}\x1b[0m] ${msg}`);
|
|
73
|
+
},
|
|
74
|
+
|
|
75
|
+
/**
|
|
76
|
+
* Start the Titan Server
|
|
77
|
+
* @param {number} [port=3000]
|
|
78
|
+
* @param {string} [msg=""]
|
|
79
|
+
*/
|
|
80
|
+
async start(port = 3000, msg = "") {
|
|
81
|
+
try {
|
|
82
|
+
console.log(cyan("[Titan] Preparing runtime..."));
|
|
83
|
+
await bundle();
|
|
84
|
+
|
|
85
|
+
const base = path.join(process.cwd(), "server");
|
|
86
|
+
if (!fs.existsSync(base)) {
|
|
87
|
+
fs.mkdirSync(base, { recursive: true });
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
const routesPath = path.join(base, "routes.json");
|
|
91
|
+
const actionMapPath = path.join(base, "action_map.json");
|
|
92
|
+
|
|
93
|
+
fs.writeFileSync(
|
|
94
|
+
routesPath,
|
|
95
|
+
JSON.stringify(
|
|
96
|
+
{
|
|
97
|
+
__config: { port },
|
|
98
|
+
routes,
|
|
99
|
+
__dynamic_routes: Object.values(dynamicRoutes).flat()
|
|
100
|
+
},
|
|
101
|
+
null,
|
|
102
|
+
2
|
|
103
|
+
)
|
|
104
|
+
);
|
|
105
|
+
|
|
106
|
+
fs.writeFileSync(
|
|
107
|
+
actionMapPath,
|
|
108
|
+
JSON.stringify(actionMap, null, 2)
|
|
109
|
+
);
|
|
110
|
+
|
|
111
|
+
console.log(green("✔ Titan metadata written successfully"));
|
|
112
|
+
if (msg) console.log(cyan(msg));
|
|
113
|
+
|
|
114
|
+
} catch (e) {
|
|
115
|
+
console.error(`\x1b[31m[Titan] Build Error: ${e.message}\x1b[0m`);
|
|
116
|
+
process.exit(1);
|
|
117
|
+
}
|
|
118
|
+
}
|
|
119
|
+
};
|
|
120
|
+
|
|
121
|
+
|
|
122
|
+
export default t;
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
// Auto-generated by Titan. Do not edit.
|
|
2
|
-
use axum::response::IntoResponse;
|
|
3
|
-
use axum::http::Request;
|
|
4
|
-
use axum::body::Body;
|
|
5
|
-
use std::future::Future;
|
|
6
|
-
use std::pin::Pin;
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
pub type ActionFn = fn(Request<Body>) -> Pin<Box<dyn Future<Output = axum::response::Response> + Send>>;
|
|
10
|
-
|
|
11
|
-
pub fn get_action(name: &str) -> Option<ActionFn> {
|
|
12
|
-
match name {
|
|
13
|
-
_ => None
|
|
14
|
-
}
|
|
15
|
-
}
|