-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdegit.ts
414 lines (371 loc) · 10.1 KB
/
degit.ts
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
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
import { DegitError } from "../errors.ts";
import { asserts } from "./asserts.ts";
import { download } from "./download.ts";
import { untar } from "./untar.ts";
import { path } from "../deps.ts";
import { logger } from "../logger.ts";
import { env } from "../env.ts";
import { intl } from "../zcli.ts";
/**
* Adapted to Deno from Rich Harris's `degit` library.
*
* Make a copy of a git repository. When you run degit some-user/some-repo,
* it will find the latest commit on https://github.com/some-user/some-repo
* and download the associated tar file to a temporary directory.
*
* This is much quicker than using git clone, because you're not downloading
* the entire git history.
*
* @param config - The degit configuration
*/
export async function degit(
config: DegitConfig,
) {
const { dest = Deno.cwd(), mode = "tar" } = config;
const source = typeof config.src === "string"
? parse(config.src)
: config.src;
if (mode === "git" || source.mode === "git") {
const ssh = `git@${source.host}:${source.owner}/${source.repo}.git`;
logger.info(`Using 'git' to clone template.`);
logger.info(` ref: ${source.ref}`);
logger.info(` source: ${source}`);
const cmd = [
"git",
"clone",
"--depth=1",
source.ref ? `--branch=${source.ref}` : "",
ssh,
dest,
];
logger.info(cmd.join(" "));
// deno-lint-ignore no-deprecated-deno-api
const proc = Deno.run({
cmd,
stdout: "null",
stderr: "piped",
});
const status = await proc.status();
asserts(
status.success,
new DegitError({
message: new TextDecoder().decode(await proc.stderrOutput())
.trimEnd()
.split("\n").filter((line) => !line.startsWith("Cloning into"))
.join(
"\n",
),
exitCode: status.code,
}),
);
logger.info(`Cloned template.`);
// Remove the .git directory
await Deno.remove(path.join(dest, ".git"));
logger.info(`Removed .git directory from template.`);
} else {
logger.info(`Using 'tar' to download template.`);
logger.info(` ref: ${source.ref}`);
logger.info(` host: ${source.host}`);
logger.info(` subdir: ${source.subdir}`);
// Download the tarball
await downloadTarball(source, dest, config);
}
}
/**
* Parse a template string into a template object.
*
* @param template - The template string to parse
* @returns A parsed template object
*/
export function parse(template: string): DegitSource {
if (template.startsWith("https://")) {
const uri = new URL(template);
const host = uri.host;
const [owner, repo] = uri.pathname.split("/").slice(1);
const ref = uri.hash.slice(1) || undefined;
asserts(
isValidHost(host),
new DegitError({
message: `Invalid host: ${host}. Must be one of ${
intl.list(Object.values(SOURCE_TO_HOST), { type: "disjunction" })
}.`,
exitCode: 1,
}),
);
return { host, owner, repo, ref, subdir: undefined, mode: "tar" };
} else if (template.startsWith("git@")) {
template = template.replace(/^git@/, "");
const [host, ownerRepo] = template.split(":");
const [owner, repoBranch, subdirBranch] = ownerRepo.split("/");
let repo: string;
let subdir: string | undefined;
let ref: string | undefined;
if (subdirBranch) {
repo = repoBranch;
[subdir, ref] = subdirBranch.split("#");
} else {
[repo, ref] = repoBranch.split("#");
}
asserts(
isValidHost(host),
new DegitError({
message: `Invalid host: ${host}. Must be one of ${
intl.list(Object.values(SOURCE_TO_HOST), { type: "disjunction" })
}.`,
exitCode: 1,
}),
);
return {
host,
owner,
repo,
ref,
subdir,
mode: "git",
};
}
let source: keyof typeof SOURCE_TO_HOST = "github";
if (template.startsWith("bitbucket:")) {
source = "bitbucket";
template = template.replace(/^bitbucket:/, "");
} else if (template.startsWith("gitlab:")) {
source = "gitlab";
template = template.replace(/^gitlab:/, "");
} else if (!template.includes(":") || template.startsWith("github:")) {
source = "github";
template = template.replace(/^github:/, "");
}
const [owner, repoBranch, subdirBranch] = template.split("/");
let repo: string;
let subdir: string | undefined;
let ref: string | undefined;
if (subdirBranch) {
repo = repoBranch;
[subdir, ref] = subdirBranch.split("#");
} else {
[repo, ref] = repoBranch.split("#");
}
return {
host: SOURCE_TO_HOST[source],
owner,
repo,
ref,
subdir,
mode: "tar",
};
}
function isValidHost(host: string): host is DegitSource["host"] {
return Object.values(SOURCE_TO_HOST).includes(host as DegitSource["host"]);
}
const SOURCE_TO_HOST = {
github: "github.com",
bitbucket: "bitbucket.org",
gitlab: "gitlab.com",
"git.sr.ht": "git.sr.ht",
} as const;
/**
* Download a template from a tarball.
*
* @param template - The template to download
* @param destination - The directory to download the template to
* @returns A promise that resolves when the template has been downloaded
*/
export async function downloadTarball(
template: DegitSource,
destination: string,
options: { cache?: string },
) {
// First make a temporary directory
const { cache = ".degit/.cache" } = options;
const cachePath = path.isAbsolute(cache)
? cache
: path.join(env.get("HOME"), cache);
try {
Deno.statSync(cachePath);
} catch (err) {
if (err instanceof Deno.errors.NotFound) {
await Deno.mkdir(cachePath, { recursive: true });
} else {
throw err;
}
}
const ownerRepo = `${template.owner}/${template.repo}`;
const ref = selectRef(await fetchRefs(template), template.ref);
const tarballUrl = {
"github.com": `https://${template.host}/${ownerRepo}/archive/${ref}.tar.gz`,
"gitlab.com":
`https://${template.host}/${ownerRepo}/repository/archive.tar.gz?ref=${ref}`,
"bitbucket.org": `https://${template.host}/${ownerRepo}/get/${ref}.tar.gz`,
"git.sr.ht": `https://${template.host}/${ownerRepo}/archive/${ref}.tar.gz`,
}[template.host];
const tmpFile = path.join(cachePath, path.basename(tarballUrl));
try {
Deno.statSync(tmpFile);
logger.info(`Using cached template from ${tmpFile}`);
} catch (err) {
if (err instanceof Deno.errors.NotFound) {
logger.info(`Downloading template from ${tarballUrl}...`);
await download(tarballUrl, tmpFile);
} else {
throw err;
}
}
await untar(
tmpFile,
({ fileName }) => {
return path.join(
destination,
path.relative(
path.join(`${template.repo}-${ref}`, template.subdir || ""),
fileName,
),
);
},
{
filter(entry) {
return !template.subdir ||
entry.fileName.startsWith(
`${template.repo}-${ref}/${template.subdir}`,
);
},
},
);
}
/**
* Fetch the refs for a template given the repo information
*
* @param template - The template to fetch refs for
* @returns Refs for the template
*/
async function fetchRefs(template: DegitSource) {
// deno-lint-ignore no-deprecated-deno-api
const proc = Deno.run({
cmd: [
"git",
"ls-remote",
`https://${template.host}/${template.owner}/${template.repo}`,
],
stdout: "piped",
stderr: "piped",
});
const status = await proc.status();
asserts(
status.success,
new DegitError({
message: decoder.decode(await proc.stderrOutput())
.trimEnd(),
exitCode: status.code,
}),
);
const stdout = decoder.decode(await proc.output());
return stdout
.split("\n")
.filter(Boolean)
.map((row) => {
const [hash, ref] = row.split("\t");
if (ref === "HEAD") {
return {
type: "HEAD",
hash,
};
}
const match = /refs\/(\w+)\/(.+)/.exec(ref);
asserts(
match,
new DegitError({
message: `could not parse ${ref}`,
exitCode: 1,
}),
);
return {
type: match[1] === "heads"
? "branch"
: match[1] === "refs"
? "ref"
: match[1],
name: match[2],
hash,
};
});
}
/**
* Select a ref from the result of `fetchRefs` or throw an error
* if the ref could not be found.
* @param refs - The result of `fetchRefs`
* @param selector - The ref to select. Defaults to "HEAD"
*/
function selectRef(
refs: Awaited<ReturnType<typeof fetchRefs>>,
selector = "HEAD",
): string {
if (selector === "HEAD") {
const hash = refs.find((ref) => ref.type === "HEAD")?.hash;
asserts(
hash,
new DegitError({ message: "could not find HEAD", exitCode: 1 }),
);
return hash;
}
for (const ref of refs) {
if (ref.name === selector) {
return ref.hash;
}
}
if (selector.length >= 7) {
for (const ref of refs) {
if (ref.hash.startsWith(selector)) return ref.hash;
}
}
throw new DegitError({
message: `could not find ref ${selector}`,
exitCode: 1,
});
}
const decoder = new TextDecoder();
type DegitSource = {
/**
* The host to download the template from.
*/
host: (typeof SOURCE_TO_HOST)[keyof typeof SOURCE_TO_HOST];
/**
* The owner of the repository to download the template from.
*/
owner: string;
/**
* The repository to download the template from.
*/
repo: string;
/**
* The git ref to use to download the template.
*/
ref: string | undefined;
/**
* A subdirectory of the repository to download the template from.
*/
subdir: string | undefined;
/**
* The mode to use to download the template.
*/
mode: DegitMode;
};
export type DegitConfig = {
/**
* The mode to use to download the template.
* @default "tar"
*/
mode: DegitMode;
/**
* The template to create a new project from.
*/
src: DegitSource | string;
/**
* The directory to download the template to.
* @default Deno.cwd()
*/
dest?: string;
/**
* The cache directory to use.
*/
cache?: string;
};
export type DegitMode = "tar" | "git";