forked from LiveDuo/destack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
handle.ts
175 lines (150 loc) · 5.96 KB
/
handle.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
/* eslint-disable @typescript-eslint/no-non-null-assertion */
import { IncomingForm, File as FormidableFile } from 'formidable'
import { NextApiResponse, NextApiRequest } from 'next'
import path from 'path'
import fs from 'fs'
import { formParse, getPage, exists, readdirRecursive } from '../utils'
import { dataType } from '../../types'
const development = process.env.NODE_ENV !== 'production'
const rootPath = process.cwd()
const dataFolder = 'data'
const uploadFolder = 'uploaded'
const uploadFiles = async (req: NextApiRequest): Promise<string[]> => {
const form = new IncomingForm({ uploadDir: uploadFolder, keepExtensions: true })
const uploadPath = path.join('public', uploadFolder)
const uploadFolderExists = await exists(uploadPath)
if (!uploadFolderExists) {
await fs.promises.mkdir(uploadPath)
}
// NOTE: react-scripts triggers reload after uploading files in public folder
form.on('fileBegin', (_, file) => (file.path = path.join('public', uploadFolder, file.name!)))
const files = await formParse(form, req)
const urls = Object.values(files).map((f) => path.join(path.sep, uploadFolder, (<FormidableFile>f).name ?? ''))
return urls
}
export { uploadFiles }
const getFileNameFromRoute = (route: string) => (route === '/' ? 'default' : route) // browser paths are always "/"
const getRouteFromFilename = (filename: string) =>
filename.slice(0, -5) === path.sep + 'default' ? path.sep : filename // file paths are OS-specific
const loadData = async (route: string, ext: string): Promise<string> => {
const fileName = getFileNameFromRoute(route)
const dataPath = path.join(rootPath, dataFolder, `${fileName}.${ext}`)
const dataExists = await exists(dataPath)
if (!dataExists) {
return ext === 'json' ? '{}' : '<div>Not found</div>'
} else {
const content = fs.readFileSync(dataPath, 'utf8')
return content
}
}
export { loadData }
// fix windows/unix paths and base path
const fixPaths = (c: { name: string; content: string }, basePath: string) => {
const nameWithoutBasePath = getRouteFromFilename(c.name.replace(basePath, ''))
const nameWithFixSeps = nameWithoutBasePath.split(path.sep).join('/') // replace all
return { content: c.content, name: nameWithFixSeps }
}
const loadAllData = async (): Promise<dataType[]> => {
const basePath = path.join(rootPath, dataFolder)
const files = readdirRecursive(basePath) as string[]
const data = await Promise.all(
files.map((f) =>
fs.promises
.readFile(f, 'utf8')
.then((c) => ({ name: f, content: c }))
.then((c) => fixPaths(c, basePath)),
),
)
return data
}
export { loadAllData }
const updateData = async (route: string, ext: string, data: string): Promise<void> => {
const fileName = getFileNameFromRoute(route)
const updatePath = path.join(rootPath, dataFolder)
const updateFolderExists = await exists(updatePath)
if (!updateFolderExists) {
await fs.promises.mkdir(updatePath)
}
await fs.promises.writeFile(path.join(updatePath, `${fileName}.${ext}`), data)
}
export { updateData }
const handleData = async (req: NextApiRequest, res: NextApiResponse): Promise<void> => {
// check method
if (req.method !== 'GET' && req.method !== 'POST') {
return res.status(405).json({ error: 'Not allowed' })
}
// handle request
if (req.method === 'GET') {
const data = await loadData(req.query.path as string, (req.query.ext as string) ?? 'html')
return res.status(200).send(data)
} else if (req.method === 'POST') {
const contentType = req.headers['content-type']!
const isMultiPart = contentType.startsWith('multipart/form-data')
if (!isMultiPart) {
const body = await getPage(req)
await updateData(req.query.path as string, (req.query.ext as string) ?? 'html', body)
return res.status(200).send('')
} else {
const urls = await uploadFiles(req)
return res.status(200).json(urls)
}
}
}
const getPackagePath = () => {
const pathCurrent = path.dirname(require.resolve('destack/package.json'))
if (pathCurrent?.startsWith('(api)')) {
return path.join(process.cwd() as string, '..', pathCurrent as string)
} else {
return pathCurrent as string
}
}
const handleAsset = async (req: NextApiRequest, res: NextApiResponse): Promise<void> => {
// check method
if (req.method !== 'GET') {
return res.status(405).json({ error: 'Not allowed' })
}
// handle request
const assetPath = path.join(getPackagePath() as string, req.query.path as string)
const data = await fs.promises.readFile(assetPath)
const options = { 'Content-Type': 'image/png', 'Content-Length': data.length }
res.writeHead(200, options)
res.end(data, 'binary')
}
const handleTheme = async (req: NextApiRequest, res: NextApiResponse): Promise<void> => {
// check method
if (req.method !== 'GET') {
return res.status(405).json({ error: 'Not allowed' })
}
// handle request
const themeName = req.query.name as string
const folderPath = path.join(getPackagePath() as string, 'themes', themeName)
const componentNames = await fs.promises
.readdir(folderPath)
.then((f) => f.filter((c) => c !== 'index.ts' && !c.startsWith('.')))
const componentsP = componentNames.map(async (c) => {
const assetPath = path.join(folderPath, c, 'index.html')
const source = await fs.promises.readFile(assetPath, 'utf-8')
return { source, folder: c }
})
const components = await Promise.all(componentsP)
res.json(components)
}
const handleEditor = async (req: NextApiRequest, res: NextApiResponse): Promise<void> => {
// check env
if (!development) {
return res.status(403).json({ error: 'Forbidden' })
}
// handle request
if (req.query.type === 'data') {
return handleData(req, res)
} else if (req.query.type === 'asset') {
return handleAsset(req, res)
} else if (req.query.type === 'theme') {
return handleTheme(req, res)
} else {
return res.status(400).json({ error: 'Invalid type' })
}
}
export { handleEditor }
const config = { api: { bodyParser: false } }
export { config }