Rework YouTube list again

I'm moving to self-hosting this site and building it from my self-hosted
code repo and CI, which won't have access to my FreeTube subscriptions
when it builds. To get around this, I've moved to a script that will
snapshot my local FreeTube subscriptions to a JSON file. I'll commit this
file, and it can be used in the build on CI.
This commit is contained in:
Devon Campbell 2025-03-03 18:54:31 -05:00
commit fffa8cc1da
4 changed files with 2075 additions and 11 deletions

View file

@ -6,6 +6,7 @@
"scripts": { "scripts": {
"start": "npx @11ty/eleventy --serve", "start": "npx @11ty/eleventy --serve",
"createBlogPost": "bash create-blog-post.sh", "createBlogPost": "bash create-blog-post.sh",
"updateYT": "node updateYouTubeSubscriptions.mjs",
"build": "npx @11ty/eleventy", "build": "npx @11ty/eleventy",
"deploy": "npx netlify deploy --build", "deploy": "npx netlify deploy --build",
"deploy:prod": "npx netlify deploy --prod --build", "deploy:prod": "npx netlify deploy --prod --build",

File diff suppressed because it is too large Load diff

View file

@ -6,16 +6,18 @@ tags: list
templateEngineOverride: njk,md templateEngineOverride: njk,md
--- ---
Most of the YouTube channels I subscribe to, categorized. This list is now automated! You can [learn how it's implemented](/blog/automating-my-youtube-channel-list/) and use the code yourself if you use FreeTube and have an Eleventy site. Most of the YouTube channels I subscribe to, categorized. This list is now automated! You can [learn how it was implemented](/blog/automating-my-youtube-channel-list/) and use the code yourself if you use FreeTube and have an Eleventy site.
I can't think of any particular trends or bubbling interests that contribute to the latest changes here. There aren't many new subscriptions, so most of the changes are a result of my pruning subscriptions I was no longer watching regularly. I've made another change to the way this page builds in moving to building on CI since that ☝️ blog post was written. It's still basically the same script, but instead of running during the build, I run it on-demand on my computer to snapshot the current state of my subscriptions and commit that data file to the repo. That file is then used by the build in CI to create this page.
Continuing to prune channels I don't watch regularly anymore. I've continued to unsubscribe from some tabletop channels since I'm not super engaged with that hobby right now. That's not the only category that's seen pruning, but it's the most prominent one.
## Key ## Key
- 👀- Instant watch - 👀- Instant watch
- 🤌- Online video virtuoso - 🤌- Online video virtuoso
- 😌- Good for sleepytime (This doesn't mean the content is bad, just that it's relaxing.) - 😌- Good for sleepytime (This doesn't mean the content is bad, just that it's relaxing.)
{% for category in freetubeCategories %} {% for category in youtubeSubscriptions %}
## {{ category.name }} ## {{ category.name }}
<ul> <ul>

View file

@ -1,5 +1,5 @@
// Finds your FreeTube profiles.db and adds the channel objects divided by profile to global data // Finds your FreeTube profiles.db and creates a JSON file in global data
// Access this anywhere via `freetubeCategories`, which will return an array of profile objects // Access this anywhere via `youtubeSubscrptions`, which will return an array of profile objects
// Note: I refer to 'profiles' as 'categories' since that naming makes more sense given how I'm using them in this automation and on my site. In this documentation, a "category" is the same thing as a FreeTube "Profile." // Note: I refer to 'profiles' as 'categories' since that naming makes more sense given how I'm using them in this automation and on my site. In this documentation, a "category" is the same thing as a FreeTube "Profile."
// //
// Category object structure: // Category object structure:
@ -21,10 +21,10 @@
// This would be more generally useful if I parameterized some things like the tag categories, the config location, and some others, but I won't bother with that for now. // This would be more generally useful if I parameterized some things like the tag categories, the config location, and some others, but I won't bother with that for now.
// Maybe in a future revision… or maybe someone would like to submit that as a pull request! // Maybe in a future revision… or maybe someone would like to submit that as a pull request!
const fs = require('fs'); import fs from 'fs';
const fsPromises = fs.promises; import { promises as fsPromises } from 'fs';
const path = require('path'); import path from 'path';
const os = require('os'); import os from 'os';
const homeDir = os.homedir(); const homeDir = os.homedir();
const flatpakConfigPath = path.join(homeDir, '.var', 'app', 'io.freetubeapp.FreeTube', 'config', 'FreeTube'); const flatpakConfigPath = path.join(homeDir, '.var', 'app', 'io.freetubeapp.FreeTube', 'config', 'FreeTube');
@ -35,7 +35,9 @@ const freetubeConfigLocationByOS = {
win32: () => path.join(process.env.APPDATA, 'FreeTube'), win32: () => path.join(process.env.APPDATA, 'FreeTube'),
}; };
module.exports = async function getSubscriptions() { const outputFile = path.join('src', '_data', 'youtubeSubscriptions.json');
async function updateSubscriptions() {
const osName = os.platform(); const osName = os.platform();
if (!(osName in freetubeConfigLocationByOS)) { if (!(osName in freetubeConfigLocationByOS)) {
@ -121,5 +123,12 @@ module.exports = async function getSubscriptions() {
category.subscriptions?.forEach(channel => channel.tags = subscriptionTags[channel.id]) category.subscriptions?.forEach(channel => channel.tags = subscriptionTags[channel.id])
}); });
return sortedCategories; try {
await fsPromises.writeFile(outputFile, JSON.stringify(sortedCategories, null, 2));
console.log(`Subscriptions written to ${outputFile}`);
} catch (error) {
console.error(`Error writing to file: ${outputFile}`, error);
}
}; };
await updateSubscriptions();