From 3fc5996b1795e200c62e8e78bf4870d665a0175a Mon Sep 17 00:00:00 2001 From: NunoSempere Date: Sat, 5 Nov 2022 13:03:04 +0000 Subject: [PATCH] feat: first working version!! --- package.json | 1 + pages/api/dynamic-image.tsx | 74 +++++++++++++++++++++++++++++++++---- yarn.lock | 5 +++ 3 files changed, 72 insertions(+), 8 deletions(-) diff --git a/package.json b/package.json index 3f1b435..88d1dec 100644 --- a/package.json +++ b/package.json @@ -11,6 +11,7 @@ "dependencies": { "@vercel/og": "0.0.14", "next": "latest", + "node-fetch": "2.6.1", "react": "latest", "react-dom": "latest" }, diff --git a/pages/api/dynamic-image.tsx b/pages/api/dynamic-image.tsx index ae914be..1201d5e 100644 --- a/pages/api/dynamic-image.tsx +++ b/pages/api/dynamic-image.tsx @@ -1,20 +1,77 @@ import { ImageResponse } from '@vercel/og' import { NextRequest } from 'next/server' +import fetch from 'node-fetch'; export const config = { runtime: 'experimental-edge', } +const TITLE = "Measure is unceasing" + +const getHiTitle = (body, i) => { + console.log(`Getting h${i}`) + let hi = `h${i}` + let regex = new RegExp(hi + "\>(.*)\<\/" + hi) + console.log(regex) + let his = body.split("\n").filter(line => line.includes(`<${hi}>`)) + for (let line of his) { + let regexOutput = regex.exec(line) + if (regexOutput != null) { + let regexMatch = regexOutput[1] + if (regexMatch != TITLE && !regexMatch.includes(TITLE)) { + return regexMatch + } + } + } + return TITLE +} + +const getTitle = body => { + let bestH1match = getHiTitle(body, 1) + if (bestH1match == TITLE) { + let bestH2match = getHiTitle(body, 2) + return bestH2match + } + return bestH1match +} + +const getFirstImgurImage = body => { + let lines = body.split("\n").filter(line => line.includes('img src="https://i.imgur.com/')) + if (lines.length > 0) { + let regex = new RegExp('img src="https://i.imgur.com/(.*?)"') + let regexOutput = regex.exec(lines[0]) + if (regexOutput != null) { + let regexMatch = regexOutput[1] + let imgurUrl = `https://i.imgur.com/${regexMatch}` + console.log(imgurUrl) + return imgurUrl + } + } +} + export default async function handler(req: NextRequest) { const { searchParams } = req.nextUrl - const username = searchParams.get('username') - if (!username) { - return new ImageResponse(<>{'Visit with "?username=vercel"'}, { + const endpoint = searchParams.get('endpoint') + console.log(searchParams) + + if (!endpoint) { + return new ImageResponse(<>{'Try with "?endpoint=blog/2022/09/02/simple-estimation-examples-in-squiggle/"'}, { width: 1200, height: 630, }) } + const response = await fetch(`https://nunosempere.com/${endpoint}`); + const body = await response.text(); + + // Ah fuck it, I'll just use a regex. + // + let title = getTitle(body) + console.log(title) + + let image = getFirstImgurImage(body) + + return new ImageResponse( (
{/* eslint-disable-next-line @next/next/no-img-element */} avatar -

github.com/{username}

+

{title || "Measure is unceasing"}

+

nunosempere.com/{endpoint}

), { diff --git a/yarn.lock b/yarn.lock index e54f47b..f3c7c1a 100644 --- a/yarn.lock +++ b/yarn.lock @@ -222,6 +222,11 @@ next@latest: "@next/swc-win32-ia32-msvc" "13.0.2" "@next/swc-win32-x64-msvc" "13.0.2" +node-fetch@2.6.1: + version "2.6.1" + resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.6.1.tgz#045bd323631f76ed2e2b55573394416b639a0052" + integrity sha512-V4aYg89jEoVRxRb2fJdAg8FHvI7cEyYdVAh94HH0UIK8oJxUfkjlDQN9RbMx+bEjP7+ggMiFRprSti032Oipxw== + picocolors@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.0.0.tgz#cb5bdc74ff3f51892236eaf79d68bc44564ab81c"