jellyfin-accounts/README.md

199 lines
7.3 KiB
Markdown
Raw Normal View History

2020-04-11 16:20:25 +02:00
# jellyfin-accounts
2020-04-12 22:25:27 +02:00
***New: Now capable of sending password reset emails!***
A basic account management system for [Jellyfin](https://github.com/jellyfin/jellyfin).
* Provides a web interface for creating invite codes
* Sends out emails when a user requests a password reset
2020-04-11 16:20:25 +02: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)
* Frontend uses [Bootstrap](https://getbootstrap.com), [jQuery](https://jquery.com) and [jQuery-serialize-object](https://github.com/macek/jquery-serialize-object)
2020-04-12 22:25:27 +02:00
* Password resets are handled using smtplib, requests, and [jinja](https://github.com/pallets/jinja)
2020-04-17 19:24:07 +02:00
## Interface
2020-04-11 16:20:25 +02:00
<p align="center">
2020-04-17 19:24:07 +02:00
<img src="images/jfa.gif" width="100%"></img>
2020-04-11 16:20:25 +02:00
</p>
2020-04-17 19:24:07 +02:00
<p align="center">
<img src="images/admin.png" width="48%" style="margin-right: 1.5%;" alt="Admin page"></img>
<img src="images/create.png" width="48%" style="margin-left: 1.5%;" alt="Account creation page"></img>
</p>
## Get it
### Requirements
2020-04-12 22:25:27 +02:00
2020-04-13 16:05:37 +02: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 22:25:27 +02:00
```
* python >= 3.6
* flask
* flask_httpauth
2020-04-12 22:25:27 +02:00
* jinja2
* requests
* itsdangerous
* passlib
* secrets
* configparser
2020-04-13 15:26:40 +02:00
* pyOpenSSL
* waitress
2020-04-12 22:25:27 +02:00
* pytz
2020-04-13 16:16:48 +02:00
* python-dateutil
2020-04-12 22:25:27 +02:00
* watchdog
```
### Install
2020-04-13 16:05:37 +02:00
Usually as simple as:
2020-04-11 16:20:25 +02:00
```
git clone https://github.com/hrfee/jellyfin-accounts.git
cd jellyfin-accounts
pip3 install pyOpenSSL
2020-04-11 16:20:25 +02:00
python3 setup.py install
```
If not, or if you want to use docker, see [install](https://github.com/hrfee/jellyfin-accounts/wiki/Install).
2020-04-11 16:20:25 +02:00
### Usage
* 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.
-g, --get_policy tool to grab a JF users policy (access, perms, etc.)
and output as json to be used as a user template.
```
### Setup
#### Policy template
2020-04-12 22:25:27 +02:00
* You may want to restrict a user from accessing certain libraries (e.g 4K Movies), or display their account on the login screen by default. Jellyfin stores these settings as a user's policy.
2020-04-11 16:20:25 +02:00
* Make a temporary account and change its settings, then run `jf-accounts --get_policy`. Choose your user, and the policy will be stored at the location you set in `user_template`, and used for all subsequent new accounts.
2020-04-12 22:25:27 +02: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.**
* Currently, jellyfin-accounts supports generic SSL/TLS secured SMTP, and the [mailgun](https://mailgun.com) REST API.
* 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 16:20:25 +02:00
2020-04-12 22:25:27 +02:00
#### Configuration
2020-04-11 16:21:57 +02:00
* Note: Make sure to put this behind a reverse proxy with HTTPS.
2020-04-13 16:05:37 +02:00
For detailed descriptions of each setting, see [setup](https://github.com/hrfee/jellyfin-accounts/wiki/Setup).
2020-04-11 16:20:25 +02:00
On first run, the default configuration is copied to `~/.jf-accounts/config.ini`.
2020-04-11 16:20:25 +02:00
```
[jellyfin]
2020-04-12 22:25:27 +02:00
; It is reccommended to create a limited admin account for this program.
2020-04-11 16:20:25 +02:00
username = username
password = password
; Server will also be used in the invite form, so make sure it's publicly accessible.
server = https://jellyf.in:443
client = jf-accounts
version = 0.1
device = jf-accounts
device_id = jf-accounts-0.1
[ui]
; Set 0.0.0.0 to run localhost
host = 0.0.0.0
2020-04-11 16:20:25 +02:00
port = 8056
; Enable this to use Jellyfin users instead of the below username and pw.
jellyfin_login = true
; Allows only admin users on Jellyfin to access admin page.
admin_only = true
; Username to use on admin page... (leave blank if using jellyfin_login)
2020-04-11 16:20:25 +02:00
username = your username
; ..and its corresponding password (leave blank if using jellyfin_login)
2020-04-11 16:20:25 +02:00
password = your password
2020-04-11 16:20:25 +02:00
debug = false
2020-04-12 22:25:27 +02:00
; Displayed at the bottom of all pages except admin
2020-04-11 16:20:25 +02:00
contact_message = Need help? contact me.
; Displayed at top of form page.
help_message = Enter your details to create an account.
; Displayed when an account is created.
success_message = Your account has been created. Click below to continue to Jellyfin.
[password_validation]
; Enables password validation.
enabled = true
; Min. password length
min_length = 8
; Min. number of uppercase characters
upper = 1
; Min. number of lowercase characters
lower = 0
; Min. number of numbers
number = 1
; Min. number of special characters
special = 0
2020-04-12 22:25:27 +02:00
[email]
; Leave this whole section if you aren't using any email-related features.
2020-04-12 22:25:27 +02:00
use_24h = true
; Date format follows datetime's strftime.
2020-04-25 23:08:59 +02:00
date_format = %d/%m/%y
2020-04-12 22:25:27 +02:00
; Displayed at bottom of emails
message = Need help? contact me.
; Mail methods: mailgun, smtp
method = smtp
2020-04-12 22:25:27 +02:00
; Address to send from
address = jellyfin@jellyf.in
; The name of the sender
from = Jellyfin
[password_resets]
; Enable to store provided email addresses, monitor jellyfin directory for pw-resets, and send pin
enabled = true
; Directory to monitor for passwordReset*.json files. Usually the jellyfin config directory
watch_directory = /path/to/jellyfin
; Path to custom email html. If blank, uses the internal template.
email_html =
; Path to alternate plaintext email. If blank, uses the internal template.
email_text =
; Subject of emails
subject = Password Reset - Jellyfin
[invite_emails]
; If enabled, allows one to send an invite directly to an email address.
enabled = true
; Path to custom email html. If blank, uses the internal template.
email_html =
; Path to alternate plaintext email. If blank, uses the internal template.
email_text =
subject = Invite - Jellyfin
; Base url for jf-accounts. This necessary because most will use a reverse proxy, so the program has no other way of knowing what URL to send.
url_base = http://accounts.jellyf.in:8056/invite
2020-04-12 22:25:27 +02:00
[mailgun]
api_url = https://api.mailgun.net...
api_key = your api key
[smtp]
; Insecure SMTP hasn't been implemented, although I doubt many will need it.
ssl = true
server = smtp.jellyf.in
; Uses SMTP_SSL, so make sure the port is for this, not starttls.
port = 465
password = smtp password
2020-04-11 16:20:25 +02:00
[files]
; When the below paths are left blank, files are stored in ~/.jf-accounts/.
; Path to store valid invites.
invites =
; Path to store emails addresses in JSON
2020-04-11 16:20:25 +02:00
emails =
; Path to the user policy template. Can be acquired with get-template.
user_template =
```