From 3a7ecc70a36a0acbefa2dbfeb92fcd38744e255c Mon Sep 17 00:00:00 2001 From: hazycora Date: Wed, 2 Aug 2023 19:06:10 -0500 Subject: [PATCH] encode url params, make issues/prs separate routes --- server.js | 34 +++++++++++++++++++++++++++++++--- 1 file changed, 31 insertions(+), 3 deletions(-) diff --git a/server.js b/server.js index decace5..009a9e8 100644 --- a/server.js +++ b/server.js @@ -17,7 +17,9 @@ app.get('/', function (req, res) { app.get('/:owner/:repo', async function (req, res) { const repoResp = await fetch( - `https://git.gay/api/v1/repos/${req.params.owner}/${req.params.repo}` + `https://git.gay/api/v1/repos/${encodeURIComponent( + req.params.owner + )}/${encodeURIComponent(req.params.repo)}` ) const repo = await repoResp.json() const html = await eta.renderAsync('repo', { @@ -33,9 +35,35 @@ app.get('/:owner/:repo', async function (req, res) { res.send(await render(html)) }) -app.get('/:owner/:repo/:type/:num', async function (req, res) { +app.get('/:owner/:repo/issue/:num', async function (req, res) { const issueResp = await fetch( - `https://git.gay/api/v1/repos/${req.params.owner}/${req.params.repo}/${req.params.type}/${req.params.num}` + `https://git.gay/api/v1/repos/${encodeURIComponent( + req.params.owner + )}/${encodeURIComponent(req.params.repo)}/issues/${encodeURIComponent( + req.params.num + )}` + ) + const issue = await issueResp.json() + const html = await eta.renderAsync('issue', { + issue, + debug + }) + if (debug) { + res.send(await renderHtml(html)) + return + } + res.type('png') + res.set('Content-Disposition', 'inline') + res.send(await render(html)) +}) + +app.get('/:owner/:repo/pull/:num', async function (req, res) { + const issueResp = await fetch( + `https://git.gay/api/v1/repos/${encodeURIComponent( + req.params.owner + )}/${encodeURIComponent(req.params.repo)}/pulls/${encodeURIComponent( + req.params.num + )}` ) const issue = await issueResp.json() const html = await eta.renderAsync('issue', {