@rathnasgala/cli 0.0.18 → 0.0.19
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
CHANGED
|
@@ -27,7 +27,10 @@ export async function generateRepositoryFromTemplate({
|
|
|
27
27
|
owner,
|
|
28
28
|
repository,
|
|
29
29
|
description,
|
|
30
|
-
fetchImpl = fetch
|
|
30
|
+
fetchImpl = fetch,
|
|
31
|
+
sleep,
|
|
32
|
+
readinessAttempts,
|
|
33
|
+
readinessIntervalMs
|
|
31
34
|
}) {
|
|
32
35
|
const token = requiredString(accessToken, 'accessToken');
|
|
33
36
|
const sourceOwner = repositorySegment(templateOwner, 'templateOwner');
|
|
@@ -85,9 +88,53 @@ export async function generateRepositoryFromTemplate({
|
|
|
85
88
|
throw new TypeError('GitHub repository response contains an invalid clone_url');
|
|
86
89
|
}
|
|
87
90
|
|
|
91
|
+
// Last, so a malformed response fails immediately instead of after the readiness wait.
|
|
92
|
+
await awaitRepositoryContent({
|
|
93
|
+
accessToken: token, owner: targetOwner, repository: targetRepository, fetchImpl,
|
|
94
|
+
...(sleep == null ? {} : { sleep }),
|
|
95
|
+
...(readinessAttempts == null ? {} : { attempts: readinessAttempts }),
|
|
96
|
+
...(readinessIntervalMs == null ? {} : { intervalMs: readinessIntervalMs })
|
|
97
|
+
});
|
|
98
|
+
|
|
88
99
|
return Object.freeze({ fullName, cloneUrl: cloneUrl.href });
|
|
89
100
|
}
|
|
90
101
|
|
|
102
|
+
/**
|
|
103
|
+
* Waits for a generated repository to actually contain the template.
|
|
104
|
+
*
|
|
105
|
+
* Generating from a template is asynchronous: GitHub answers 201 with the repository's full name
|
|
106
|
+
* and clone URL, and copies the content in afterwards. Cloning on the 201 produced
|
|
107
|
+
* "warning: You appear to have cloned an empty repository", and scaffolding then failed on a
|
|
108
|
+
* missing site.config.yml — a confusing error about a file the template certainly contains.
|
|
109
|
+
*
|
|
110
|
+
* Readiness is the presence of a branch. `size` is not usable: GitHub still reported 0 for a
|
|
111
|
+
* repository that already had `main` and commits.
|
|
112
|
+
*/
|
|
113
|
+
export async function awaitRepositoryContent({
|
|
114
|
+
accessToken, owner, repository, fetchImpl = fetch,
|
|
115
|
+
sleep = (milliseconds) => new Promise((resolve) => setTimeout(resolve, milliseconds)),
|
|
116
|
+
attempts = 30, intervalMs = 1_000
|
|
117
|
+
}) {
|
|
118
|
+
const url = `https://api.github.com/repos/${encodeURIComponent(owner)}/${encodeURIComponent(repository)}/branches?per_page=1`;
|
|
119
|
+
for (let attempt = 0; attempt < attempts; attempt += 1) {
|
|
120
|
+
if (attempt > 0) await sleep(intervalMs);
|
|
121
|
+
const response = await fetchImpl(url, {
|
|
122
|
+
headers: {
|
|
123
|
+
accept: 'application/vnd.github+json',
|
|
124
|
+
authorization: `Bearer ${accessToken}`,
|
|
125
|
+
'x-github-api-version': GITHUB_API_VERSION
|
|
126
|
+
}
|
|
127
|
+
});
|
|
128
|
+
if (!response.ok) throw new Error(await describeHttpFailure(response, 'GitHub branch lookup'));
|
|
129
|
+
const branches = await response.json();
|
|
130
|
+
if (Array.isArray(branches) && branches.length > 0) return;
|
|
131
|
+
}
|
|
132
|
+
throw new Error(
|
|
133
|
+
`GitHub created ${owner}/${repository} from the template but it was still empty after `
|
|
134
|
+
+ `${Math.round((attempts * intervalMs) / 1000)}s. Re-run scaffold with --resume once it has content.`
|
|
135
|
+
);
|
|
136
|
+
}
|
|
137
|
+
|
|
91
138
|
export function cloneRepository({ cloneUrl, target, spawnProcess = spawn }) {
|
|
92
139
|
const source = new URL(requiredString(cloneUrl, 'cloneUrl'));
|
|
93
140
|
if (
|
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Creates the publication repository the way the browser editor does.
|
|
3
|
+
*
|
|
4
|
+
* The CLI used to call `POST /repos/{template}/generate` itself. That is a second, worse
|
|
5
|
+
* implementation of something the API already does and does properly:
|
|
6
|
+
*
|
|
7
|
+
* - it tries the template, then falls back to creating an empty repository and seeding it, then
|
|
8
|
+
* reports that the writer must do it by hand — the CLI's single attempt had no rung below it;
|
|
9
|
+
* - it waits for the Gala App installation to actually reach the new repository before calling it
|
|
10
|
+
* ready, which is why repositories the CLI created never appeared in the web UI;
|
|
11
|
+
* - it returns the installation id, so registration cannot disagree with creation about which
|
|
12
|
+
* installation owns the repository.
|
|
13
|
+
*
|
|
14
|
+
* One implementation, exercised by both clients, is the only way the two stay in step.
|
|
15
|
+
*/
|
|
16
|
+
import { describeHttpFailure } from './http-failure.js';
|
|
17
|
+
import { exchangeGithubAuthorization } from './site-registration-client.js';
|
|
18
|
+
|
|
19
|
+
export async function createPublication({
|
|
20
|
+
apiBaseUrl = 'https://api.gala67.com',
|
|
21
|
+
galaAccessToken,
|
|
22
|
+
githubAccessToken,
|
|
23
|
+
name,
|
|
24
|
+
fetchImpl = fetch,
|
|
25
|
+
authorize = exchangeGithubAuthorization
|
|
26
|
+
}) {
|
|
27
|
+
const authorization = await authorize({
|
|
28
|
+
apiBaseUrl, galaAccessToken, githubAccessToken, fetchImpl
|
|
29
|
+
});
|
|
30
|
+
const response = await fetchImpl(`${String(apiBaseUrl).replace(/\/$/, '')}/v1/auth/github/publications`, {
|
|
31
|
+
method: 'POST',
|
|
32
|
+
headers: {
|
|
33
|
+
accept: 'application/json',
|
|
34
|
+
authorization: `Bearer ${galaAccessToken}`,
|
|
35
|
+
'content-type': 'application/json',
|
|
36
|
+
'GitHub-Authorization': authorization
|
|
37
|
+
},
|
|
38
|
+
body: JSON.stringify({ name })
|
|
39
|
+
});
|
|
40
|
+
if (!response.ok) throw new Error(await describeHttpFailure(response, 'Gala publication creation'));
|
|
41
|
+
|
|
42
|
+
const payload = await response.json();
|
|
43
|
+
const status = payload?.status;
|
|
44
|
+
const owner = payload?.owner;
|
|
45
|
+
const repository = payload?.name;
|
|
46
|
+
|
|
47
|
+
if (status === 'NEEDS_SHARING') {
|
|
48
|
+
throw new Error(
|
|
49
|
+
`${owner}/${repository} was created from the template, but the Gala GitHub App cannot reach `
|
|
50
|
+
+ 'it yet. Open https://github.com/settings/installations, give the App access to that '
|
|
51
|
+
+ 'repository, then run scaffold again with --resume.'
|
|
52
|
+
);
|
|
53
|
+
}
|
|
54
|
+
if (status !== 'READY') {
|
|
55
|
+
throw new Error(
|
|
56
|
+
`Gala could not create the publication repository (${payload?.outcome ?? status}). `
|
|
57
|
+
+ 'Create it from https://github.com/rathnasgala/site-template yourself, then run scaffold '
|
|
58
|
+
+ 'with --empty-existing-repository.'
|
|
59
|
+
);
|
|
60
|
+
}
|
|
61
|
+
if (typeof owner !== 'string' || typeof repository !== 'string') {
|
|
62
|
+
throw new TypeError('Gala publication creation returned no repository identity');
|
|
63
|
+
}
|
|
64
|
+
const installationId = Number(payload?.installationId);
|
|
65
|
+
if (!Number.isSafeInteger(installationId) || installationId <= 0) {
|
|
66
|
+
throw new TypeError('Gala publication creation returned no installation');
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
return Object.freeze({
|
|
70
|
+
owner,
|
|
71
|
+
repository,
|
|
72
|
+
installationId,
|
|
73
|
+
outcome: payload?.outcome ?? null,
|
|
74
|
+
// The server names the repository it actually made, which may differ from what was asked for.
|
|
75
|
+
fullName: `${owner}/${repository}`,
|
|
76
|
+
cloneUrl: `https://github.com/${owner}/${repository}.git`
|
|
77
|
+
});
|
|
78
|
+
}
|
package/src/scaffold-site.js
CHANGED
|
@@ -4,7 +4,8 @@ import path from 'node:path';
|
|
|
4
4
|
import { configureSite } from './configure-site.js';
|
|
5
5
|
import { readGalaCredential } from './gala-credential-store.js';
|
|
6
6
|
import { readGithubCredential } from './github-credential-store.js';
|
|
7
|
-
import {
|
|
7
|
+
import { awaitRepositoryContent, cloneRepository } from './github-template-repository.js';
|
|
8
|
+
import { createPublication } from './publication-creation-client.js';
|
|
8
9
|
import { installRepositoryVariable } from './github-repository-variable.js';
|
|
9
10
|
import { provisionGithubPages } from './github-pages-provisioning.js';
|
|
10
11
|
import { registerSite } from './site-registration-client.js';
|
|
@@ -51,7 +52,7 @@ export async function scaffoldSite({
|
|
|
51
52
|
buildMode = 'build-and-deploy', templateOwner = 'rathnasgala',
|
|
52
53
|
templateRepository = 'site-template',
|
|
53
54
|
readGithub = readGithubCredential, readGala = readGalaCredential,
|
|
54
|
-
|
|
55
|
+
createRepository = createPublication, awaitContent = awaitRepositoryContent, clone = cloneRepository,
|
|
55
56
|
configure = configureSite, register = registerSite, finalize = writeRegisteredSiteConfiguration,
|
|
56
57
|
writeWorkflow = writePublishWorkflow,
|
|
57
58
|
installVariable = installRepositoryVariable,
|
|
@@ -59,9 +60,11 @@ export async function scaffoldSite({
|
|
|
59
60
|
commit = commitScaffold, verifyEmpty = verifyEmptyRepository, setOrigin = setRepositoryOrigin,
|
|
60
61
|
verifyCheckout = verifyRepositoryOrigin
|
|
61
62
|
}) {
|
|
62
|
-
const
|
|
63
|
-
const
|
|
64
|
-
|
|
63
|
+
const requestedOwner = segment(owner, 'owner');
|
|
64
|
+
const requestedName = segment(repository, 'repository');
|
|
65
|
+
// Validated now so a bad --topology/--canonical-base-url combination fails before a repository
|
|
66
|
+
// exists. The value used later is recomputed once the server says who actually owns it.
|
|
67
|
+
registrationLocation(requestedOwner, topology, canonicalBaseUrl);
|
|
65
68
|
// Optional: the server resolves the installation from the owner when none is supplied. An
|
|
66
69
|
// explicit value is still validated, because a wrong one fails much later and less clearly.
|
|
67
70
|
if (githubInstallationId != null
|
|
@@ -72,9 +75,20 @@ export async function scaffoldSite({
|
|
|
72
75
|
throw new TypeError('target must be a non-root local path');
|
|
73
76
|
}
|
|
74
77
|
const [github, gala] = await Promise.all([readGithub(), readGala()]);
|
|
78
|
+
// Creation reports which installation owns the new repository, so registration cannot disagree.
|
|
79
|
+
let resolvedInstallationId = githubInstallationId ?? null;
|
|
75
80
|
if (emptyExistingRepository && resumeExistingCheckout) {
|
|
76
81
|
throw new TypeError('emptyExistingRepository and resumeExistingCheckout are mutually exclusive');
|
|
77
82
|
}
|
|
83
|
+
/*
|
|
84
|
+
* The server decides the owner, not this process. It creates under the account the Gala App
|
|
85
|
+
* installation belongs to, which is not always the account behind the writer's OAuth token — an
|
|
86
|
+
* installation on an organisation they belong to gives a different owner entirely. Deriving the
|
|
87
|
+
* canonical URL, the idempotency key, the registration and the Pages target from the local guess
|
|
88
|
+
* would register a publication against a repository that does not exist.
|
|
89
|
+
*/
|
|
90
|
+
let repositoryOwner = requestedOwner;
|
|
91
|
+
let repositoryName = requestedName;
|
|
78
92
|
let generated;
|
|
79
93
|
let root;
|
|
80
94
|
if (resumeExistingCheckout) {
|
|
@@ -89,22 +103,36 @@ export async function scaffoldSite({
|
|
|
89
103
|
cloneUrl: `https://github.com/${templateOwner}/${templateRepository}.git`
|
|
90
104
|
};
|
|
91
105
|
} else {
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
106
|
+
/*
|
|
107
|
+
* Created through the API, the same call the browser editor makes. Doing it here meant a second
|
|
108
|
+
* implementation with no fallback and no wait for the App installation to reach the result,
|
|
109
|
+
* which is why CLI-created repositories never appeared in the web UI.
|
|
110
|
+
*/
|
|
111
|
+
const created = await createRepository({
|
|
112
|
+
apiBaseUrl: gala.apiBaseUrl, galaAccessToken: gala.accessToken,
|
|
113
|
+
githubAccessToken: github.accessToken, name: repositoryName
|
|
114
|
+
});
|
|
115
|
+
repositoryOwner = segment(created.owner, 'owner');
|
|
116
|
+
repositoryName = segment(created.repository, 'repository');
|
|
117
|
+
resolvedInstallationId = created.installationId;
|
|
118
|
+
generated = { fullName: created.fullName, cloneUrl: created.cloneUrl };
|
|
119
|
+
// Creation is asynchronous: GitHub answers before the template content lands, and cloning into
|
|
120
|
+
// that window produces an empty checkout and a missing site.config.yml.
|
|
121
|
+
await awaitContent({
|
|
122
|
+
accessToken: github.accessToken, owner: created.owner, repository: created.repository
|
|
96
123
|
});
|
|
97
124
|
}
|
|
98
125
|
if (!resumeExistingCheckout) {
|
|
99
126
|
root = await clone({ cloneUrl: generated.cloneUrl, target });
|
|
100
127
|
if (emptyExistingRepository) await setOrigin({ root, owner: repositoryOwner, repository: repositoryName });
|
|
101
128
|
}
|
|
129
|
+
const location = registrationLocation(repositoryOwner, topology, canonicalBaseUrl);
|
|
102
130
|
const configured = await configure(root, siteOptions ?? {});
|
|
103
131
|
const idempotencyKey = `scaffold-${createHash('sha256').update(`${repositoryOwner.toLowerCase()}/${repositoryName.toLowerCase()}`).digest('hex')}`;
|
|
104
132
|
const registration = await register({
|
|
105
133
|
apiBaseUrl: gala.apiBaseUrl, galaAccessToken: gala.accessToken,
|
|
106
134
|
githubAccessToken: github.accessToken, idempotencyKey,
|
|
107
|
-
githubInstallationId, repositoryOwner, repositoryName,
|
|
135
|
+
githubInstallationId: resolvedInstallationId, repositoryOwner, repositoryName,
|
|
108
136
|
topology: location.topology, canonicalBaseUrl: location.canonicalBaseUrl
|
|
109
137
|
});
|
|
110
138
|
await finalize(root, {
|
|
@@ -18,7 +18,14 @@ function apiUrl(apiBaseUrl) {
|
|
|
18
18
|
return new URL('/v1/sites', base).href;
|
|
19
19
|
}
|
|
20
20
|
|
|
21
|
-
|
|
21
|
+
/**
|
|
22
|
+
* Exchanges the stored GitHub token for the short-lived capability the API's GitHub-scoped
|
|
23
|
+
* endpoints require. Exported because publication creation needs the same capability, and two
|
|
24
|
+
* copies of an auth exchange is how they drift.
|
|
25
|
+
*/
|
|
26
|
+
export async function exchangeGithubAuthorization({
|
|
27
|
+
apiBaseUrl, galaAccessToken, githubAccessToken, fetchImpl
|
|
28
|
+
}) {
|
|
22
29
|
if (typeof githubAccessToken !== 'string' || githubAccessToken === '') {
|
|
23
30
|
throw new Error('GitHub authentication is missing; run `gala auth`');
|
|
24
31
|
}
|
|
@@ -56,7 +63,7 @@ export async function registerSite({
|
|
|
56
63
|
if (typeof galaAccessToken !== 'string' || galaAccessToken === '') {
|
|
57
64
|
throw new Error('Gala authentication is missing; run `gala auth`');
|
|
58
65
|
}
|
|
59
|
-
const githubAuthorization = await
|
|
66
|
+
const githubAuthorization = await exchangeGithubAuthorization({
|
|
60
67
|
apiBaseUrl, galaAccessToken, githubAccessToken, fetchImpl
|
|
61
68
|
});
|
|
62
69
|
required(idempotencyKey, 'idempotencyKey', IDEMPOTENCY_KEY);
|