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
|
import { FastifyReply, FastifyRequest } from "fastify";
import { Repository } from "./repository";
import { Route } from "../types/fastify";
import { join } from "path";
import { spawn } from "child_process";
import { verifyGitRequest } from "../api/util";
export type RequestInfo = {
url_path: string,
parsed_url: URL,
url_path_parts: string[],
is_discovery: boolean,
service: string,
content_type: string
}
export interface Request extends FastifyRequest {
params: Route["Params"],
}
function getRequestInfo(req: Request, repository_name: string): RequestInfo {
const url_path = req.url.replace(req.params.repo, repository_name);
const parsed_url = new URL(`${req.protocol}://${req.hostname}${url_path}`);
const url_path_parts = parsed_url.pathname.split("/");
const is_discovery = (/\/info\/refs$/u).test(parsed_url.pathname);
let service = is_discovery ? parsed_url.searchParams.get("service") : url_path_parts[url_path_parts.length - 1];
const content_type = `application/x-${service}-${is_discovery ? "advertisement" : "result"}`;
service = service || "";
return {
url_path,
parsed_url,
is_discovery,
url_path_parts,
service,
content_type
};
}
export function connect(repository: Repository, req: Request, reply: FastifyReply): void {
const request_info = getRequestInfo(req, repository.name.short);
const valid_request = verifyGitRequest(request_info);
if(valid_request.success === false && valid_request.code) {
reply.header("Content-Type", request_info.content_type);
reply.code(valid_request.code).send(valid_request.message);
return;
}
reply.raw.writeHead(200, { "Content-Type": request_info.content_type });
const spawn_args = [ "--stateless-rpc", join(repository.base_dir, repository.name.full) ];
if(request_info.is_discovery) {
spawn_args.push("--advertise-refs");
}
const git_pack = spawn(request_info.service, spawn_args);
if(request_info.is_discovery) {
const s = "# service=" + request_info.service + "\n";
const n = (4 + s.length).toString(16);
reply.raw.write(Buffer.from((Array(4 - n.length + 1).join("0") + n + s) + "0000"));
}
else {
const request_body = req.raw;
request_body.on("data", data => {
git_pack.stdin.write(data);
});
request_body.on("end", () => {
git_pack.stdin.end();
});
}
git_pack.on("error", err => console.log(err));
git_pack.stderr.on("data", (stderr: Buffer) => console.log(stderr.toString()));
git_pack.stdout.on("data", data => {
reply.raw.write(data);
});
git_pack.stdout.on("end", () => reply.raw.end());
}
|