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
|
const fastify = require("fastify")();
const fastify_static = require('fastify-static');
const api = require("./api/v1");
const yaml = require('js-yaml');
const fs = require('fs');
const { exit } = require("process");
const path = require("path");
const util = require("./api/util");
const git = require("./api/git");
const settings = yaml.load(fs.readFileSync(__dirname + "/../settings.yml", 'utf8'));
const settings_keys = Object.keys(settings);
const mandatory_settings = [ "host", "port", "title", "about", "base_dir" ];
const mandatory_not_included = settings_keys.filter(x => !mandatory_settings.includes(x));
const settings_not_included = mandatory_settings.filter(x => !settings_keys.includes(x));
if(settings_not_included.length !== 0) {
console.log(`Error: settings.yml is missing ${(mandatory_not_included.length > 1) ? "keys" : "key"}:`);
console.log(settings_not_included.join(", "));
exit(1);
}
if(mandatory_not_included.length !== 0) {
console.log(`Error: settings.yml includes ${(mandatory_not_included.length > 1) ? "pointless keys" : "a pointless key"}:`);
console.log(mandatory_not_included.join(", "));
exit(1);
}
const dist_dir = path.join(__dirname, "/../dist");
try {
fs.readdirSync(settings["base_dir"]);
}
catch {
console.error(`Error: Tried opening the base directory. No such directory: ${settings["base_dir"]}`);
exit(1);
}
fastify.setNotFoundHandler({
preValidation: (req, reply, done) => done(),
preHandler: (req, reply, done) => done()
}, function (req, reply)
{
reply.send("404: Not found");
});
fastify.addContentTypeParser("application/x-git-upload-pack-request", (req, payload, done) => done(null, payload));
fastify.register(fastify_static, { root: dist_dir })
fastify.register(api, { prefix: "/api/v1", config: { settings: settings } });
fastify.route({
method: "GET",
path: "/",
handler: (req, reply) =>
{
console.log("AAAA faan");
console.log(dist_dir)
reply.sendFile("app.html");
}
});
fastify.route({
method: "GET",
path: "/app.html",
handler: (req, reply) => reply.redirect("/")
});
fastify.register((fastify_repo, opts, done) =>
{
fastify_repo.setNotFoundHandler({
preValidation: (req, reply, done) => done(),
preHandler: (req, reply, done) => done()
}, function (req, reply)
{
reply.send("404: Not found");
});
fastify_repo.addHook("onRequest", async (req, reply) =>
{
const repo_verification = await util.verifyRepoName(req.params.repo, settings.base_dir);
if(repo_verification !== true) {
if(repo_verification === "ERR_REPO_REGEX") {
reply.code(400).send("Unacceptable git repository name!\n");
}
else if(repo_verification === "ERR_REPO_NOT_FOUND") {
reply.code(404).send("Git repository not found!\n");
}
}
});
fastify_repo.route({
method: "GET",
path: "/:page",
handler: (req, reply) =>
{
if([ "log", "refs", "tree" ].includes(req.params.page)) {
reply.sendFile("app.html");
}
}
});
fastify_repo.route({
method: "GET",
path: "/log/:subpage",
handler: async (req, reply) =>
{
const commit_verification = await util.verifyCommitID(settings.base_dir, req.params.repo + ".git", req.params.subpage);
console.log(commit_verification);
if(commit_verification !== true) {
reply.callNotFound();
}
reply.sendFile("app.html");
}
});
fastify_repo.route({
method: "GET",
path: "/info/refs",
handler: (req, reply) =>
{
if(!req.query.service) {
reply.code(403).send("Missing service query parameter\n");
return
}
else if(req.query.service !== "git-upload-pack") {
reply.code(403).send("Access denied!\n");
return;
}
else if(Object.keys(req.query).length !== 1) {
reply.header("Content-Type", "application/x-git-upload-pack-advertisement");
reply.code(403).send("Too many query parameters!\n");
return;
}
git.connectToGitHTTPBackend(settings["base_dir"], req, reply);
}
});
fastify_repo.route({
method: "POST",
path: "/git-upload-pack",
handler: (req, reply) => git.connectToGitHTTPBackend(settings["base_dir"], req, reply)
});
done();
}, { prefix: "/:repo" });
fastify.listen(settings["port"],(err, addr) =>
{
if(err) {
console.error(err);
exit(1);
}
console.log(`App is running on ${addr}`);
});
|