-
Notifications
You must be signed in to change notification settings - Fork 158
/
Copy pathget-graphql-schemas.js
executable file
·177 lines (162 loc) · 5.2 KB
/
get-graphql-schemas.js
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
#! /usr/bin/env node
import {Octokit} from '@octokit/rest'
import * as fs from 'fs'
import * as path from 'path'
import {spawn} from 'child_process'
import {withOctokit} from './github-utils.js'
import {runCommand} from './run-command.js'
const BRANCH = 'main'
/**
* @typedef {Object} Schema
* @property {string} owner
* @property {string} repo
* @property {string} pathToFile
* @property {string} localPath
* @property {string | undefined} [branch]
* @property {boolean} [usesLfs]
*/
/**
* @type {Schema[]}
*/
const schemas = [
{
owner: 'Shopify',
repo: 'partners',
pathToFile: 'db/graphql/cli_schema.graphql',
localPath: './packages/app/src/cli/api/graphql/partners/cli_schema.graphql',
},
{
owner: 'Shopify',
repo: 'business-platform',
pathToFile: 'areas/platforms/organizations/db/graphql/destinations_schema.graphql',
localPath: './packages/app/src/cli/api/graphql/business-platform-destinations/destinations_schema.graphql',
},
{
owner: 'Shopify',
repo: 'business-platform',
pathToFile: 'areas/platforms/organizations/db/graphql/organizations_schema.graphql',
localPath: './packages/app/src/cli/api/graphql/business-platform-organizations/organizations_schema.graphql',
},
{
owner: 'shop',
repo: 'world',
pathToFile: 'areas/core/shopify/db/graphql/app_dev_schema_unstable_public.graphql',
localPath: './packages/app/src/cli/api/graphql/app-dev/app_dev_schema.graphql',
},
{
owner: 'shop',
repo: 'world',
pathToFile: 'areas/core/shopify/db/graphql/app_management_schema_unstable_public.graphql',
localPath: './packages/app/src/cli/api/graphql/app-management/app_management_schema.graphql',
},
{
owner: 'shop',
repo: 'world',
pathToFile: 'areas/core/shopify/db/graphql/admin_schema_unstable_public.graphql',
localPath: './packages/cli-kit/src/cli/api/graphql/admin/admin_schema.graphql',
usesLfs: true,
},
{
owner: 'shop',
repo: 'world',
pathToFile: 'areas/core/shopify/db/graphql/webhooks_schema_unstable_public.graphql',
localPath: './packages/app/src/cli/api/graphql/webhooks/webhooks_schema.graphql',
},
{
owner: 'shop',
repo: 'world',
pathToFile: 'areas/core/shopify/db/graphql/functions_cli_api_schema_unstable_public.graphql',
localPath: './packages/app/src/cli/api/graphql/functions/functions_cli_schema.graphql',
},
]
/**
* @param {Schema} schema
* @param {import('@octokit/rest').Octokit} octokit
* @returns {Promise<boolean>}
*/
async function fetchFileForSchema(schema, octokit) {
try {
// Fetch the file content from the repository
const branch = schema.branch ?? BRANCH
const owner = schema.owner
const repoName = schema.repo
let content = ''
if (schema.usesLfs) {
console.log(`\nFetching LFS file ${owner}/${repoName}#${branch}: ${schema.pathToFile} ...`)
const {data: {download_url}} = await octokit.repos.getContent({
mediaType: { format: "json" },
owner: owner,
repo: repoName,
path: schema.pathToFile,
ref: branch,
})
console.log(`LFS download via ${download_url}...`)
content = await fetch(download_url).then(res => res.text())
} else {
console.log(`\nFetching ${owner}/${repoName}#${branch}: ${schema.pathToFile} ...`)
const {data} = await octokit.repos.getContent({
mediaType: { format: "raw" },
owner: owner,
repo: repoName,
path: schema.pathToFile,
ref: branch,
})
content = Buffer.from(data).toString('utf-8')
}
// Define the local path where the file will be saved
const localFilePath = schema.localPath
const dir = path.dirname(localFilePath)
fs.mkdirSync(dir, {recursive: true})
// Write the content to a local file
fs.writeFileSync(localFilePath, content)
console.log(`File downloaded successfully to ${localFilePath}`)
return true
} catch (error) {
console.error(`Error fetching file: ${error.message}`)
return false
}
}
/**
* @returns {Promise<void>}
*/
async function fetchFiles() {
let allSuccess = true
for (const schema of schemas) {
allSuccess = allSuccess && await withOctokit(schema.owner, async (octokit) => {
return fetchFileForSchema(schema, octokit)
})
}
if (!allSuccess) {
console.error('Failed to fetch all files')
process.exit(1)
}
}
/**
* @returns {Promise<void>}
*/
async function fetchFilesFromSpin() {
for (const schema of schemas) {
const owner = schema.owner
const repoName = schema.repo
const remotePath = `~/src/github.com/${owner}/${repoName}/${schema.pathToFile}`
const localPath = schema.localPath
try {
await runCommand('spin', ['copy', `${process.env.SPIN_INSTANCE}:${remotePath}`, localPath])
} catch(e) {
if (e.message.match(/scp.*No such file or directory/)) {
// Assume we need to just fetch the file from GitHub
console.log(`Cannot find file for ${schema.repo} in Spin, fetching from GitHub instead...`)
await withOctokit(schema.owner, async (octokit) => {
await fetchFileForSchema(schema, octokit)
})
} else {
throw e
}
}
}
}
if (process.env.SPIN_INSTANCE) {
fetchFilesFromSpin()
} else {
fetchFiles()
}