diff --git a/package-lock.json b/package-lock.json index bc2fb6d6..47b89d94 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "coryd.dev", - "version": "20.2.7", + "version": "20.3.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "coryd.dev", - "version": "20.2.7", + "version": "20.3.0", "license": "MIT", "dependencies": { "@cdransf/api-text": "^1.4.0", diff --git a/package.json b/package.json index b243d6fe..500f5609 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "coryd.dev", - "version": "20.2.7", + "version": "20.3.0", "description": "The source for my personal site. Built using 11ty.", "type": "module", "scripts": { diff --git a/src/_data/robots.js b/src/_data/robots.js index e77684e7..c2e5e557 100644 --- a/src/_data/robots.js +++ b/src/_data/robots.js @@ -1,36 +1,34 @@ -export default async function () { - return [ - 'AdsBot-Google', - 'Amazonbot', - 'anthropic-ai', - 'Applebot-Extended', - 'AwarioRssBot', - 'AwarioSmartBot', - 'Bytespider', - 'CCBot', - 'ChatGPT-User', - 'ClaudeBot', - 'Claude-Web', - 'cohere-ai', - 'DataForSeoBot', - 'Diffbot', - 'FacebookBot', - 'FriendlyCrawler', - 'Google-Extended', - 'GoogleOther', - 'GPTBot', - 'img2dataset', - 'ImagesiftBot', - 'magpie-crawler', - 'Meltwater', - 'omgili', - 'omgilibot', - 'peer39_crawler', - 'peer39_crawler/1.0', - 'PerplexityBot', - 'PiplBot', - 'scoop.it', - 'Seekr', - 'YouBot', - ] +import { createClient } from '@supabase/supabase-js' + +const SUPABASE_URL = process.env.SUPABASE_URL +const SUPABASE_KEY = process.env.SUPABASE_KEY +const supabase = createClient(SUPABASE_URL, SUPABASE_KEY) + +const PAGE_SIZE = 100 + +const fetchAllRobots = async () => { + let robots = [] + let from = 0 + let to = PAGE_SIZE - 1 + + while (true) { + const { data, error } = await supabase + .from('robots') + .select('user_agent') + .range(from, to) + + if (error) { + console.error('Error fetching robot data:', error) + return null + } + + robots = robots.concat(data) + if (data.length < PAGE_SIZE) break + } + + return robots.map(robot => robot.user_agent) +} + +export default async function () { + return await fetchAllRobots() } diff --git a/src/_includes/partials/home/status.liquid b/src/_includes/partials/home/status.liquid index 338849c5..e99a9d23 100644 --- a/src/_includes/partials/home/status.liquid +++ b/src/_includes/partials/home/status.liquid @@ -2,7 +2,7 @@ {%- assign book = books | bookStatus: 'started' | reverse | first -%} {%- assign show = tv.recentlyWatched | first -%}
-

I'm a software developer based in Camarillo, California. I enjoy hanging out with my beautiful family and 3 rescue dogs, technology, automation, music, writing, reading, tv and movies. Lately I've been listening to a lot of {{ artist.title }}, reading {{ book.title }} and watching {{ show.name }}.

+

I'm a software developer based in Camarillo, California. I enjoy hanging out with my beautiful family and 3 rescue dogs, technology, automation, music, writing, reading, tv and movies. Lately I've been listening to a lot of {{ artist.title }}, reading {{ book.title }} and watching {{ show.name }}.

{{ status.emoji }} {{ status.content }}

{% render "partials/widgets/now-playing.liquid" %}
\ No newline at end of file