maloja/README.md

225 lines
10 KiB
Markdown
Raw Normal View History

2018-11-27 18:31:52 +03:00
# Maloja
2021-12-15 21:47:34 +03:00
[![](https://img.shields.io/github/v/tag/krateng/maloja?label=GitHub&style=for-the-badge)](https://github.com/krateng/maloja)
[![](https://img.shields.io/pypi/v/malojaserver?label=PyPI&style=for-the-badge)](https://pypi.org/project/malojaserver/)
[![](https://img.shields.io/docker/v/krateng/maloja?label=Docker&style=for-the-badge)](https://hub.docker.com/r/krateng/maloja)
2019-12-10 18:07:23 +03:00
[![](https://img.shields.io/pypi/l/malojaserver?style=for-the-badge)](https://github.com/krateng/maloja/blob/master/LICENSE)
2020-09-04 15:13:26 +03:00
[![](https://img.shields.io/codeclimate/maintainability/krateng/maloja?style=for-the-badge)](https://codeclimate.com/github/krateng/maloja)
2019-12-10 18:07:23 +03:00
2018-11-27 18:31:52 +03:00
Simple self-hosted music scrobble database to create personal listening statistics. No recommendations, no social network, no nonsense.
2020-08-23 04:52:11 +03:00
You can check [my own Maloja page](https://maloja.krateng.ch) to see what it looks like (it's down fairly often because I use it as staging environment, that doesn't reflect the stability of the Maloja software!).
2019-11-29 22:10:14 +03:00
2020-09-05 17:02:11 +03:00
> **IMPORTANT**: With the update 2.7, the backend has been reworked to use a password. With a normal installation, you are asked to provide a password on setup. If you use docker or skip the setup for other reasons, you need to provide the environment variable `MALOJA_FORCE_PASSWORD` on first startup.
2020-09-16 22:57:56 +03:00
> **IMPORTANT**: With the update 2.9, the API endpoints have changed. All old endpoints should be redirected properly, but I recommend updating your clients to use the new ones.
2020-08-18 17:38:28 +03:00
2020-01-22 00:25:33 +03:00
## Table of Contents
2020-09-13 18:21:45 +03:00
* [Features](#features)
2020-01-22 00:25:33 +03:00
* [How to install](#how-to-install)
2022-02-23 07:45:28 +03:00
* [Requirements](#requirements)
* [PyPI](#pypi)
* [From Source](#from-source)
2020-05-29 23:03:59 +03:00
* [Docker](#docker)
2021-12-24 23:23:02 +03:00
* [Extras](#extras)
2020-01-22 00:25:33 +03:00
* [How to use](#how-to-use)
2020-01-23 22:52:53 +03:00
* [Basic control](#basic-control)
* [Data](#data)
* [Customization](#customization)
2020-01-22 00:25:33 +03:00
* [How to scrobble](#how-to-scrobble)
2020-10-18 20:06:44 +03:00
* [Native support](#native-support)
2020-01-22 00:37:23 +03:00
* [Native API](#native-api)
* [Standard-compliant API](#standard-compliant-api)
* [Manual](#manual)
2020-01-23 22:52:53 +03:00
* [How to extend](#how-to-extend)
2020-01-22 00:25:33 +03:00
2020-09-13 18:21:45 +03:00
## Features
2018-11-27 18:31:52 +03:00
2020-09-13 18:21:45 +03:00
* **Self-hosted**: You will always be able to access your data in an easily-parseable format. Your library is not synced with any public or official music database, so you can follow your own tagging schema.
* **Associated Artists**: Compare different artists' popularity in your listening habits including subunits, collaboration projects or solo performances by their members. Change these associations at any time without losing any information.
2020-09-13 18:21:45 +03:00
* **Multi-Artist Tracks**: Some artists often collaborate with others or are listed under "featuring" in the track title. Instead of tracking each combination of artists, each individual artist competes in your charts.
* **Custom Images**: Don't rely on the community to select the best pictures for your favorite artists. Upload your own so that your start page looks like you want it to look.
* **Proxy Scrobble**: No need to fully commit or set up every client twice - you can configure your Maloja server to forward your scrobbles to other services.
* **Standard-compliant API**: Use existing, mature apps or extensions to scrobble to your Maloja server.
* **Manual Scrobbling**: Listening to vinyl or elevator background music? Simply submit a scrobble with the web interface.
* **Keep it Simple**: Unlike Last.fm and similar alternatives, Maloja doesn't have social networking, radios, recommendations or any other gimmicks. It's a tool to keep track of your listening habits over time - and nothing more.
2018-11-27 18:31:52 +03:00
2020-01-23 22:52:53 +03:00
2019-02-17 18:27:55 +03:00
## How to install
2022-02-23 07:45:28 +03:00
### Requirements
Maloja should run on any x86 or ARM machine that runs Python.
2020-05-29 23:03:59 +03:00
2021-12-23 20:13:36 +03:00
I can support you with issues best if you use **Alpine Linux**.
2020-05-29 23:03:59 +03:00
2022-02-23 07:45:28 +03:00
Your CPU should have a single core passmark score of at the very least 1500. When virtualizing or containerizing, Maloja does not benefit from multiple assigned cores.
500 MB RAM should give you a decent experience, but performance will benefit greatly from up to 2 GB.
### PyPI
2019-02-16 23:43:57 +03:00
2022-03-10 23:45:56 +03:00
You can download one of the included scripts in the `install` folder and run it with e.g.
2019-03-24 15:45:59 +03:00
2021-12-23 20:13:36 +03:00
```console
sh install_alpine.sh
```
2018-12-06 15:36:42 +03:00
2021-12-23 20:13:36 +03:00
You can also simply call the install command
2021-12-23 20:13:36 +03:00
```console
pip install malojaserver
```
2019-02-17 18:27:55 +03:00
2022-03-10 23:45:56 +03:00
directly - make sure you have all the system packages installed.
2020-03-02 08:02:51 +03:00
2022-02-23 07:45:28 +03:00
### From Source
2020-03-02 08:02:51 +03:00
2021-12-23 20:13:36 +03:00
Clone this repository and enter the directory with
2020-03-02 08:02:51 +03:00
2021-12-23 20:13:36 +03:00
```console
git clone https://github.com/krateng/maloja
cd maloja
```
2019-02-16 23:43:57 +03:00
2022-03-10 23:45:56 +03:00
Then install all the requirements and build the package, e.g.:
2019-03-24 15:45:59 +03:00
2021-12-23 20:13:36 +03:00
```console
2022-03-10 23:45:56 +03:00
sh ./install/install_dependencies_alpine.sh
2021-12-23 20:13:36 +03:00
pip install -r requirements.txt
pip install .
```
2020-01-23 22:52:53 +03:00
2020-05-17 12:46:41 +03:00
### Docker
2021-12-23 20:13:36 +03:00
Pull the [latest image](https://hub.docker.com/r/krateng/maloja) or check out the repository and use the included Dockerfile.
2020-05-17 12:46:41 +03:00
2021-12-23 20:13:36 +03:00
Of note are these settings which should be passed as environmental variables to the container:
* `MALOJA_DATA_DIRECTORY` -- Set the directory in the container where configuration folders/files should be located
* Mount a [volume](https://docs.docker.com/engine/reference/builder/#volume) to the specified directory to access these files outside the container (and to make them persistent)
* `MALOJA_FORCE_PASSWORD` -- Set an admin password for maloja
2022-02-23 07:45:28 +03:00
You must publish a port on your host machine to bind to the container's web port (default 42010). Note that the Docker version uses IPv4 per default.
2022-02-23 07:45:28 +03:00
An example of a minimum run configuration to access maloja via `localhost:42010`:
```console
2022-02-23 07:45:28 +03:00
docker run -p 42010:42010 -v $PWD/malojadata:/mljdata -e MALOJA_DATA_DIRECTORY=/mljdata maloja
```
2021-12-16 00:57:43 +03:00
2021-12-23 20:13:36 +03:00
### Extras
2021-12-23 20:13:36 +03:00
* If you'd like to display images, you will need API keys for [Last.fm](https://www.last.fm/api/account/create) and [Spotify](https://developer.spotify.com/dashboard/applications). These are free of charge!
2022-02-23 07:45:28 +03:00
* Put your server behind a reverse proxy for SSL encryption. Make sure that you're proxying to the IPv6 or IPv4 address according to your settings.
2021-12-23 20:13:36 +03:00
* You can set up a cronjob to start your server on system boot, and potentially restart it on a regular basis:
2021-12-23 20:13:36 +03:00
```
@reboot sleep 15 && maloja start
42 0 7 * * maloja restart
```
2020-08-18 05:55:36 +03:00
2020-05-17 12:46:41 +03:00
2020-01-22 00:37:23 +03:00
## How to use
2019-03-07 02:31:23 +03:00
2020-01-23 22:52:53 +03:00
### Basic control
2021-12-30 09:29:55 +03:00
Start and stop the server in the background with
2019-03-24 15:45:59 +03:00
2021-12-24 23:23:02 +03:00
```console
2020-01-23 22:56:06 +03:00
maloja start
maloja stop
maloja restart
2021-12-24 23:23:02 +03:00
```
2019-03-24 15:45:59 +03:00
2021-12-30 09:29:55 +03:00
If you need to run the server in the foreground, use
2020-01-23 22:52:53 +03:00
2021-12-24 23:23:02 +03:00
```console
2021-12-30 09:29:55 +03:00
maloja run
2021-12-24 23:23:02 +03:00
```
2020-01-23 22:52:53 +03:00
2020-01-22 00:37:23 +03:00
2020-01-23 22:52:53 +03:00
### Data
2020-01-22 00:37:23 +03:00
2020-01-23 22:52:53 +03:00
* If you would like to import all your previous last.fm scrobbles, use [benfoxall's website](https://benjaminbenben.com/lastfm-to-csv/) ([GitHub page](https://github.com/benfoxall/lastfm-to-csv)). Use the command `maloja import *filename*` to import the downloaded file into Maloja.
2020-01-22 00:37:23 +03:00
2020-01-23 22:52:53 +03:00
* To backup your data, run `maloja backup` or, to only backup essential data (no artwork etc), `maloja backup -l minimal`.
2020-01-22 00:37:23 +03:00
2020-01-23 22:52:53 +03:00
* To fix your database (e.g. after you've added new rules), use `maloja fix`.
2020-01-23 22:52:53 +03:00
### Customization
2019-05-23 14:13:42 +03:00
2021-12-22 01:05:36 +03:00
* Have a look at the [available settings](settings.md) and specifiy your choices in `/etc/maloja/settings.ini`. You can also set each of these settings as an environment variable with the prefix `MALOJA_` (e.g. `MALOJA_SKIP_SETUP`).
2019-12-10 22:49:43 +03:00
2021-01-06 23:53:43 +03:00
* If you have activated admin mode in your web interface, you can upload custom images for artists or tracks by simply dragging them onto the existing image on the artist or track page. You can also manage custom images directly in the file system - consult `images.info` in the `/var/lib/maloja/images` folder.
2019-12-10 22:49:43 +03:00
2021-12-22 01:05:36 +03:00
* To specify custom rules, consult the `rules.info` file in `/etc/maloja/rules`. You can also apply some predefined rules on the `/admin_setup` page of your server.
2019-05-23 14:13:42 +03:00
## How to scrobble
2021-01-06 23:53:43 +03:00
You can set up any amount of API keys in the file `authenticated_machines.tsv` in the `/etc/maloja/clients` folder. It is recommended to define a different API key for every scrobbler you use.
2020-10-09 18:40:12 +03:00
### Native support
These solutions allow you to directly setup scrobbling to your Maloja server:
* [Tauon](https://tauonmusicbox.rocks) Desktop Player
2020-12-29 19:00:10 +03:00
* [Web Scrobbler](https://github.com/web-scrobbler/web-scrobbler) Browser Extension
* [Multi Scrobbler](https://github.com/FoxxMD/multi-scrobbler) Desktop Application
2021-01-31 19:35:33 +03:00
* [Cmus-maloja-scrobbler](https://git.sr.ht/~xyank/cmus-maloja-scrobbler) Script
2021-02-06 06:52:35 +03:00
* [OngakuKiroku](https://github.com/Atelier-Shiori/OngakuKiroku) Desktop Application (Mac)
2020-10-09 18:40:12 +03:00
* [Albula](https://github.com/krateng/albula) Music Server
* [Maloja Scrobbler](https://chrome.google.com/webstore/detail/maloja-scrobbler/cfnbifdmgbnaalphodcbandoopgbfeeh) Chromium Extension (also included in the repository) for Plex Web, Spotify, Bandcamp, Soundcloud or Youtube Music
2020-01-23 22:52:53 +03:00
### Native API
2020-10-09 18:40:12 +03:00
If you want to implement your own method of scrobbling, it's very simple: You only need one POST request to `/apis/mlj_1/newscrobble` with the keys `artist`, `title` and `key` (and optionally `album`,`duration` (in seconds) and `time`(for cached scrobbles)) - either as form-data or json.
If you're the maintainer of a music player or server and would like to implement native Maloja scrobbling, feel free to reach out - I'll try my best to help. For Python applications, you can simply use the [`malojalib` package](https://pypi.org/project/maloja-lib/) for a consistent interface even with future updates.
### Standard-compliant API
You can use any third-party scrobbler that supports the audioscrobbler (GNUFM) or the ListenBrainz protocol. This is still somewhat experimental, but give it a try with these settings:
GNU FM |  
------ | ---------
2020-09-04 01:15:53 +03:00
Gnukebox URL | Your Maloja URL followed by `/apis/audioscrobbler`
Username | Doesn't matter
Password | Any of your API keys
ListenBrainz |  
------ | ---------
2020-09-04 01:15:53 +03:00
API URL | Your Maloja URL followed by `/apis/listenbrainz`
Username | Doesn't matter
Auth Token | Any of your API keys
Audioscrobbler v1.2 |  
------ | ---------
Server URL | Your Maloja URL followed by `/apis/audioscrobbler_legacy`
Username | Doesn't matter
Password | Any of your API keys
2020-10-09 18:40:12 +03:00
Known working scrobblers:
* [Pano Scrobbler](https://github.com/kawaiiDango/pScrobbler) for Android
2020-10-20 18:58:21 +03:00
* [Simple Scrobbler](https://simple-last-fm-scrobbler.github.io) for Android
* [Airsonic Advanced](https://github.com/airsonic-advanced/airsonic-advanced) (requires you to supply the full endpoint (`yoururl.tld/apis/listenbrainz/1/submit-listens`))
* [Funkwhale](https://dev.funkwhale.audio/funkwhale/funkwhale) (use the legacy API `yoururl.tld/apis/audioscrobbler_legacy`)
2020-11-06 22:25:00 +03:00
* [mpdscribble](https://github.com/MusicPlayerDaemon/mpdscribble) (use the legacy API `yoururl.tld/apis/audioscrobbler_legacy`)
I'm thankful for any feedback whether other scrobblers work!
2019-05-17 16:05:17 +03:00
2020-10-09 18:40:12 +03:00
2019-05-14 14:04:05 +03:00
### Manual
2020-08-18 05:55:36 +03:00
If you can't automatically scrobble your music, you can always do it manually on the `/admin_manual` page of your Maloja server.
2020-01-23 22:52:53 +03:00
## How to extend
If you'd like to implement anything on top of Maloja, visit `/api_explorer`.