-
Notifications
You must be signed in to change notification settings - Fork 4
/
app.js
270 lines (236 loc) · 6.49 KB
/
app.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
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
const express = require('express')
const fs = require('fs')
const fetch = require('node-fetch')
const { exec } = require('child_process')
const uuidv4 = require('uuid/v4')
const app = express()
app.use(express.static('public'))
app.use(express.json())
const myProxyApi = process.env.MYPROXY_API
const myProxyKey = process.env.MYPROXY_KEY
const dataPath = './data.db'
let data = {}
fs.readFile(dataPath, (err, fileData) => {
if (err) return
try {
data = JSON.parse(fileData)
} catch (e) {
console.log('parse error', e)
}
})
const getMappings = () => {
return data.mappings || {}
}
const getFullDomain = (subDomain, domain) => {
const prefix = subDomain ? `${subDomain}.` : ''
return `${prefix}${domain}`
}
app.get('/isAvailable', (req, res) => {
const { subDomain, domain } = req.query
const fullDomain = getFullDomain(subDomain, domain)
const allMappings = getMappings()
const result = {
isAvailable: true
}
if (allMappings[fullDomain]) {
result.isAvailable = false
}
return res.json(result)
})
app.get('/downloadConfig', (req, res) => {
fetch(`${myProxyApi}/mappings/download/?fullDomain=${req.query.fullDomain}`, {
headers: {
authorization: myProxyKey
}
}).then(r => {
r.body.pipe(res)
res.setHeader('content-disposition', `attachment; filename="deploy.config.js"`)
})
})
app.get('/api/logs/:type/:domain', (req, res) => {
const { type, domain } = req.params
fetch(`${myProxyApi}/logs/${type}/${domain}`, {
headers: {
authorization: myProxyKey
}
}).then(r => {
res.setHeader('content-type', 'text/plain')
r.body.pipe(res)
})
})
app.delete('/api/logs/:domain', (req, res) => {
const { domain } = req.params
fetch(`${myProxyApi}/logs/${domain}`, {
method: 'DELETE',
headers: {
authorization: myProxyKey
}
}).then(r => {
r.body.pipe(res)
})
})
app.get('/api/domains', (req, res) => {
fetch (`${myProxyApi}/availableDomains`, {
headers: {
authorization: myProxyKey
}
})
.then(r => r.json())
.then(domains => res.json(domains))
})
app.use('/api/mappings', (req, res, next) => {
const userId = req.headers.authorization
if (!userId || !(data.users || {})[userId]) {
return res.status(401).json({ message: 'user id is invalid' })
}
req.user = {
id: userId
}
next()
})
app.get('/api/mappings', async (req, res) => {
const originalMappings = await fetch(`${myProxyApi}/mappings`, {
headers: {
authorization: myProxyKey
}
}).then(r => r.json())
const originalMap = originalMappings.reduce((acc, mapping) => {
acc[mapping.fullDomain] = mapping
return acc
}, {})
const allMappings = getMappings()
const userMappings = Object.values(allMappings).filter(m => {
return m.userId === req.user.id
}).map((mapping) => {
const original = originalMap[mapping.fullDomain] || {}
mapping.status = original.status || mapping.status
mapping.id = original.id || mapping.id
return mapping
}).sort((a, b) => b.createdAt - a.createdAt)
res.json(userMappings)
})
app.delete('/api/mappings/:id', async (req, res) => {
const allMappings = getMappings()
const mapping = Object.values(allMappings).find(m => {
return m.id === req.params.id
})
if (!mapping || mapping.userId !== req.user.id) {
return res.status(401).json({ message: 'user id is invalid' })
}
await fetch(`${myProxyApi}/mappings/${req.params.id}`, {
method: 'DELETE',
headers: {
'Content-Type': 'application/json',
authorization: myProxyKey
}
}).then(r => r.json()).catch(e => {
console.log('error for deleting mapping', e)
})
delete allMappings[mapping.fullDomain]
saveData()
res.json(mapping)
})
app.post('/api/mappings', async (req, res) => {
const { subDomain, domain } = req.body
if (!subDomain) return res.status(400).json({ message: 'Subdomain field is required.' })
const newMapping = await fetch(`${myProxyApi}/mappings`, {
method: 'POST',
headers: {
'Content-Type': 'application/json',
authorization: myProxyKey
},
body: JSON.stringify({
domain, subDomain
})
}).then(r => r.json()).catch(e => {
console.log('error for creating mapping', e)
})
// DEV env:
/*
const newMapping = {
fullDomain: getFullDomain(subDomain, domain),
gitLink: 'demo.com',
id: Date.now()
}
*/
const { gitLink, id, fullDomain } = newMapping
const mappings = getMappings()
mappings[fullDomain] = {
id,
domain,
subDomain,
fullDomain,
gitLink,
userId: req.user.id,
createdAt: Date.now()
}
data.mappings = mappings
saveData()
res.json(req.body)
})
app.get('/api/users/:userId', (req, res) => {
const users = data.users || {}
res.json({
key: users[req.params.userId]
})
})
const saveData = () => {
return new Promise((resolve, reject) => {
fs.writeFile(dataPath, JSON.stringify(data, null, 2), (err) => {
if (err) return reject(err)
resolve()
})
})
}
app.post('/api/sshKeys', async (req, res) => {
let { userId, key } = req.body
if (!key) return res.json({ error: 'invalid input' })
const users = data.users || {}
const foundUser = Object.entries(users).find(([uid, sshKey]) => {
return (sshKey === key)
})
// User already exist
if (foundUser && foundUser.length === 2) {
return res.json({
userId: foundUser[0],
key: foundUser[1]
})
}
const tmpFilePath = `${__dirname}/keys_${uuidv4()}`
fs.writeFile(tmpFilePath, key, () => {
exec(`ssh-keygen -lf ${tmpFilePath}`, (err, result) => {
exec(`rm ${tmpFilePath}`, async () => {
if (err) {
return res.status(400).send({
message: 'SSH KEY is invalid. Run "cat ~/.ssh/id_rsa.pub" and submit the output of the command'
})
}
// Replace UserId
if (users[userId]) {
// Delete oldSshKey?
// Decided not to, a user could have multiple
// sshKeys on one browser
}
// Create new key
await fetch(`${myProxyApi}/sshKeys`, {
method: 'POST',
headers: {
'Content-Type': 'application/json',
authorization: myProxyKey
},
body: JSON.stringify({
key
})
}).then(r => r.json()).catch(e => {
console.log('error for creating mapping', e)
})
userId = uuidv4()
users[userId] = key
data.users = users
await saveData()
return res.json({ userId, key })
})
})
})
})
app.listen(process.env.PORT || 8123)