maloja/README.md

193 lines
8.7 KiB
Markdown
Raw Permalink Normal View History

2018-11-27 18:31:52 +03:00
# Maloja
2022-04-09 17:44:48 +03:00
[![](https://img.shields.io/github/v/tag/krateng/maloja?label=GitHub&style=for-the-badge&logo=github&logoColor=white)](https://github.com/krateng/maloja)
[![](https://img.shields.io/pypi/v/malojaserver?label=PyPI&style=for-the-badge&logo=pypi&logoColor=white)](https://pypi.org/project/malojaserver/)
[![](https://img.shields.io/docker/v/krateng/maloja?label=Dockerhub&style=for-the-badge&logo=docker&logoColor=white)](https://hub.docker.com/r/krateng/maloja)
2021-12-15 21:47:34 +03:00
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.
2023-02-26 18:46:36 +03:00
![screenshot](https://raw.githubusercontent.com/krateng/maloja/master/screenshot.png)
2022-04-09 17:34:09 +03:00
2022-04-09 17:44:48 +03:00
You can check [my own Maloja page](https://maloja.krateng.ch) as an example instance.
2019-11-29 22:10:14 +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)
2022-05-15 22:04:50 +03:00
* [Docker / Podman](#docker--podman)
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-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-03-12 10:28:48 +03:00
Your CPU should have a single core passmark score of at the very least 1500. 500 MB RAM should give you a decent experience, but performance will benefit greatly from up to 2 GB.
2022-02-23 07:45:28 +03:00
### PyPI
2019-02-16 23:43:57 +03:00
2022-03-12 10:28:48 +03:00
You can install Maloja with
2021-12-23 20:13:36 +03:00
```console
pip install malojaserver
```
2019-02-17 18:27:55 +03:00
2022-03-12 10:28:48 +03:00
To make sure all dependencies are installed, you can also use one of the included scripts in the `install` folder.
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
2022-04-05 06:48:23 +03:00
### Docker / Podman
2020-05-17 12:46:41 +03:00
2022-04-05 06:48:23 +03:00
Pull the [latest image](https://hub.docker.com/r/krateng/maloja) or check out the repository and use the included Containerfile.
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-04-05 06:48:23 +03:00
You must publish a port on your host machine to bind to the container's web port (default 42010). The container 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-04-18 23:37:27 +03:00
docker run -p 42010:42010 -v $PWD/malojadata:/mljdata -e MALOJA_DATA_DIRECTORY=/mljdata krateng/maloja
```
2021-12-16 00:57:43 +03:00
#### Linux Host
**NOTE:** If you are using [rootless containers with Podman](https://developers.redhat.com/blog/2020/09/25/rootless-containers-with-podman-the-basics#why_podman_) this DOES NOT apply to you.
If you are running Docker on a **Linux Host** you should specify `user:group` ids of the user who owns the folder on the host machine bound to `MALOJA_DATA_DIRECTORY` in order to avoid [docker file permission problems.](https://ikriv.com/blog/?p=4698) These can be specified using the [environmental variables **PUID** and **PGID**.](https://docs.linuxserver.io/general/understanding-puid-and-pgid)
To get the UID and GID for the current user run these commands from a terminal:
* `id -u` -- prints UID (EX `1000`)
* `id -g` -- prints GID (EX `1001`)
The modified run command with these variables would look like:
```console
docker run -e PUID=1000 -e PGID=1001 -p 42010:42010 -v $PWD/malojadata:/mljdata -e MALOJA_DATA_DIRECTORY=/mljdata krateng/maloja
```
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
2022-03-27 06:57:58 +03:00
If you would like to import your previous scrobbles, use the command `maloja import *filename*`. This works on:
2020-01-22 00:37:23 +03:00
2022-03-27 06:57:58 +03:00
* a Last.fm export generated by [benfoxall's website](https://benjaminbenben.com/lastfm-to-csv/) ([GitHub page](https://github.com/benfoxall/lastfm-to-csv))
* an official [Spotify data export file](https://www.spotify.com/us/account/privacy/)
* an official [ListenBrainz export file](https://listenbrainz.org/profile/export/)
2022-04-05 06:48:23 +03:00
* the export of another Maloja instance
2020-01-22 00:37:23 +03:00
⚠️ Never import your data while maloja is running. When you need to do import inside docker container start it in shell mode instead and perform import before starting the container as mentioned above.
```console
docker run -it --entrypoint sh -v $PWD/malojadata:/mljdata -e MALOJA_DATA_DIRECTORY=/mljdata krateng/maloja
cd /mljdata
maloja import my_last_fm_export.csv
```
---
2022-03-27 06:57:58 +03:00
To backup your data, run `maloja backup`, optional with `--include_images`.
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
2022-04-10 19:44:55 +03:00
You can set up any amount of API keys in the file `apikeys.yml` in your configuration folder (or via the web interface). It is recommended to define a different API key for every scrobbler you use.
2020-10-09 18:40:12 +03:00
2022-04-23 15:38:18 +03:00
Some scrobbler clients support Maloja's native API. You can also use any scrobbler that allows you to set a custom Listenbrainz or GNUFM server. See [API.md](API.md) for details.
2020-10-09 18:40:12 +03:00
2022-04-23 15:38:18 +03:00
If you're the maintainer of a music player or server and would like to implement native Maloja scrobbling, feel free to reach out!
2019-05-14 14:04:05 +03:00
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`.