2020-07-05 15:25:55 +00:00
# ![jellyfin-accounts](https://raw.githubusercontent.com/hrfee/jellyfin-accounts/bs5/images/jellyfin-accounts-banner-wide.svg)
2020-04-12 20:25:27 +00:00
2020-08-02 01:33:34 +00:00
#### 👀 ➡️: Have a look at [jfa-go](https://github.com/hrfee/jfa-go), an attempted rewrite in Go. Identical look and features but might be faster.
2020-04-12 20:25:27 +00:00
A basic account management system for [Jellyfin ](https://github.com/jellyfin/jellyfin ).
2020-07-05 15:25:55 +00:00
* Provides a web interface for creating/sending invites
2020-04-12 20:25:27 +00:00
* Sends out emails when a user requests a password reset
2020-04-11 14:20:25 +00:00
* Uses a basic python jellyfin API client for communication with the server.
* Uses [Flask ](https://github.com/pallets/flask ), [HTTPAuth ](https://github.com/miguelgrinberg/Flask-HTTPAuth ), [itsdangerous ](https://github.com/pallets/itsdangerous ), and [Waitress ](https://github.com/Pylons/waitress )
2020-07-05 13:38:07 +00:00
* Frontend uses [Bootstrap ](https://v5.getbootstrap.com )
2020-04-12 20:25:27 +00:00
* Password resets are handled using smtplib, requests, and [jinja ](https://github.com/pallets/jinja )
2020-04-17 17:24:07 +00:00
## Interface
2020-04-11 14:20:25 +00:00
< p align = "center" >
2020-07-12 23:18:42 +00:00
< img src = "https://raw.githubusercontent.com/hrfee/jellyfin-accounts/main/images/jfa.gif" width = "100%" > < / img >
2020-04-11 14:20:25 +00:00
< / p >
2020-04-17 17:24:07 +00:00
< p align = "center" >
2020-07-12 23:18:42 +00:00
< img src = "https://raw.githubusercontent.com/hrfee/jellyfin-accounts/main/images/admin.png" width = "48%" style = "margin-right: 1.5%;" alt = "Admin page" > < / img >
< img src = "https://raw.githubusercontent.com/hrfee/jellyfin-accounts/main/images/create.png" width = "48%" style = "margin-left: 1.5%;" alt = "Account creation page" > < / img >
2020-04-17 17:24:07 +00:00
< / p >
2020-04-11 18:00:50 +00:00
## Get it
### Requirements
2020-04-12 20:25:27 +00:00
2020-04-13 14:05:37 +00:00
* This should work anywhere Python does, i've tried to not use anything OS-specific. Drop an issue if there's a problem, of course.
2020-04-12 20:25:27 +00:00
```
2020-04-11 18:00:50 +00:00
* python >= 3.6
* flask
* flask_httpauth
2020-04-12 20:25:27 +00:00
* jinja2
2020-04-11 18:00:50 +00:00
* requests
* itsdangerous
* passlib
2020-04-13 13:26:40 +00:00
* pyOpenSSL
2020-04-11 18:00:50 +00:00
* waitress
2020-04-12 20:25:27 +00:00
* pytz
2020-04-13 14:16:48 +00:00
* python-dateutil
2020-04-12 20:25:27 +00:00
* watchdog
2020-06-28 23:35:51 +00:00
* packaging
2020-04-12 20:25:27 +00:00
```
2020-04-11 18:00:50 +00:00
### Install
2020-04-15 10:16:29 +00:00
2020-04-13 14:05:37 +00:00
Usually as simple as:
2020-04-11 14:20:25 +00:00
```
2020-06-16 19:17:25 +00:00
pip install jellyfin-accounts
2020-04-11 14:20:25 +00:00
```
2020-04-15 10:16:29 +00:00
If not, or if you want to use docker, see [install ](https://github.com/hrfee/jellyfin-accounts/wiki/Install ).
2020-04-11 14:20:25 +00:00
2020-06-29 12:03:09 +00:00
## Usage
2020-04-11 14:20:25 +00:00
* Passing no arguments will run the server
```
usage: jf-accounts [-h] [-c CONFIG] [-d DATA] [--host HOST] [-p PORT] [-g]
jellyfin-accounts
optional arguments:
-h, --help show this help message and exit
-c CONFIG, --config CONFIG
specifies path to configuration file.
-d DATA, --data DATA specifies directory to store data in. defaults to
~/.jf-accounts.
--host HOST address to host web ui on.
-p PORT, --port PORT port to host web ui on.
2020-06-07 14:00:31 +00:00
-g, --get_defaults tool to grab a JF users policy (access, perms, etc.)
and homescreen layout and output it as json to be used
as a user template.
2020-04-11 14:20:25 +00:00
```
2020-06-29 12:03:09 +00:00
## Setup
2020-06-07 14:00:31 +00:00
#### New user template
* You may want to restrict a user from accessing certain libraries (e.g 4K Movies), display their account on the login screen by default, or set a default homecrseen layout. Jellyfin stores these settings in the user's policy, configuration and displayPreferences.
2020-06-30 18:58:06 +00:00
* Make a temporary account and configure it, then in the web UI, go into "Settings => Set new account defaults". Choose the account, and its configuration will be stored for future use.
2020-04-12 20:25:27 +00:00
#### Emails/Password Resets
* When someone initiates forget password on Jellyfin, a file named `passwordreset*.json` is created in its configuration directory. This directory is monitored and when created, the program reads the username, expiry time and PIN, puts it into a template and sends it to whatever address is specified in `emails.json` .
* **The default forget password popup references the `passwordreset*.json` file created. This is confusing for users, so a quick fix is to edit the `MessageForgotPasswordFileCreated` string in Jellyfin's language folder.**
2020-04-26 20:28:55 +00:00
* Currently, jellyfin-accounts supports generic SSL/TLS or STARTTLS secured SMTP, and the [mailgun ](https://mailgun.com ) REST API.
2020-04-20 19:37:39 +00:00
* Email html is created using [mjml ](https://mjml.io ), and [jinja ](https://github.com/pallets/jinja ) templating is used. If you wish to create your own, ensure you use the same jinja expressions (`{{ pin }}`, etc.) as used in `data/email.mjml` or `invite-email.mjml` , and also create plain text versions for legacy email clients.
2020-04-11 14:20:25 +00:00
2020-06-29 12:03:09 +00:00
### Configuration
2020-04-11 14:21:57 +00:00
* Note: Make sure to put this behind a reverse proxy with HTTPS.
2020-05-02 17:32:58 +00:00
On first run, access the setup wizard at `0.0.0.0:8056` . When finished, restart the program.
2020-06-30 18:58:06 +00:00
The configuration is stored at `~/.jf-accounts/config.ini` . Settings can be changed through the web UI, or by manually editing the file.
2020-05-02 17:32:58 +00:00
2020-04-13 14:05:37 +00:00
For detailed descriptions of each setting, see [setup ](https://github.com/hrfee/jellyfin-accounts/wiki/Setup ).
2020-06-30 18:58:06 +00:00
### Donations
I strongly suggest you send your money to [Jellyfin ](https://opencollective.com/jellyfin ) or a good charity, but for those who want to help me out, a Paypal link is below.
2020-04-19 21:35:51 +00:00
2020-06-30 18:58:06 +00:00
[Donate ](https://www.paypal.me/hrfee )