gitextract_umgqsiw6/ ├── .gitattributes ├── .gitignore ├── Dockerfile ├── Dockerfile.arm64 ├── LICENSE.md ├── MediathekArr/ │ ├── Controllers/ │ │ ├── DownloadController.cs │ │ └── TController.cs │ ├── MediathekArrDownloader.csproj │ ├── Models/ │ │ ├── HistoryWrapper.cs │ │ ├── QueueWrapper.cs │ │ ├── SabnzbdDownloadStatus.cs │ │ ├── SabnzbdHistory.cs │ │ ├── SabnzbdHistoryItem.cs │ │ ├── SabnzbdQueue.cs │ │ └── SabnzbdQueueItem.cs │ ├── Program.cs │ ├── Properties/ │ │ └── launchSettings.json │ ├── Services/ │ │ ├── DownloadService.cs │ │ ├── ItemLookupService.cs │ │ └── MediathekSearchService.cs │ ├── appsettings.Development.json │ ├── appsettings.Production.json │ └── appsettings.json ├── MediathekArr.sln ├── MediathekArr.slnLaunch ├── MediathekArrLib/ │ ├── MediathekArrLib.csproj │ ├── Models/ │ │ ├── ApiResultItem.cs │ │ ├── MediathekApiResponse.cs │ │ ├── MediathekApiResult.cs │ │ ├── Newznab/ │ │ │ ├── Attribute.cs │ │ │ ├── Channel.cs │ │ │ ├── Enclosure.cs │ │ │ ├── Guid.cs │ │ │ ├── Item.cs │ │ │ ├── Response.cs │ │ │ └── Rss.cs │ │ ├── QueryInfo.cs │ │ ├── Rulesets/ │ │ │ ├── EpisodeType.cs │ │ │ ├── Filter.cs │ │ │ ├── IdentificationResult.cs │ │ │ ├── MatchType.cs │ │ │ ├── MatchedEpisodeInfo.cs │ │ │ ├── MatchingStrategy.cs │ │ │ ├── Media.cs │ │ │ ├── Pagination.cs │ │ │ ├── RegexRule.cs │ │ │ ├── Ruleset.cs │ │ │ ├── RulesetApiResponse.cs │ │ │ ├── TitleRegexRule.cs │ │ │ └── TitleRegexRuleType.cs │ │ ├── TvdbAlias.cs │ │ ├── TvdbData.cs │ │ ├── TvdbEpisode.cs │ │ └── TvdbInfoResponse.cs │ └── Utilities/ │ ├── JsonConverter.cs │ └── NewznabUtils.cs ├── MediathekArrServer/ │ ├── Controllers/ │ │ └── TController.cs │ ├── MediathekArrServer.csproj │ ├── Program.cs │ ├── Properties/ │ │ └── launchSettings.json │ ├── Services/ │ │ ├── ItemLookupService.cs │ │ ├── MediathekSearchFallbackHandler.cs │ │ ├── MediathekSearchService.cs │ │ └── RulesetBackgroundService.cs │ ├── appsettings.Development.json │ ├── appsettings.Production.json │ └── appsettings.json ├── README.md ├── api/ │ └── v1/ │ ├── db.php │ ├── get_show.php │ └── token_manager.php ├── build_and_push_docker_image.bat └── docker-compose.yml