1
0
mirror of https://github.com/spl0k/supysonic.git synced 2024-09-19 10:51:04 +00:00
supysonic/README.md

254 lines
8.6 KiB
Markdown
Raw Normal View History

# Supysonic
2013-05-15 16:07:47 +00:00
2018-02-14 18:45:39 +00:00
_Supysonic_ is a Python implementation of the [Subsonic][] server API.
2013-05-15 16:07:47 +00:00
2020-09-06 13:51:29 +00:00
[![Build Status](https://travis-ci.com/spl0k/supysonic.svg?branch=master)](https://travis-ci.com/spl0k/supysonic)
2017-12-10 21:31:12 +00:00
[![codecov](https://codecov.io/gh/spl0k/supysonic/branch/master/graph/badge.svg)](https://codecov.io/gh/spl0k/supysonic)
2019-12-24 15:55:09 +00:00
![Python](https://img.shields.io/badge/python-3.5%2C%203.6%2C%203.7%2C%203.8-blue.svg)
2017-12-10 21:31:12 +00:00
2013-06-14 17:36:14 +00:00
Current supported features are:
* browsing (by folders or tags)
* streaming of various audio file formats
2018-02-14 18:45:39 +00:00
* [transcoding]
* user or random playlists
* cover arts (as image files in the same folder as music files)
2013-06-14 17:36:14 +00:00
* starred tracks/albums and ratings
* [Last.FM][lastfm] scrobbling
2019-11-23 14:08:18 +00:00
* Jukebox mode
2013-05-15 16:07:47 +00:00
2020-11-09 14:22:15 +00:00
_Supysonic_ currently targets the version 1.10.2 of the _Subsonic_ API. For more
2018-02-14 18:45:39 +00:00
details, go check the [API implementation status][docs-api].
[subsonic]: http://www.subsonic.org/
[transcoding]: docs/transcoding.md
2018-02-14 18:45:39 +00:00
[lastfm]: https://last.fm/
[docs-api]: docs/api.md
2013-06-12 21:14:27 +00:00
2017-06-24 18:24:10 +00:00
## Table of contents
* [Installation](#installation)
+ [Prerequisites](#prerequisites)
+ [Database initialization](#database-initialization)
2018-02-14 18:45:39 +00:00
+ [Configuration](#configuration)
2017-06-24 18:24:10 +00:00
* [Running the application](#running-the-application)
+ [As a standalone debug server](#as-a-standalone-debug-server)
+ [As an Apache WSGI application](#as-an-apache-wsgi-application)
+ [Other options](#other-options)
+ [Docker](#docker)
2017-06-24 18:24:10 +00:00
* [Quickstart](#quickstart)
* [Running the daemon](#running-the-daemon)
2017-06-24 18:24:10 +00:00
* [Upgrading](#upgrading)
## Installation
2013-05-15 16:07:47 +00:00
2018-02-14 18:45:39 +00:00
_Supysonic_ can run as a standalone application (not recommended for a
"production" server) or as a WSGI application (on _Apache_ for instance).
2018-08-27 09:53:51 +00:00
To install it, either run:
2017-06-24 18:06:34 +00:00
2017-06-24 19:23:50 +00:00
$ python setup.py install
2013-05-15 16:07:47 +00:00
2018-08-27 09:53:51 +00:00
or
$ pip install .
2019-12-23 15:23:57 +00:00
but not both.
2018-08-27 09:53:51 +00:00
2013-05-15 16:07:47 +00:00
### Prerequisites
You'll need Python 3.5 or later to run _Supysonic_.
All the dependencies will automatically be installed by the installation
command above.
2017-06-04 18:00:24 +00:00
2018-08-27 09:53:51 +00:00
You may also need a database specific package if you don't want to use SQLite
(the default):
2018-02-14 18:45:39 +00:00
* _MySQL_: `pip install pymysql` or `pip install mysqlclient`
2018-03-20 17:41:17 +00:00
* _PostgreSQL_: `pip install psycopg2-binary`
2017-06-25 18:47:10 +00:00
2018-02-14 18:45:39 +00:00
### Database initialization
2013-05-15 16:07:47 +00:00
2018-02-14 18:45:39 +00:00
_Supysonic_ needs a database to run. It can either be a _SQLite_,
_MySQL_-compatible or _PostgreSQL_ database.
2018-09-02 16:12:23 +00:00
Please refer to the documentation of the DBMS you've chosen on how to create a
database. Once it has a database, _Supysonic_ will automatically create the
tables it needs.
2018-09-02 16:12:23 +00:00
If you want to use _PostgreSQL_ you'll have to add the `citext` extension to the
database once created. This can be done when connected to the database as the
superuser with the folowing SQL command:
2013-05-15 16:07:47 +00:00
2018-09-02 16:12:23 +00:00
supysonic=# CREATE EXTENSION citext;
2018-09-15 14:24:52 +00:00
If you absolutely have no clue about databases, you can go with _SQLite_ as it
doesn't need any setup other than specifying a path for the database.
2018-02-14 18:45:39 +00:00
Note that using _SQLite_ for large libraries might not be the brightest idea as
it tends to struggle with larger datasets.
2018-02-14 18:45:39 +00:00
### Configuration
2018-02-14 18:45:39 +00:00
Once you have a database, you'll need to create a configuration file. It must
be saved under one of the following paths:
2018-02-14 18:45:39 +00:00
* `/etc/supysonic`
* `~/.supysonic`
* `~/.config/supysonic/supysonic.conf`
A roughly documented sample configuration file is provided as `config.sample`.
2018-09-02 16:12:23 +00:00
The minimal configuration using a _SQLite_ database would be:
2018-02-14 18:45:39 +00:00
```ini
[base]
database_uri = sqlite:////some/path/to/a/supysonic.db
```
For a more details on the configuration, please refer to
[documentation][docs-config].
2014-06-12 14:06:46 +00:00
2018-02-14 18:45:39 +00:00
[docs-config]: docs/configuration.md
2014-06-12 14:06:46 +00:00
## Running the application
2014-03-04 20:42:47 +00:00
### As a standalone debug server
2013-05-15 16:07:47 +00:00
2018-02-14 18:45:39 +00:00
It is possible to run _Supysonic_ as a standalone server, but it is only
recommended to do so if you are hacking on the source. A standalone won't be
able to serve more than one request at a time.
2013-05-15 16:07:47 +00:00
2015-04-05 14:20:12 +00:00
To start the server, just run the `cgi-bin/server.py` script.
2014-03-04 20:42:47 +00:00
2017-06-24 19:23:50 +00:00
$ python cgi-bin/server.py
2013-05-15 16:07:47 +00:00
By default, it will listen on the loopback interface (`127.0.0.1`) on port
2018-02-14 18:45:39 +00:00
5000, but you can specify another address on the command line, for instance on
all the IPv6 interfaces:
2013-05-15 16:07:47 +00:00
2017-06-24 19:23:50 +00:00
$ python cgi-bin/server.py ::
2013-05-15 16:07:47 +00:00
2018-02-14 18:45:39 +00:00
### As an _Apache_ WSGI application
2013-05-15 16:07:47 +00:00
2018-02-14 18:45:39 +00:00
_Supysonic_ can run as a WSGI application with the `cgi-bin/supysonic.wsgi`
file. To run it within an _Apache2_ server, first you need to install the WSGI
module and enable it.
2013-05-15 16:07:47 +00:00
2019-12-23 15:23:57 +00:00
$ apt install libapache2-mod-wsgi-py3
2017-06-24 19:23:50 +00:00
$ a2enmod wsgi
2013-05-15 16:07:47 +00:00
2018-02-14 18:45:39 +00:00
Next, edit the _Apache_ configuration to load the application. Here's a basic
example of what it looks like:
2013-05-15 16:07:47 +00:00
2017-06-24 18:15:03 +00:00
WSGIScriptAlias /supysonic /path/to/supysonic/cgi-bin/supysonic.wsgi
<Directory /path/to/supysonic/cgi-bin>
WSGIApplicationGroup %{GLOBAL}
WSGIPassAuthorization On
2018-09-08 13:22:28 +00:00
Require all granted
2017-06-24 18:15:03 +00:00
</Directory>
2013-05-15 16:07:47 +00:00
2018-02-14 18:45:39 +00:00
With that kind of configuration, the server address will look like
*http://server/supysonic/*
2013-05-15 16:07:47 +00:00
2014-03-04 20:42:47 +00:00
### Other options
2018-02-14 18:45:39 +00:00
If you use another HTTP server, such as _nginx_ or _lighttpd_, or prefer to use
FastCGI or CGI over WSGI, FastCGI and CGI scripts are also provided in the
`cgi-bin` folder, respectively as `supysonic.fcgi` and `supysonic.cgi`. You
might need to edit those file to suit your system configuration.
2014-03-04 20:42:47 +00:00
2018-02-14 18:45:39 +00:00
Here are some quick docs on how to configure your server for [FastCGI][] or
[CGI][].
[fastcgi]: http://flask.pocoo.org/docs/deploying/fastcgi/
[cgi]: http://flask.pocoo.org/docs/deploying/cgi/
2014-03-04 20:42:47 +00:00
### Docker
If you want to run _Supysonic_ in a _Docker_ container, here are some images
provided by the community.
- https://github.com/ultimate-pms/docker-supysonic
- https://github.com/ogarcia/docker-supysonic
- https://github.com/foosinn/supysonic
- https://github.com/mikafouenski/docker-supysonic
- https://github.com/oakman/supysonic-docker
- https://github.com/glogiotatidis/supysonic-docker
2017-06-24 20:23:28 +00:00
## Quickstart
2017-06-24 19:23:50 +00:00
2018-02-14 18:45:39 +00:00
To start using _Supysonic_, you'll first have to specify where your music
library is located and create a user to allow calls to the API.
2017-06-24 20:23:28 +00:00
Let's start by creating a new admin user this way:
2017-06-24 19:23:50 +00:00
$ supysonic-cli user add MyUserName -p MyAwesomePassword
$ supysonic-cli user setroles -A MyUserName
2017-06-24 19:23:50 +00:00
2017-06-24 20:23:28 +00:00
To add a new folder to your music library, you can do something like this:
2017-06-24 19:23:50 +00:00
2018-02-14 18:45:39 +00:00
$ supysonic-cli folder add MyLibrary /home/username/Music
2017-06-24 19:23:50 +00:00
2017-06-24 20:23:28 +00:00
Once you've added a folder, you will need to scan it:
2017-06-24 19:23:50 +00:00
$ supysonic-cli folder scan MyLibrary
2013-05-15 16:07:47 +00:00
2017-06-24 20:23:28 +00:00
You should now be able to enjoy your music with the client of your choice!
2018-02-14 18:45:39 +00:00
For more details on the command-line usage, take a look at the
[documentation][docs-cli].
[docs-cli]: docs/cli.md
2018-10-28 14:47:52 +00:00
## Client authentication
The Subsonic API provides several authentication methods. One of them, known as
_token authentication_ was added with API version 1.13.0. As Supysonic currently
2018-12-08 16:18:58 +00:00
targets API version 1.9.0, the token based method isn't supported. So if your
2018-10-28 14:47:52 +00:00
client offers you the option, you'll have to disable the token based
authentication for it to work.
## Running the daemon
_Supysonic_ comes with an optional daemon service that currently provides the
following features:
- background scans
- library changes detection
2019-11-23 14:08:18 +00:00
- jukebox mode
2015-04-05 14:28:04 +00:00
First of all, the daemon allows running backgrounds scans, meaning you can start
scans from the CLI and do something else while it's scanning (otherwise the scan
will block the CLI until it's done).
Background scans also enable the web UI to run scans, while you have to use the
CLI to do so if you don't run the daemon.
2018-02-14 18:45:39 +00:00
Instead of manually running a scan every time your library changes, the daemon
can listen to any library change and update the database accordingly. This
watcher is started along with the daemon but can be disabled to only keep
background scans.
2019-11-23 14:08:18 +00:00
Finally, the daemon acts as a backend for the jukebox mode, allowing to play
audio on the machine running Supysonic.
The daemon is `supysonic-daemon`, it is a non-exiting process. If you want to
keep it running in background, either use the old `nohup` or `screen` methods,
or start it as a _systemd_ unit (see the very basic _supysonic-daemon.service_
file).
2015-04-05 14:28:04 +00:00
## Upgrading
2018-09-15 14:24:52 +00:00
To upgrade your _Supysonic_ installation, simply re-run the command you used to
install it (either `python setup.py install` or `pip install .`).
2018-09-02 16:12:23 +00:00
Some commits might introduce changes in the database schema. Starting with
commit e84459d6278bfc735293edc19b535c62bc2ccd8d (August 29th, 2018) migrations
will be automatically applied.
If your database was created prior to this date, you'll have to manually apply
unapplied migrations up to the latest. Once done you won't have to worry about
future migrations as they'll be automatically applied.
Migration scripts are provided in the `supysonic/schema/migration` folder, named
by the date of commit that introduced the schema changes. There could be both
SQL scripts or Python scripts. The Python scripts require arguments that are
explained when the script is invoked with the `-h` flag.