-
Notifications
You must be signed in to change notification settings - Fork 79
/
Copy pathgithub.ts
307 lines (285 loc) · 7.33 KB
/
github.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
import A2A from 'a2a';
import { graphql } from '@octokit/graphql';
import dotenv from 'dotenv';
import { References } from './bundle';
dotenv.config();
const getGitHubToken = (() => {
let index = 0;
const tokens = process.env.GITHUB_PAT ? process.env.GITHUB_PAT.split(',') : [];
return function () {
if (index >= tokens.length) index = 0;
return tokens[index++];
};
})();
export function getGithubGQLClient(): typeof graphql {
const token = getGitHubToken();
if (!token) {
throw new Error(
'Environment variable GITHUB_PAT is not defined or has no tokens or an invalid token.',
);
}
return graphql.defaults({
headers: {
authorization: `token ${token}`,
},
});
}
export type MetaData = {
owner: string;
repository: string;
ref?: string;
path: string;
};
type PageContentsQuery = {
repository: {
baseBranch: {
name: string;
};
isFork: boolean;
configJson?: {
text: string;
};
configYaml?: {
text: string;
};
configToml?: {
text: string;
};
mdx?: {
text: string;
};
mdxIndex?: {
text: string;
};
referenceConfig?: {
text: string;
};
};
};
export type Contents = {
isFork: boolean;
baseBranch: string;
config: {
configJson?: string;
configYaml?: string;
configToml?: string;
};
md: string | null;
path: string;
repositoryFound: boolean;
referenceConfig: References | null;
};
export async function getGitHubContents(metadata: MetaData, noDir?: boolean): Promise<Contents> {
const base = noDir ? '' : 'docs/';
const absolutePath = `${base}${metadata.path}`;
const indexPath = `${base}${metadata.path}/index`;
const ref = metadata.ref || 'HEAD';
const [error, response] = await A2A<PageContentsQuery>(
getGithubGQLClient()({
query: `
query RepositoryConfig($owner: String!, $repository: String!, $configJson: String!, $configYaml: String!, $configToml: String!, $mdx: String!, $mdxIndex: String!, $referenceConfig: String!) {
repository(owner: $owner, name: $repository) {
baseBranch: defaultBranchRef {
name
}
isFork
configJson: object(expression: $configJson) {
... on Blob {
text
}
}
configYaml: object(expression: $configYaml) {
... on Blob {
text
}
}
configToml: object(expression: $configToml) {
... on Blob {
text
}
}
mdx: object(expression: $mdx) {
... on Blob {
text
}
}
mdxIndex: object(expression: $mdxIndex) {
... on Blob {
text
}
}
referenceConfig: object(expression: $referenceConfig) {
... on Blob {
text
}
}
}
}
`,
owner: metadata.owner,
repository: metadata.repository,
configJson: `${ref}:docs.json`,
configYaml: `${ref}:docs.yaml`,
configToml: `${ref}:docs.toml`,
mdx: `${ref}:${absolutePath}.mdx`,
mdxIndex: `${ref}:${indexPath}.mdx`,
referenceConfig: `${ref}:docs.refs.json`
}),
);
// if an error is thrown then the repo is not found, if the repo is private then response = { repository: null }
if (error || response?.repository === null) {
console.error(error.response.errors);
//@ts-ignore
return {
repositoryFound: false,
};
}
let referenceConfig = null;
try {
referenceConfig = response?.repository.referenceConfig?.text
? JSON.parse(response?.repository.referenceConfig?.text)
: null;
} catch (e) {
console.error('Could not parse reference config');
console.error(e);
}
return {
repositoryFound: true,
isFork: response?.repository?.isFork ?? false,
baseBranch: response?.repository.baseBranch.name ?? 'main',
config: {
configJson: response?.repository.configJson?.text,
configYaml: response?.repository.configYaml?.text,
configToml: response?.repository.configToml?.text,
},
md: response?.repository.mdxIndex?.text || response?.repository.mdx?.text || null,
path: response?.repository.mdxIndex?.text ? indexPath : absolutePath,
referenceConfig,
};
}
export type PullRequestMetadata = {
owner: string;
repository: string;
ref: string;
};
type PullRequestQuery = {
repository: {
pullRequest: {
owner: {
login: string;
};
repository: {
name: string;
};
ref: {
name: string;
};
};
};
};
export async function getPullRequestMetadata(
owner: string,
repository: string,
pullRequest: string,
): Promise<PullRequestMetadata | null> {
const [error, response] = await A2A<PullRequestQuery>(
getGithubGQLClient()({
query: `
query RepositoryConfig($owner: String!, $repository: String!, $pullRequest: Int!) {
repository(owner: $owner, name: $repository) {
pullRequest(number: $pullRequest) {
owner: headRepositoryOwner {
login
}
repository: headRepository {
name
}
ref: headRef {
name
}
}
}
}
`,
owner: owner,
repository: repository,
pullRequest: parseInt(pullRequest),
}),
);
if (error || !response) {
return null;
}
return {
owner: response?.repository?.pullRequest?.owner?.login,
repository: response?.repository?.pullRequest?.repository?.name,
ref: response?.repository?.pullRequest?.ref?.name,
};
}
type Configs = {
repositoryFound: boolean;
config?: {
configJson?: string;
configYaml?: string;
configToml?: string;
};
};
type ConfigResponse = {
repository: {
configJson?: {
text: string;
};
configYaml?: {
text: string;
};
configToml?: {
text: string;
};
};
};
export async function getConfigs(metadata: MetaData): Promise<Configs> {
const ref = metadata.ref || 'HEAD';
const [error, response] = await A2A<ConfigResponse>(
getGithubGQLClient()({
query: `
query RepositoryConfig($owner: String!, $repository: String!, $json: String!, $yaml: String!, $toml: String!) {
repository(owner: $owner, name: $repository) {
configYaml: object(expression: $yaml) {
... on Blob {
text
}
}
configJson: object(expression: $json) {
... on Blob {
text
}
}
configToml: object(expression: $toml) {
... on Blob {
text
}
}
}
}
`,
owner: metadata.owner,
repository: metadata.repository,
json: `${ref}:docs.json`,
yaml: `${ref}:docs.yaml`,
toml: `${ref}:docs.toml`,
}),
);
// if an error is thrown then the repo is not found, if the repo is private then response = { repository: null }
if (error || response?.repository === null) {
return {
repositoryFound: false,
};
}
return {
repositoryFound: true,
config: {
configJson: response?.repository.configJson?.text,
configYaml: response?.repository.configYaml?.text,
configToml: response?.repository.configToml?.text,
},
};
}