Go to file
Max Nuding 150d86b50c
Add redirect for feed readers checking /feed
2023-04-07 17:06:27 +02:00
.nova Clean up initial state 2023-03-19 17:17:04 +01:00
src Add redirect for feed readers checking /feed 2023-04-07 17:06:27 +02:00
static Add icons, fix #5 2023-04-07 16:47:37 +02:00
.editorconfig Add toast for error messages, fix #16 2023-04-07 11:55:17 +02:00
.env.EXAMPLE Generate Atom feed 2023-04-05 16:21:43 +02:00
.eslintignore Initial commit 2023-03-19 17:00:49 +01:00
.eslintrc.cjs Clean up initial state 2023-03-19 17:17:04 +01:00
.gitignore Add ansible playbook to gitignore 2023-04-07 15:59:27 +02:00
.npmrc Initial commit 2023-03-19 17:00:49 +01:00
.prettierignore Initial commit 2023-03-19 17:00:49 +01:00
.prettierrc Clean up initial state 2023-03-19 17:17:04 +01:00
README.md Add icons, fix #5 2023-04-07 16:47:37 +02:00
apache2.conf.EXAMPLE Added installation instructions and example files 2023-04-02 15:26:19 +02:00
faviconDescription.json Add icons, fix #5 2023-04-07 16:47:37 +02:00
icon.svg Add icons, fix #5 2023-04-07 16:47:37 +02:00
moshing-mammut.service.EXAMPLE Fix #17 and improve instructions 2023-04-04 12:32:04 +02:00
package-lock.json Fix relative time display for everything older than 1 day 2023-04-07 15:57:13 +02:00
package.json Add license and version shield, increase version 2023-04-07 12:27:40 +02:00
start.sh.EXAMPLE Fix #17 and improve instructions 2023-04-04 12:32:04 +02:00
svelte.config.js Added installation instructions and example files 2023-04-02 15:26:19 +02:00
tsconfig.json Clean up initial state 2023-03-19 17:17:04 +01:00
vite.config.ts Clean up initial state 2023-03-19 17:17:04 +01:00

README.md

License: MIT Release

Moshing Mammut

The fine folks on the metalhead.club Mastodon Server occasionally share like to share what they're currently listening to. Having a quick overview over what is being posted can be a great way to discover new music!

Technical Notes

This is fairly simple from a technical point of view! metalhead.club's local timeline is being watched using the Mastodon Streaming API over a Websocket. Every time a new post arrives, it is checked if it contains any music by checking included hashtags and URLs. A list of tags and URLs can be found in the configuration. Additionally, lins to YouTube are queried, if they are music or other videos using the YouTube API.

If a post passes this check it is saved to a SQLite database.

The UI is built using SvelteKit. The initial page is rendered on the server, and works even without Javascript. If Javascript is enabled, new posts are fetched every 10 seconds, but there are plans to switch to Websockets instead. See #10.

The Mastodon Elephant in the Room

So, are you just going to save other peoples posts into your own database?

I'm afraid so, and I'm not particularly happy about this. I've thought about how to do it without and it doesn't look good.

My initial plan was to search for posts and work with the search results, however Mastodon doesn't offer full text search, so this would be limited to work with hashtags. I can see that there are plenty of posts using only descriptions and links without a corresponding hashtag that would be missed. This isn't a great solution.

Another idea was to store only URLs of posts and resolve the content and account information live. This would be better, but I'm still storing post information while also slowing the app down and introduce more code complexity. I'm willing to make this change if people prefer this though.

Additionally, I ended up adding a few things which turned out to be not needed: The tags table (tags are included in the post's content and I don't do anything separately with tags) and accounts.username and accounts.avatar_static. I will keep these in until the initial wave of feedback arrives, and remove it if no new features required them.

I'll gladly accept any help in coming up with a good solution which doesn't need to store anything at all!

Set Up

This might not be the ideal setup to run this, but here's how I am doing it. Instructions are for running on a Debian or Debian derivative, using Apache as HTTP Proxy. Other setups are possible, but not covered here. By default, NVM is used to install NodeJS, but you can install it any way you want.

This is based on SvelteKit's instructions and How To Deploy Node.js Applications Using Systemd and Nginx

On your server

Install Apache2 if not already installed.

Copy apache2.conf.EXAMPLE and moshing-mammut.service.EXAMPLE to your server.

Set up a user for the app: useradd -mrU moshing-mammut

Switch to your newly created user: su moshing-mammut

Set up NVM:

$ cd
$ curl https://raw.github.com/creationix/nvm/master/install.sh | sh
$ source ~/.nvm/nvm.sh
$ nvm install --lts

Create a directory for the app. This will be called $APP_DIR from now on. I use /home/moshing-mammut/app.

Enter $APP_DIR.

Place package-lock.json and start.sh.EXAMPLE in this directory. Run npm ci --omit dev to install the dependencies.

Rename start.sh.EXAMPLE to start.sh and set the path to your NVM.

If you do not have NVM installed, simply remove the line and make sure your node executable can be found either by specifying the full path or by adding it to your $PATH.

Exit out of your moshing-mammut user shell.

Copy apache2.conf.EXAMPLE to /etc/apache2/sites-available/moshingmammut.conf and replace ServerName with your Domain. If you do not need or want SSL support, remove the whole <IfModule mod_ssl.c> block. If you do, add the path to your SSLCertificateFile and SSLCertificateKeyFile.

Copy moshing-mammut.service.EXAMPLE to /etc/systemd/system/moshing-mammut.service and set your User, Group, ExecStart and WorkingDirectory accordingly.

On your development machine

Copy .env.EXAMPLE to .env and add your YOUTUBE_API_KEY. To obtain one follow YouTube's guide to create an API key. As soon as #13 is implemented, this will be optional!

Run npm run build and copy the output folder, usually build to $APP_DIR on your server.

On your server again

Now, you are ready to start everything up.

Enable the site in Apache2 by running a2ensite moshingmammut.conf.

Create and start the system service by running sudo systemctl enable moshing-mammut.service and then service moshing-mammut start.

Verify that everything is okay with service moshing-mammut status.

The app should now be reachable on http://localhost:3000 or whatever you configured your domain to be!

Icons

Favicon is a combination of speaker-line by remix icon and the official Mastodon icon.

It has been mushed together by me, saved as SVG file in icon.svg and turned into a slew of icons by https://realfavicongenerator.net/:

npm install -g cli-real-favicon
real-favicon generate faviconDescription.json faviconData.json static

Other icons: