summaryrefslogtreecommitdiff
path: root/pages/api/notes
diff options
context:
space:
mode:
authorThomas F. K. Jorna <[email protected]>2021-10-08 23:39:37 +0200
committerThomas F. K. Jorna <[email protected]>2021-10-08 23:39:37 +0200
commit2384b30a244c7d6477e54de5385fe7f1cc62d43a (patch)
tree55c9f82f9475249a7f91ac44e408e04e9f1c9560 /pages/api/notes
parentfd4edbd6a854275c10c5b21173f0875921d547d1 (diff)
feat(preview): proper file preview with api routing
Diffstat (limited to 'pages/api/notes')
-rw-r--r--pages/api/notes/[[...slug]].ts17
1 files changed, 17 insertions, 0 deletions
diff --git a/pages/api/notes/[[...slug]].ts b/pages/api/notes/[[...slug]].ts
new file mode 100644
index 0000000..b0df82a
--- /dev/null
+++ b/pages/api/notes/[[...slug]].ts
@@ -0,0 +1,17 @@
+import fs from 'fs'
+
+export default async function handler(req: any, res: any) {
+ const { slug } = req.query
+ const stuff = slug.join('')
+ console.log(stuff)
+ const uri = decodeURIComponent(slug)
+ const prefix = uri.includes('\\') ? '' : '/'
+ const path = `${uri}`
+ try {
+ const text = fs.readFileSync(`${path}`, { encoding: 'utf-8' })
+ res.end(`${text}`)
+ } catch (e) {
+ res.end(`Oopsie Whoopsie! We did a fucky wucky!`)
+ console.log(e)
+ }
+}