-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathdelete-old-deployments.js
More file actions
114 lines (92 loc) · 2.57 KB
/
delete-old-deployments.js
File metadata and controls
114 lines (92 loc) · 2.57 KB
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
import fetch from 'node-fetch'
import * as dotenv from 'dotenv'
dotenv.config()
const CLOUDFLARE_ACCOUNT_ID = process.env.CLOUDFLARE_ACCOUNT_ID
const CLOUDFLARE_PROJECT_ID = process.env.CLOUDFLARE_PROJECT_ID
const CLOUDFLARE_BEARER_TOKEN = process.env.CLOUDFLARE_BEARER_TOKEN
async function getDeployments(accountId, projectId, bearerToken) {
const deployments = []
console.log('Fetching deployments...')
for (let i = 1; i < 100; i++) {
console.log(`Fetching page #${i} of deployments`)
const response = await fetch(
`https://api.cloudflare.com/client/v4/accounts/${accountId}/pages/projects/${projectId}/deployments?page=${i}`,
{
headers: {
Authorization: `Bearer ${bearerToken}`
}
}
)
if (!response.ok) {
handleError(response)
}
const jsonResponse = await response.json()
if (jsonResponse.result.length === 0) {
break
} else {
deployments.push(...jsonResponse.result)
}
}
return deployments
}
async function deleteDeployment(
accountId,
projectId,
bearerToken,
deploymentId
) {
console.log(`Deleting deployment with id ${deploymentId}`)
const response = await fetch(
`https://api.cloudflare.com/client/v4/accounts/${accountId}/pages/projects/${projectId}/deployments/${deploymentId}?force=true`,
{
method: 'DELETE',
headers: {
Authorization: `Bearer ${bearerToken}`
}
}
)
if (!response.ok) {
handleError(response)
}
}
async function handleError(response) {
throw Error(
`There has been an error making the request to Cloudflare. Status code: ${
response.status
}. Error: ${await response.text()}`
)
}
async function deleteDeployments(
accountId,
projectId,
bearerToken,
deployments
) {
console.log('Deleting deployments...')
const deletedDeployments = []
deployments.forEach((deployment) => {
if (deployment.environment === 'preview') {
deleteDeployment(accountId, projectId, bearerToken, deployment.id)
deletedDeployments.push(deployment.id)
}
})
if (deletedDeployments.length === 0) {
console.log('Deleted no deployments')
} else {
console.log(`Deleted ${deletedDeployments.length} deployments`)
console.log(`List of deployments deleted: ${deletedDeployments}`)
}
}
const deployments = await getDeployments(
CLOUDFLARE_ACCOUNT_ID,
CLOUDFLARE_PROJECT_ID,
CLOUDFLARE_BEARER_TOKEN
)
console.log(`There are ${deployments.length} deployments`)
deleteDeployments(
CLOUDFLARE_ACCOUNT_ID,
CLOUDFLARE_PROJECT_ID,
CLOUDFLARE_BEARER_TOKEN,
deployments
)
export {}