docs/script/enterprise-server-deprecations/remove-static-files.js

60 строки
2.4 KiB
JavaScript
Executable File

#!/usr/bin/env node
// [start-readme]
//
// This script removes the static GraphQL, REST, and webhook files for any deprecated GHES versions.
//
// [end-readme]
import fs from 'fs'
import path from 'path'
import rimraf from 'rimraf'
import { allVersions } from '../../lib/all-versions.js'
const graphqlDataDir = path.join(process.cwd(), 'data/graphql')
const webhooksStaticDir = path.join(process.cwd(), 'lib/webhooks/static')
const graphqlStaticDir = path.join(process.cwd(), 'lib/graphql/static')
const restDecoratedDir = path.join(process.cwd(), 'lib/rest/static/decorated')
const restDereferencedDir = path.join(process.cwd(), 'lib/rest/static/dereferenced')
const supportedEnterpriseVersions = Object.values(allVersions).filter(
(v) => v.plan === 'enterprise-server'
)
// RELEASE NOTES
// We currently do not remove the Enterprise release note content in
// data/release-notes/enterprise-server/*. One reason to keep this
// content in the `main` branch is that the GHES team can add
// new release notes for a deprecated version in some cases.
// Having that content still in the main branch makes it easier for us to
// re-scrape the release note pages and upload the changes to Azure.
// webhooks and GraphQL
const supportedMiscVersions = supportedEnterpriseVersions.map((v) => v.miscVersionName)
// The miscBaseName is the same for all GHES versions (currently `ghes-`), so we can just grab the first one
const miscBaseName = supportedEnterpriseVersions.map((v) => v.miscBaseName)[0]
;[graphqlDataDir, graphqlStaticDir, webhooksStaticDir].forEach((dir) => {
removeFiles(dir, miscBaseName, supportedMiscVersions)
})
// REST
const supportedOpenApiVersions = supportedEnterpriseVersions.map((v) => v.openApiVersionName)
// The openApiBaseName is the same for all GHES versions (currently `ghes-`), so we can just grab the first one
const openApiBaseName = supportedEnterpriseVersions.map((v) => v.openApiBaseName)[0]
;[restDecoratedDir, restDereferencedDir].forEach((dir) => {
removeFiles(dir, openApiBaseName, supportedOpenApiVersions)
})
function removeFiles(dir, baseName, supportedVersions) {
fs.readdirSync(dir)
.filter((file) => file.includes(baseName))
.filter((file) => supportedVersions.every((version) => !file.includes(version)))
.forEach((file) => {
const fullPath = path.join(dir, file)
console.log(`removing ${fullPath}`)
rimraf.sync(fullPath)
})
}