buildarr-jellyseerr


Namebuildarr-jellyseerr JSON
Version 0.3.2 PyPI version JSON
download
home_pagehttps://buildarr.github.io
SummaryJellyseerr media request library application plugin for Buildarr
upload_time2024-03-02 03:14:13
maintainer
docs_urlNone
authorCallum Dickinson
requires_python>=3.8,<4.0
licenseGPL-3.0-or-later
keywords buildarr jellyseerr sonarr radarr
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Buildarr Jellyseerr Plugin

[![PyPI](https://img.shields.io/pypi/v/buildarr-jellyseerr)](https://pypi.org/project/buildarr-jellyseerr) ![PyPI - Python Version](https://img.shields.io/pypi/pyversions/buildarr-jellyseerr)  [![GitHub](https://img.shields.io/github/license/buildarr/buildarr-jellyseerr)](https://github.com/buildarr/buildarr-jellyseerr/blob/main/LICENSE) ![Pre-commit hooks](https://github.com/buildarr/buildarr-jellyseerr/actions/workflows/pre-commit.yml/badge.svg) [![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)

The Buildarr Jellyseerr plugin (`buildarr-jellyseerr`) is a plugin for Buildarr that adds the capability to configure and manage [Jellyseerr](https://github.com/Fallenbagel/jellyseerr) instances.

Jellyseerr is an application that links with both Jellyfin/Plex and your Sonarr/Radarr instances. It allows your users to login using their Jellyfin/Plex credentials, browse available media online, and make media requests for new content.

Once these requests are approved, Jellyseerr will then make the requests to Sonarr/Radarr to download them, monitor the progress, and report back to the user when the media is available in Jellyfin/Plex.

Buildarr can be used to initialise a new Jellyseerr install with Jellyfin server credentials (Plex is not supported at this time), manage the Jellyseerr server settings, and connect it with Sonarr and Radarr servers.

## Installation

When using Buildarr as a [standalone application](https://buildarr.github.io/installation/#standalone-application), the Jellyseerr plugin can simply be installed using `pip`:

```bash
$ pip install buildarr buildarr-jellyseerr
```

If you are linking a Jellyseerr instance with another Buildarr-configured application, specify the following extras to also install a compatible version of the corresponding plugins:

* `sonarr` (for the Sonarr TV show PVR)
* `radarr` (for the Radarr movie PVR)

```bash
$ pip install buildarr buildarr-jellyseerr[sonarr,radarr]
```

When using Buildarr as a [Docker container](https://buildarr.github.io/installation/#docker), the Jellyseerr plugin is bundled with the official container (`callum027/buildarr`), so there is no need to install it separately.

You can upgrade or pin the version of the plugin to a specific version within the container by setting the `$BUILDARR_JELLYSEERR_VERSION` environment variable in the `docker run` command using `--env`/`-e`:

```bash
-e BUILDARR_JELLYSEERR_VERSION="<version>"
```

## Quick Start

Brand new Jellyseerr instances require initialisation for Buildarr to be able to manage it.

This is usually done manually by navigating to `http://localhost:5055/setup` on the Jellyseerr host, logging in with Jellyfin or Plex credentials, and then selecting libraries to monitor.

As of this release, automatically initialising Jellyseerr for Plex is not yet supported. Please initialise the Jellyseerr instance manually.

For Jellyseerr instances being connected to Jellyfin only, Buildarr can perform this initialisation automatically.

To do this, set the following parameters under the `jellyfin` configuration section, which are required when initialisting a new instance (they are otherwise optional):

```yaml
---

jellyseerr:
  hostname: "localhost"
  port: 5055
  protocol: "http"
  api_key: "<API key>"  # Required. Check `settings.json` in the config volume to get the value.
  settings:
    jellyfin:
      server_url: "http://localhost:8096"  # Jellyfin server URL, preferably direct (no proxy).
      username: "admin"  # Jellyfin server admin user.
      password: "secure-password"  # Jellyfin server admin user password.
      email_address: "admin@example.com"  # Jellyfin server admin email address.
      # Jellyfin media libraries to monitor.
      # This can be used to change what libraries Jellyseerr monitors,
      # even after it is initialised.
      libraries:
        - "Shows"
        - "Movies"
        - "Anime"
        - "Anime Movies"
```

After that, configure and run Buildarr as normal, and setup desired settings for Jellyseerr.

For more information on configuring Jellyseerr, see [Configuring your Jellyseerr instance](#configuring-your-jellyseerr-instance).

Once you have a complete configuration file, test it against the Jellyseerr instance using `buildarr run`.

The output should contain messages about checking, performing and finishing the initialisation. If no errors were found, congratulations, your Jellyseerr instance is now managed by Buildarr!

```text
2023-04-15 09:44:20,386 buildarr:1 buildarr.cli.run [INFO] Buildarr version 0.4.2 (log level: INFO)
2023-04-15 09:44:20,386 buildarr:1 buildarr.cli.run [INFO] Loading configuration file '/config/buildarr.yml'
2023-04-15 09:44:20,458 buildarr:1 buildarr.cli.run [INFO] Finished loading configuration file
2023-04-15 09:44:20,461 buildarr:1 buildarr.cli.run [INFO] Loaded plugins: jellyseerr (0.1.0), prowlarr (0.1.1), sonarr (0.4.1)
2023-04-15 09:44:20,461 buildarr:1 buildarr.cli.run [INFO] Loading instance configurations
2023-04-15 09:44:20,464 buildarr:1 buildarr.cli.run [INFO] Finished loading instance configurations
2023-04-15 09:44:20,464 buildarr:1 buildarr.cli.run [INFO] Running with plugins: sonarr, jellyseerr
2023-04-15 09:44:20,464 buildarr:1 buildarr.cli.run [INFO] Resolving instance dependencies
2023-04-15 09:44:20,464 buildarr:1 buildarr.cli.run [INFO] Finished resolving instance dependencies
2023-04-15 09:44:20,464 buildarr:1 buildarr.cli.run [INFO] Rendering instance configuration dynamic attributes
2023-04-15 09:44:20,465 buildarr:1 buildarr.cli.run [INFO] Finished rendering instance configuration dynamic attributes
2023-04-15 09:44:20,599 buildarr:1 buildarr.cli.run [INFO] <jellyseerr> (default) Instance has not been initialised
2023-04-15 09:44:20,600 buildarr:1 buildarr.cli.run [INFO] <jellyseerr> (default) Initialising instance
2023-04-15 09:44:20,600 buildarr:1 buildarr_jellyseerr.config.settings.jellyfin [INFO] <jellyseerr> (default) Checking if required attributes are defined
2023-04-15 09:44:20,600 buildarr:1 buildarr_jellyseerr.config.settings.jellyfin [INFO] <jellyseerr> (default) Finished checking if required attributes are defined
2023-04-15 09:44:20,600 buildarr:1 buildarr_jellyseerr.config.settings.jellyfin [INFO] <jellyseerr> (default) Authenticating Jellyseerr with Jellyfin
2023-04-15 09:44:20,842 buildarr:1 buildarr_jellyseerr.config.settings.jellyfin [INFO] <jellyseerr> (default) Finished authenticating Jellyseerr with Jellyfin
2023-04-15 09:44:20,842 buildarr:1 buildarr_jellyseerr.config.settings.jellyfin [INFO] <jellyseerr> (default) Syncing Jellyfin libraries to Jellyseerr
2023-04-15 09:44:21,027 buildarr:1 buildarr_jellyseerr.config.settings.jellyfin [INFO] <jellyseerr> (default) Finished syncing Jellyfin libraries to Jellyseerr
2023-04-15 09:44:21,027 buildarr:1 buildarr_jellyseerr.config.settings.jellyfin [INFO] <jellyseerr> (default) Enabling Jellyfin libraries in Jellyseerr: 'TV Shows'
2023-04-15 09:44:21,083 buildarr:1 buildarr_jellyseerr.config.settings.jellyfin [INFO] <jellyseerr> (default) Finished enabling Jellyfin libraries in Jellyseerr
2023-04-15 09:44:21,083 buildarr:1 buildarr_jellyseerr.config.settings.jellyfin [INFO] <jellyseerr> (default) Finalising initialisation
2023-04-15 09:44:21,191 buildarr:1 buildarr_jellyseerr.config.settings.jellyfin [INFO] <jellyseerr> (default) Finished finalising initialisation
2023-04-15 09:44:21,192 buildarr:1 buildarr.cli.run [INFO] <jellyseerr> (default) Finished initialising instance
2023-04-15 09:44:21,192 buildarr:1 buildarr.cli.run [INFO] Loading secrets file from '/config/secrets.json'
2023-04-15 09:44:21,196 buildarr:1 buildarr.cli.run [INFO] Finished loading secrets file
2023-04-15 09:44:21,196 buildarr:1 buildarr.cli.run [INFO] <sonarr> (default) Checking secrets
2023-04-15 09:44:21,201 buildarr:1 buildarr.cli.run [INFO] <sonarr> (default) Connection test successful using cached secrets
2023-04-15 09:44:21,201 buildarr:1 buildarr.cli.run [INFO] <sonarr> (default) Finished checking secrets
2023-04-15 09:44:21,201 buildarr:1 buildarr.cli.run [INFO] <jellyseerr> (default) Checking secrets
2023-04-15 09:44:21,223 buildarr:1 buildarr.cli.run [INFO] <jellyseerr> (default) Connection test failed using cached secrets (or not cached), fetching secrets
2023-04-15 09:44:21,231 buildarr:1 buildarr.cli.run [INFO] <jellyseerr> (default) Connection test successful using fetched secrets
2023-04-15 09:44:21,231 buildarr:1 buildarr.cli.run [INFO] <jellyseerr> (default) Finished checking secrets
2023-04-15 09:44:21,231 buildarr:1 buildarr.cli.run [INFO] Saving updated secrets file to '/config/secrets.json'
2023-04-15 09:44:21,232 buildarr:1 buildarr.cli.run [INFO] Finished saving updated secrets file
2023-04-15 09:44:21,232 buildarr:1 buildarr.cli.run [INFO] Updating configuration on remote instances
2023-04-15 09:44:21,232 buildarr:1 buildarr.cli.run [INFO] <sonarr> (default) Fetching remote configuration to check if updates are required
2023-04-15 09:44:21,363 buildarr:1 buildarr.cli.run [INFO] <sonarr> (default) Finished fetching remote configuration
2023-04-15 09:44:21,402 buildarr:1 buildarr.cli.run [INFO] <sonarr> (default) Updating remote configuration
2023-04-15 09:44:21,491 buildarr:1 buildarr.cli.run [INFO] <sonarr> (default) Remote configuration is up to date
2023-04-15 09:44:21,491 buildarr:1 buildarr.cli.run [INFO] <sonarr> (default) Finished updating remote configuration
2023-04-15 09:44:21,491 buildarr:1 buildarr.cli.run [INFO] <jellyseerr> (default) Fetching remote configuration to check if updates are required
2023-04-15 09:44:22,496 buildarr:1 buildarr.cli.run [INFO] <jellyseerr> (default) Finished fetching remote configuration
2023-04-15 09:44:22,507 buildarr:1 buildarr.cli.run [INFO] <jellyseerr> (default) Updating remote configuration
2023-04-15 09:44:22,629 buildarr:1 buildarr.cli.run [INFO] <jellyseerr> (default) Remote configuration successfully updated
2023-04-15 09:44:22,629 buildarr:1 buildarr.cli.run [INFO] <jellyseerr> (default) Finished updating remote configuration
2023-04-15 09:44:22,629 buildarr:1 buildarr.cli.run [INFO] Finished updating configuration on remote instances
2023-04-15 09:44:22,629 buildarr:1 buildarr.cli.run [INFO] Deleting unmanaged/unused resources on remote instances
2023-04-15 09:44:22,630 buildarr:1 buildarr.cli.run [INFO] <jellyseerr> (default) Refetching remote configuration to delete unused resources
2023-04-15 09:44:22,735 buildarr:1 buildarr.cli.run [INFO] <jellyseerr> (default) Finished refetching remote configuration
2023-04-15 09:44:22,749 buildarr:1 buildarr.cli.run [INFO] <jellyseerr> (default) Deleting unmanaged/unused resources on the remote instance
2023-04-15 09:44:22,760 buildarr:1 buildarr.cli.run [INFO] <jellyseerr> (default) Remote configuration is clean
2023-04-15 09:44:22,760 buildarr:1 buildarr.cli.run [INFO] <jellyseerr> (default) Finished deleting unmanaged/unused resources on the remote instance
2023-04-15 09:44:22,760 buildarr:1 buildarr.cli.run [INFO] <sonarr> (default) Refetching remote configuration to delete unused resources
2023-04-15 09:44:22,874 buildarr:1 buildarr.cli.run [INFO] <sonarr> (default) Finished refetching remote configuration
2023-04-15 09:44:22,909 buildarr:1 buildarr.cli.run [INFO] <sonarr> (default) Deleting unmanaged/unused resources on the remote instance
2023-04-15 09:44:22,910 buildarr:1 buildarr.cli.run [INFO] <sonarr> (default) Remote configuration is clean
2023-04-15 09:44:22,910 buildarr:1 buildarr.cli.run [INFO] <sonarr> (default) Finished deleting unmanaged/unused resources on the remote instance
2023-04-15 09:44:22,910 buildarr:1 buildarr.cli.run [INFO] Finished deleting unmanaged/unused resources on remote instances
```

## Configuring your Jellyseerr instance

The following sections cover all of the possible configuration attributes for a Jellyseerr instance.

* [Host Configuration](https://buildarr.github.io/plugins/jellyseerr/configuration/host)
* Settings
    * [General](https://buildarr.github.io/plugins/jellyseerr/configuration/settings/general)
    * [Users](https://buildarr.github.io/plugins/jellyseerr/configuration/settings/users)
    * [Jellyfin](https://buildarr.github.io/plugins/jellyseerr/configuration/settings/jellyfin)
    * Services
        * [Sonarr](https://buildarr.github.io/plugins/jellyseerr/configuration/settings/services/sonarr)
        * [Radarr](https://buildarr.github.io/plugins/jellyseerr/configuration/settings/services/radarr)
    * [Notifications](https://buildarr.github.io/plugins/jellyseerr/configuration/settings/notifications)

## Dumping an existing Jellyseerr instance configuration

Buildarr is capable of dumping a running Jellyseerr instance's configuration.

```bash
$ buildarr jellyseerr dump-config http://localhost:5055 > jellyseerr.yml
Jellyseerr instance API key: <Paste API key here>
```

The dumped YAML object can be placed directly under the `jellyseerr` configuration block, or used as an [instance-specific configuration](https://buildarr.github.io/configuration/#multiple-instances-of-the-same-type).

All possible values are explicitly defined in this dumped configuration.

```yaml
hostname: localhost
port: 5055
protocol: http
api_key: AbCdEfGhIjKlMnOpQrStUvWxYzaBcDeFgHiJkLmNoPqRsTuVwXyZ123456789012345=
image: fallenbagel/jellyseerr
version: 1.4.1
settings:
  general:
    application_title: Jellyseerr
    application_url: null
    enable_proxy_support: false
    enable_csrf_protection: false
    enable_image_caching: false
    display_language: en
    discover_region: ''
    discover_languages:
    - en
    hide_available_media: false
    allow_partial_series_requests: true
  jellyfin:
    server_url: null
    username: null
    password: null
    email_address: null
    external_url: null
    libraries:
    - TV Shows
  users:
    enable_local_signin: true
    enable_new_jellyfin_signin: true
    global_movie_request_limit: 0
    global_movie_request_days: 7
    global_series_request_limit: 0
    global_series_request_days: 7
    default_permissions:
    - request
    - request-4k
  services:
    radarr:
      delete_unmanaged: false
      definitions: {}
    sonarr:
      delete_unmanaged: false
      definitions:
        Sonarr:
          is_default_server: true
          is_4k_server: false
          hostname: localhost
          port: 8989
          use_ssl: false
          url_base: null
          external_url: http://localhost:8989
          enable_scan: false
          enable_automatic_search: true
          instance_name: null
          api_key: 1a2b3c4d5e6f1a2b3c4d5e6f1a2b3c4d
          root_folder: /data/media/tv
          quality_profile: TV Shows
          language_profile: English
          tags: []
          anime_root_folder: null
          anime_quality_profile: null
          anime_language_profile: null
          anime_tags: []
          enable_season_folders: true
  notifications:
    discord:
      enable: false
      notification_types: []
      webhook_url: null
      username: null
      avatar_url: null
      enable_mentions: true
    email:
      enable: false
      require_user_email: false
      sender_name: Jellyseerr
      sender_address: null
      smtp_host: null
      smtp_port: 587
      encryption_method: starttls-prefer
      allow_selfsigned_certificates: false
      smtp_username: null
      smtp_password: null
      pgp_private_key: null
      pgp_password: null
    gotify:
      enable: false
      notification_types: []
      server_url: null
      access_token: null
    lunasea:
      enable: false
      notification_types: []
      webhook_url: null
      profile_name: null
    pushbullet:
      enable: false
      notification_types: []
      access_token: null
      channel_tag: null
    pushover:
      enable: false
      notification_types: []
      api_key: null
      user_key: null
    slack:
      enable: false
      notification_types: []
      webhook_url: null
    telegram:
      enable: false
      notification_types: []
      access_token: null
      username: null
      chat_id: null
      send_silently: false
    webhook:
      enable: false
      notification_types: []
      webhook_url: null
      authorization_header: null
      payload_template: "{\n    \"notification_type\": \"{{notification_type}}\",\n\
        \    \"event\": \"{{event}}\",\n    \"subject\": \"{{subject}}\",\n    \"\
        message\": \"{{message}}\",\n    \"image\": \"{{image}}\",\n    \"{{media}}\"\
        : {\n        \"media_type\": \"{{media_type}}\",\n        \"tmdbId\": \"{{media_tmdbid}}\"\
        ,\n        \"tvdbId\": \"{{media_tvdbid}}\",\n        \"status\": \"{{media_status}}\"\
        ,\n        \"status4k\": \"{{media_status4k}}\"\n    },\n    \"{{request}}\"\
        : {\n        \"request_id\": \"{{request_id}}\",\n        \"requestedBy_email\"\
        : \"{{requestedBy_email}}\",\n        \"requestedBy_username\": \"{{requestedBy_username}}\"\
        ,\n        \"requestedBy_avatar\": \"{{requestedBy_avatar}}\"\n    },\n  \
        \  \"{{issue}}\": {\n        \"issue_id\": \"{{issue_id}}\",\n        \"issue_type\"\
        : \"{{issue_type}}\",\n        \"issue_status\": \"{{issue_status}}\",\n \
        \       \"reportedBy_email\": \"{{reportedBy_email}}\",\n        \"reportedBy_username\"\
        : \"{{reportedBy_username}}\",\n        \"reportedBy_avatar\": \"{{reportedBy_avatar}}\"\
        \n    },\n    \"{{comment}}\": {\n        \"comment_message\": \"{{comment_message}}\"\
        ,\n        \"commentedBy_email\": \"{{commentedBy_email}}\",\n        \"commentedBy_username\"\
        : \"{{commentedBy_username}}\",\n        \"commentedBy_avatar\": \"{{commentedBy_avatar}}\"\
        \n    },\n    \"{{extra}}\": []\n}"
    webpush:
      enable: false
```

            

Raw data

            {
    "_id": null,
    "home_page": "https://buildarr.github.io",
    "name": "buildarr-jellyseerr",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.8,<4.0",
    "maintainer_email": "",
    "keywords": "buildarr,jellyseerr,sonarr,radarr",
    "author": "Callum Dickinson",
    "author_email": "callum.dickinson.nz@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/92/15/a7931dc9363e567b710391dff8b116ad0b202c26918f8e257fe3462b0f21/buildarr_jellyseerr-0.3.2.tar.gz",
    "platform": null,
    "description": "# Buildarr Jellyseerr Plugin\n\n[![PyPI](https://img.shields.io/pypi/v/buildarr-jellyseerr)](https://pypi.org/project/buildarr-jellyseerr) ![PyPI - Python Version](https://img.shields.io/pypi/pyversions/buildarr-jellyseerr)  [![GitHub](https://img.shields.io/github/license/buildarr/buildarr-jellyseerr)](https://github.com/buildarr/buildarr-jellyseerr/blob/main/LICENSE) ![Pre-commit hooks](https://github.com/buildarr/buildarr-jellyseerr/actions/workflows/pre-commit.yml/badge.svg) [![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)\n\nThe Buildarr Jellyseerr plugin (`buildarr-jellyseerr`) is a plugin for Buildarr that adds the capability to configure and manage [Jellyseerr](https://github.com/Fallenbagel/jellyseerr) instances.\n\nJellyseerr is an application that links with both Jellyfin/Plex and your Sonarr/Radarr instances. It allows your users to login using their Jellyfin/Plex credentials, browse available media online, and make media requests for new content.\n\nOnce these requests are approved, Jellyseerr will then make the requests to Sonarr/Radarr to download them, monitor the progress, and report back to the user when the media is available in Jellyfin/Plex.\n\nBuildarr can be used to initialise a new Jellyseerr install with Jellyfin server credentials (Plex is not supported at this time), manage the Jellyseerr server settings, and connect it with Sonarr and Radarr servers.\n\n## Installation\n\nWhen using Buildarr as a [standalone application](https://buildarr.github.io/installation/#standalone-application), the Jellyseerr plugin can simply be installed using `pip`:\n\n```bash\n$ pip install buildarr buildarr-jellyseerr\n```\n\nIf you are linking a Jellyseerr instance with another Buildarr-configured application, specify the following extras to also install a compatible version of the corresponding plugins:\n\n* `sonarr` (for the Sonarr TV show PVR)\n* `radarr` (for the Radarr movie PVR)\n\n```bash\n$ pip install buildarr buildarr-jellyseerr[sonarr,radarr]\n```\n\nWhen using Buildarr as a [Docker container](https://buildarr.github.io/installation/#docker), the Jellyseerr plugin is bundled with the official container (`callum027/buildarr`), so there is no need to install it separately.\n\nYou can upgrade or pin the version of the plugin to a specific version within the container by setting the `$BUILDARR_JELLYSEERR_VERSION` environment variable in the `docker run` command using `--env`/`-e`:\n\n```bash\n-e BUILDARR_JELLYSEERR_VERSION=\"<version>\"\n```\n\n## Quick Start\n\nBrand new Jellyseerr instances require initialisation for Buildarr to be able to manage it.\n\nThis is usually done manually by navigating to `http://localhost:5055/setup` on the Jellyseerr host, logging in with Jellyfin or Plex credentials, and then selecting libraries to monitor.\n\nAs of this release, automatically initialising Jellyseerr for Plex is not yet supported. Please initialise the Jellyseerr instance manually.\n\nFor Jellyseerr instances being connected to Jellyfin only, Buildarr can perform this initialisation automatically.\n\nTo do this, set the following parameters under the `jellyfin` configuration section, which are required when initialisting a new instance (they are otherwise optional):\n\n```yaml\n---\n\njellyseerr:\n  hostname: \"localhost\"\n  port: 5055\n  protocol: \"http\"\n  api_key: \"<API key>\"  # Required. Check `settings.json` in the config volume to get the value.\n  settings:\n    jellyfin:\n      server_url: \"http://localhost:8096\"  # Jellyfin server URL, preferably direct (no proxy).\n      username: \"admin\"  # Jellyfin server admin user.\n      password: \"secure-password\"  # Jellyfin server admin user password.\n      email_address: \"admin@example.com\"  # Jellyfin server admin email address.\n      # Jellyfin media libraries to monitor.\n      # This can be used to change what libraries Jellyseerr monitors,\n      # even after it is initialised.\n      libraries:\n        - \"Shows\"\n        - \"Movies\"\n        - \"Anime\"\n        - \"Anime Movies\"\n```\n\nAfter that, configure and run Buildarr as normal, and setup desired settings for Jellyseerr.\n\nFor more information on configuring Jellyseerr, see [Configuring your Jellyseerr instance](#configuring-your-jellyseerr-instance).\n\nOnce you have a complete configuration file, test it against the Jellyseerr instance using `buildarr run`.\n\nThe output should contain messages about checking, performing and finishing the initialisation. If no errors were found, congratulations, your Jellyseerr instance is now managed by Buildarr!\n\n```text\n2023-04-15 09:44:20,386 buildarr:1 buildarr.cli.run [INFO] Buildarr version 0.4.2 (log level: INFO)\n2023-04-15 09:44:20,386 buildarr:1 buildarr.cli.run [INFO] Loading configuration file '/config/buildarr.yml'\n2023-04-15 09:44:20,458 buildarr:1 buildarr.cli.run [INFO] Finished loading configuration file\n2023-04-15 09:44:20,461 buildarr:1 buildarr.cli.run [INFO] Loaded plugins: jellyseerr (0.1.0), prowlarr (0.1.1), sonarr (0.4.1)\n2023-04-15 09:44:20,461 buildarr:1 buildarr.cli.run [INFO] Loading instance configurations\n2023-04-15 09:44:20,464 buildarr:1 buildarr.cli.run [INFO] Finished loading instance configurations\n2023-04-15 09:44:20,464 buildarr:1 buildarr.cli.run [INFO] Running with plugins: sonarr, jellyseerr\n2023-04-15 09:44:20,464 buildarr:1 buildarr.cli.run [INFO] Resolving instance dependencies\n2023-04-15 09:44:20,464 buildarr:1 buildarr.cli.run [INFO] Finished resolving instance dependencies\n2023-04-15 09:44:20,464 buildarr:1 buildarr.cli.run [INFO] Rendering instance configuration dynamic attributes\n2023-04-15 09:44:20,465 buildarr:1 buildarr.cli.run [INFO] Finished rendering instance configuration dynamic attributes\n2023-04-15 09:44:20,599 buildarr:1 buildarr.cli.run [INFO] <jellyseerr> (default) Instance has not been initialised\n2023-04-15 09:44:20,600 buildarr:1 buildarr.cli.run [INFO] <jellyseerr> (default) Initialising instance\n2023-04-15 09:44:20,600 buildarr:1 buildarr_jellyseerr.config.settings.jellyfin [INFO] <jellyseerr> (default) Checking if required attributes are defined\n2023-04-15 09:44:20,600 buildarr:1 buildarr_jellyseerr.config.settings.jellyfin [INFO] <jellyseerr> (default) Finished checking if required attributes are defined\n2023-04-15 09:44:20,600 buildarr:1 buildarr_jellyseerr.config.settings.jellyfin [INFO] <jellyseerr> (default) Authenticating Jellyseerr with Jellyfin\n2023-04-15 09:44:20,842 buildarr:1 buildarr_jellyseerr.config.settings.jellyfin [INFO] <jellyseerr> (default) Finished authenticating Jellyseerr with Jellyfin\n2023-04-15 09:44:20,842 buildarr:1 buildarr_jellyseerr.config.settings.jellyfin [INFO] <jellyseerr> (default) Syncing Jellyfin libraries to Jellyseerr\n2023-04-15 09:44:21,027 buildarr:1 buildarr_jellyseerr.config.settings.jellyfin [INFO] <jellyseerr> (default) Finished syncing Jellyfin libraries to Jellyseerr\n2023-04-15 09:44:21,027 buildarr:1 buildarr_jellyseerr.config.settings.jellyfin [INFO] <jellyseerr> (default) Enabling Jellyfin libraries in Jellyseerr: 'TV Shows'\n2023-04-15 09:44:21,083 buildarr:1 buildarr_jellyseerr.config.settings.jellyfin [INFO] <jellyseerr> (default) Finished enabling Jellyfin libraries in Jellyseerr\n2023-04-15 09:44:21,083 buildarr:1 buildarr_jellyseerr.config.settings.jellyfin [INFO] <jellyseerr> (default) Finalising initialisation\n2023-04-15 09:44:21,191 buildarr:1 buildarr_jellyseerr.config.settings.jellyfin [INFO] <jellyseerr> (default) Finished finalising initialisation\n2023-04-15 09:44:21,192 buildarr:1 buildarr.cli.run [INFO] <jellyseerr> (default) Finished initialising instance\n2023-04-15 09:44:21,192 buildarr:1 buildarr.cli.run [INFO] Loading secrets file from '/config/secrets.json'\n2023-04-15 09:44:21,196 buildarr:1 buildarr.cli.run [INFO] Finished loading secrets file\n2023-04-15 09:44:21,196 buildarr:1 buildarr.cli.run [INFO] <sonarr> (default) Checking secrets\n2023-04-15 09:44:21,201 buildarr:1 buildarr.cli.run [INFO] <sonarr> (default) Connection test successful using cached secrets\n2023-04-15 09:44:21,201 buildarr:1 buildarr.cli.run [INFO] <sonarr> (default) Finished checking secrets\n2023-04-15 09:44:21,201 buildarr:1 buildarr.cli.run [INFO] <jellyseerr> (default) Checking secrets\n2023-04-15 09:44:21,223 buildarr:1 buildarr.cli.run [INFO] <jellyseerr> (default) Connection test failed using cached secrets (or not cached), fetching secrets\n2023-04-15 09:44:21,231 buildarr:1 buildarr.cli.run [INFO] <jellyseerr> (default) Connection test successful using fetched secrets\n2023-04-15 09:44:21,231 buildarr:1 buildarr.cli.run [INFO] <jellyseerr> (default) Finished checking secrets\n2023-04-15 09:44:21,231 buildarr:1 buildarr.cli.run [INFO] Saving updated secrets file to '/config/secrets.json'\n2023-04-15 09:44:21,232 buildarr:1 buildarr.cli.run [INFO] Finished saving updated secrets file\n2023-04-15 09:44:21,232 buildarr:1 buildarr.cli.run [INFO] Updating configuration on remote instances\n2023-04-15 09:44:21,232 buildarr:1 buildarr.cli.run [INFO] <sonarr> (default) Fetching remote configuration to check if updates are required\n2023-04-15 09:44:21,363 buildarr:1 buildarr.cli.run [INFO] <sonarr> (default) Finished fetching remote configuration\n2023-04-15 09:44:21,402 buildarr:1 buildarr.cli.run [INFO] <sonarr> (default) Updating remote configuration\n2023-04-15 09:44:21,491 buildarr:1 buildarr.cli.run [INFO] <sonarr> (default) Remote configuration is up to date\n2023-04-15 09:44:21,491 buildarr:1 buildarr.cli.run [INFO] <sonarr> (default) Finished updating remote configuration\n2023-04-15 09:44:21,491 buildarr:1 buildarr.cli.run [INFO] <jellyseerr> (default) Fetching remote configuration to check if updates are required\n2023-04-15 09:44:22,496 buildarr:1 buildarr.cli.run [INFO] <jellyseerr> (default) Finished fetching remote configuration\n2023-04-15 09:44:22,507 buildarr:1 buildarr.cli.run [INFO] <jellyseerr> (default) Updating remote configuration\n2023-04-15 09:44:22,629 buildarr:1 buildarr.cli.run [INFO] <jellyseerr> (default) Remote configuration successfully updated\n2023-04-15 09:44:22,629 buildarr:1 buildarr.cli.run [INFO] <jellyseerr> (default) Finished updating remote configuration\n2023-04-15 09:44:22,629 buildarr:1 buildarr.cli.run [INFO] Finished updating configuration on remote instances\n2023-04-15 09:44:22,629 buildarr:1 buildarr.cli.run [INFO] Deleting unmanaged/unused resources on remote instances\n2023-04-15 09:44:22,630 buildarr:1 buildarr.cli.run [INFO] <jellyseerr> (default) Refetching remote configuration to delete unused resources\n2023-04-15 09:44:22,735 buildarr:1 buildarr.cli.run [INFO] <jellyseerr> (default) Finished refetching remote configuration\n2023-04-15 09:44:22,749 buildarr:1 buildarr.cli.run [INFO] <jellyseerr> (default) Deleting unmanaged/unused resources on the remote instance\n2023-04-15 09:44:22,760 buildarr:1 buildarr.cli.run [INFO] <jellyseerr> (default) Remote configuration is clean\n2023-04-15 09:44:22,760 buildarr:1 buildarr.cli.run [INFO] <jellyseerr> (default) Finished deleting unmanaged/unused resources on the remote instance\n2023-04-15 09:44:22,760 buildarr:1 buildarr.cli.run [INFO] <sonarr> (default) Refetching remote configuration to delete unused resources\n2023-04-15 09:44:22,874 buildarr:1 buildarr.cli.run [INFO] <sonarr> (default) Finished refetching remote configuration\n2023-04-15 09:44:22,909 buildarr:1 buildarr.cli.run [INFO] <sonarr> (default) Deleting unmanaged/unused resources on the remote instance\n2023-04-15 09:44:22,910 buildarr:1 buildarr.cli.run [INFO] <sonarr> (default) Remote configuration is clean\n2023-04-15 09:44:22,910 buildarr:1 buildarr.cli.run [INFO] <sonarr> (default) Finished deleting unmanaged/unused resources on the remote instance\n2023-04-15 09:44:22,910 buildarr:1 buildarr.cli.run [INFO] Finished deleting unmanaged/unused resources on remote instances\n```\n\n## Configuring your Jellyseerr instance\n\nThe following sections cover all of the possible configuration attributes for a Jellyseerr instance.\n\n* [Host Configuration](https://buildarr.github.io/plugins/jellyseerr/configuration/host)\n* Settings\n    * [General](https://buildarr.github.io/plugins/jellyseerr/configuration/settings/general)\n    * [Users](https://buildarr.github.io/plugins/jellyseerr/configuration/settings/users)\n    * [Jellyfin](https://buildarr.github.io/plugins/jellyseerr/configuration/settings/jellyfin)\n    * Services\n        * [Sonarr](https://buildarr.github.io/plugins/jellyseerr/configuration/settings/services/sonarr)\n        * [Radarr](https://buildarr.github.io/plugins/jellyseerr/configuration/settings/services/radarr)\n    * [Notifications](https://buildarr.github.io/plugins/jellyseerr/configuration/settings/notifications)\n\n## Dumping an existing Jellyseerr instance configuration\n\nBuildarr is capable of dumping a running Jellyseerr instance's configuration.\n\n```bash\n$ buildarr jellyseerr dump-config http://localhost:5055 > jellyseerr.yml\nJellyseerr instance API key: <Paste API key here>\n```\n\nThe dumped YAML object can be placed directly under the `jellyseerr` configuration block, or used as an [instance-specific configuration](https://buildarr.github.io/configuration/#multiple-instances-of-the-same-type).\n\nAll possible values are explicitly defined in this dumped configuration.\n\n```yaml\nhostname: localhost\nport: 5055\nprotocol: http\napi_key: AbCdEfGhIjKlMnOpQrStUvWxYzaBcDeFgHiJkLmNoPqRsTuVwXyZ123456789012345=\nimage: fallenbagel/jellyseerr\nversion: 1.4.1\nsettings:\n  general:\n    application_title: Jellyseerr\n    application_url: null\n    enable_proxy_support: false\n    enable_csrf_protection: false\n    enable_image_caching: false\n    display_language: en\n    discover_region: ''\n    discover_languages:\n    - en\n    hide_available_media: false\n    allow_partial_series_requests: true\n  jellyfin:\n    server_url: null\n    username: null\n    password: null\n    email_address: null\n    external_url: null\n    libraries:\n    - TV Shows\n  users:\n    enable_local_signin: true\n    enable_new_jellyfin_signin: true\n    global_movie_request_limit: 0\n    global_movie_request_days: 7\n    global_series_request_limit: 0\n    global_series_request_days: 7\n    default_permissions:\n    - request\n    - request-4k\n  services:\n    radarr:\n      delete_unmanaged: false\n      definitions: {}\n    sonarr:\n      delete_unmanaged: false\n      definitions:\n        Sonarr:\n          is_default_server: true\n          is_4k_server: false\n          hostname: localhost\n          port: 8989\n          use_ssl: false\n          url_base: null\n          external_url: http://localhost:8989\n          enable_scan: false\n          enable_automatic_search: true\n          instance_name: null\n          api_key: 1a2b3c4d5e6f1a2b3c4d5e6f1a2b3c4d\n          root_folder: /data/media/tv\n          quality_profile: TV Shows\n          language_profile: English\n          tags: []\n          anime_root_folder: null\n          anime_quality_profile: null\n          anime_language_profile: null\n          anime_tags: []\n          enable_season_folders: true\n  notifications:\n    discord:\n      enable: false\n      notification_types: []\n      webhook_url: null\n      username: null\n      avatar_url: null\n      enable_mentions: true\n    email:\n      enable: false\n      require_user_email: false\n      sender_name: Jellyseerr\n      sender_address: null\n      smtp_host: null\n      smtp_port: 587\n      encryption_method: starttls-prefer\n      allow_selfsigned_certificates: false\n      smtp_username: null\n      smtp_password: null\n      pgp_private_key: null\n      pgp_password: null\n    gotify:\n      enable: false\n      notification_types: []\n      server_url: null\n      access_token: null\n    lunasea:\n      enable: false\n      notification_types: []\n      webhook_url: null\n      profile_name: null\n    pushbullet:\n      enable: false\n      notification_types: []\n      access_token: null\n      channel_tag: null\n    pushover:\n      enable: false\n      notification_types: []\n      api_key: null\n      user_key: null\n    slack:\n      enable: false\n      notification_types: []\n      webhook_url: null\n    telegram:\n      enable: false\n      notification_types: []\n      access_token: null\n      username: null\n      chat_id: null\n      send_silently: false\n    webhook:\n      enable: false\n      notification_types: []\n      webhook_url: null\n      authorization_header: null\n      payload_template: \"{\\n    \\\"notification_type\\\": \\\"{{notification_type}}\\\",\\n\\\n        \\    \\\"event\\\": \\\"{{event}}\\\",\\n    \\\"subject\\\": \\\"{{subject}}\\\",\\n    \\\"\\\n        message\\\": \\\"{{message}}\\\",\\n    \\\"image\\\": \\\"{{image}}\\\",\\n    \\\"{{media}}\\\"\\\n        : {\\n        \\\"media_type\\\": \\\"{{media_type}}\\\",\\n        \\\"tmdbId\\\": \\\"{{media_tmdbid}}\\\"\\\n        ,\\n        \\\"tvdbId\\\": \\\"{{media_tvdbid}}\\\",\\n        \\\"status\\\": \\\"{{media_status}}\\\"\\\n        ,\\n        \\\"status4k\\\": \\\"{{media_status4k}}\\\"\\n    },\\n    \\\"{{request}}\\\"\\\n        : {\\n        \\\"request_id\\\": \\\"{{request_id}}\\\",\\n        \\\"requestedBy_email\\\"\\\n        : \\\"{{requestedBy_email}}\\\",\\n        \\\"requestedBy_username\\\": \\\"{{requestedBy_username}}\\\"\\\n        ,\\n        \\\"requestedBy_avatar\\\": \\\"{{requestedBy_avatar}}\\\"\\n    },\\n  \\\n        \\  \\\"{{issue}}\\\": {\\n        \\\"issue_id\\\": \\\"{{issue_id}}\\\",\\n        \\\"issue_type\\\"\\\n        : \\\"{{issue_type}}\\\",\\n        \\\"issue_status\\\": \\\"{{issue_status}}\\\",\\n \\\n        \\       \\\"reportedBy_email\\\": \\\"{{reportedBy_email}}\\\",\\n        \\\"reportedBy_username\\\"\\\n        : \\\"{{reportedBy_username}}\\\",\\n        \\\"reportedBy_avatar\\\": \\\"{{reportedBy_avatar}}\\\"\\\n        \\n    },\\n    \\\"{{comment}}\\\": {\\n        \\\"comment_message\\\": \\\"{{comment_message}}\\\"\\\n        ,\\n        \\\"commentedBy_email\\\": \\\"{{commentedBy_email}}\\\",\\n        \\\"commentedBy_username\\\"\\\n        : \\\"{{commentedBy_username}}\\\",\\n        \\\"commentedBy_avatar\\\": \\\"{{commentedBy_avatar}}\\\"\\\n        \\n    },\\n    \\\"{{extra}}\\\": []\\n}\"\n    webpush:\n      enable: false\n```\n",
    "bugtrack_url": null,
    "license": "GPL-3.0-or-later",
    "summary": "Jellyseerr media request library application plugin for Buildarr",
    "version": "0.3.2",
    "project_urls": {
        "Changes": "https://buildarr.github.io/plugins/jellyseerr/release-notes",
        "Documentation": "https://buildarr.github.io/plugins/jellyseerr",
        "Homepage": "https://buildarr.github.io",
        "Issue Tracker": "https://github.com/buildarr/buildarr-jellyseerr/issues",
        "Repository": "https://github.com/buildarr/buildarr-jellyseerr"
    },
    "split_keywords": [
        "buildarr",
        "jellyseerr",
        "sonarr",
        "radarr"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5bec45bb645e66b8670fdc714ab230657d0492dad79bdb68667ac5939c3dfa2e",
                "md5": "ad1c18904a49114ec26f62f65c4f4a6b",
                "sha256": "a578e0ef8f92c7587fe0b233731d5857f5281d4dc28dc8d4b1a008ce3a9c7ee7"
            },
            "downloads": -1,
            "filename": "buildarr_jellyseerr-0.3.2-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "ad1c18904a49114ec26f62f65c4f4a6b",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8,<4.0",
            "size": 70084,
            "upload_time": "2024-03-02T03:14:11",
            "upload_time_iso_8601": "2024-03-02T03:14:11.253545Z",
            "url": "https://files.pythonhosted.org/packages/5b/ec/45bb645e66b8670fdc714ab230657d0492dad79bdb68667ac5939c3dfa2e/buildarr_jellyseerr-0.3.2-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9215a7931dc9363e567b710391dff8b116ad0b202c26918f8e257fe3462b0f21",
                "md5": "59cd75d88b33d2c169f33b9503dcbe16",
                "sha256": "42adcfeab953298bbde5e5127e92be13271ad855b3bbd03c49573e3742582cf8"
            },
            "downloads": -1,
            "filename": "buildarr_jellyseerr-0.3.2.tar.gz",
            "has_sig": false,
            "md5_digest": "59cd75d88b33d2c169f33b9503dcbe16",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8,<4.0",
            "size": 44894,
            "upload_time": "2024-03-02T03:14:13",
            "upload_time_iso_8601": "2024-03-02T03:14:13.016574Z",
            "url": "https://files.pythonhosted.org/packages/92/15/a7931dc9363e567b710391dff8b116ad0b202c26918f8e257fe3462b0f21/buildarr_jellyseerr-0.3.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-03-02 03:14:13",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "buildarr",
    "github_project": "buildarr-jellyseerr",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "requirements": [],
    "lcname": "buildarr-jellyseerr"
}
        
Elapsed time: 0.19122s