mirror of
https://github.com/Jackett/Jackett.git
synced 2025-09-17 17:34:09 +02:00
Merge pull request #73 from damwthomas/TorrentzSupport
ShowRSS, tbp fix
This commit is contained in:
176
src/Jackett/Indexers/ShowRSS.cs
Normal file
176
src/Jackett/Indexers/ShowRSS.cs
Normal file
@@ -0,0 +1,176 @@
|
|||||||
|
using Newtonsoft.Json.Linq;
|
||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Globalization;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Net;
|
||||||
|
using System.Net.Http;
|
||||||
|
using System.Text;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
using System.Web;
|
||||||
|
using System.Xml;
|
||||||
|
|
||||||
|
namespace Jackett.Indexers
|
||||||
|
{
|
||||||
|
public class ShowRSS : IndexerInterface
|
||||||
|
{
|
||||||
|
public event Action<IndexerInterface, Newtonsoft.Json.Linq.JToken> OnSaveConfigurationRequested;
|
||||||
|
|
||||||
|
public event Action<IndexerInterface, string, Exception> OnResultParsingError;
|
||||||
|
|
||||||
|
public string DisplayName
|
||||||
|
{
|
||||||
|
get { return "ShowRSS"; }
|
||||||
|
}
|
||||||
|
|
||||||
|
public string DisplayDescription
|
||||||
|
{
|
||||||
|
get { return "showRSS is a service that allows you to keep track of your favorite TV shows"; }
|
||||||
|
}
|
||||||
|
|
||||||
|
public Uri SiteLink
|
||||||
|
{
|
||||||
|
get { return new Uri(DefaultUrl); }
|
||||||
|
}
|
||||||
|
|
||||||
|
const string DefaultUrl = "http://showrss.info";
|
||||||
|
const string searchAllUrl = DefaultUrl + "/feeds/all.rss";
|
||||||
|
string BaseUrl;
|
||||||
|
static string chromeUserAgent = "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.118 Safari/537.36";
|
||||||
|
|
||||||
|
CookieContainer cookies;
|
||||||
|
HttpClientHandler handler;
|
||||||
|
HttpClient client;
|
||||||
|
|
||||||
|
public bool IsConfigured
|
||||||
|
{
|
||||||
|
get;
|
||||||
|
private set;
|
||||||
|
}
|
||||||
|
|
||||||
|
public ShowRSS()
|
||||||
|
{
|
||||||
|
IsConfigured = false;
|
||||||
|
cookies = new CookieContainer();
|
||||||
|
handler = new HttpClientHandler
|
||||||
|
{
|
||||||
|
CookieContainer = cookies,
|
||||||
|
AllowAutoRedirect = true,
|
||||||
|
UseCookies = true,
|
||||||
|
};
|
||||||
|
client = new HttpClient(handler);
|
||||||
|
}
|
||||||
|
|
||||||
|
public Task<ConfigurationData> GetConfigurationForSetup()
|
||||||
|
{
|
||||||
|
var config = new ConfigurationDataUrl(DefaultUrl);
|
||||||
|
return Task.FromResult<ConfigurationData>(config);
|
||||||
|
}
|
||||||
|
|
||||||
|
public async Task ApplyConfiguration(Newtonsoft.Json.Linq.JToken configJson)
|
||||||
|
{
|
||||||
|
var config = new ConfigurationDataUrl(DefaultUrl);
|
||||||
|
config.LoadValuesFromJson(configJson);
|
||||||
|
|
||||||
|
var formattedUrl = config.GetFormattedHostUrl();
|
||||||
|
var releases = await PerformQuery(new TorznabQuery(), formattedUrl);
|
||||||
|
if (releases.Length == 0)
|
||||||
|
throw new Exception("Could not find releases from this URL");
|
||||||
|
|
||||||
|
BaseUrl = formattedUrl;
|
||||||
|
|
||||||
|
var configSaveData = new JObject();
|
||||||
|
configSaveData["base_url"] = BaseUrl;
|
||||||
|
|
||||||
|
if (OnSaveConfigurationRequested != null)
|
||||||
|
OnSaveConfigurationRequested(this, configSaveData);
|
||||||
|
|
||||||
|
IsConfigured = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void LoadFromSavedConfiguration(Newtonsoft.Json.Linq.JToken jsonConfig)
|
||||||
|
{
|
||||||
|
BaseUrl = (string)jsonConfig["base_url"];
|
||||||
|
IsConfigured = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
public async Task<ReleaseInfo[]> PerformQuery(TorznabQuery query)
|
||||||
|
{
|
||||||
|
return await PerformQuery(query, BaseUrl);
|
||||||
|
}
|
||||||
|
|
||||||
|
public Task<byte[]> Download(Uri link)
|
||||||
|
{
|
||||||
|
throw new NotImplementedException();
|
||||||
|
}
|
||||||
|
|
||||||
|
private WebClient getWebClient()
|
||||||
|
{
|
||||||
|
WebClient wc = new WebClient();
|
||||||
|
WebHeaderCollection headers = new WebHeaderCollection();
|
||||||
|
headers.Add("User-Agent", chromeUserAgent);
|
||||||
|
wc.Headers = headers;
|
||||||
|
return wc;
|
||||||
|
}
|
||||||
|
|
||||||
|
async Task<ReleaseInfo[]> PerformQuery(TorznabQuery query, string baseUrl)
|
||||||
|
{
|
||||||
|
List<ReleaseInfo> releases = new List<ReleaseInfo>();
|
||||||
|
|
||||||
|
foreach (var title in query.ShowTitles ?? new string[] { string.Empty })
|
||||||
|
{
|
||||||
|
var searchString = title + " " + query.GetEpisodeSearchString();
|
||||||
|
var episodeSearchUrl = string.Format(searchAllUrl);
|
||||||
|
|
||||||
|
XmlDocument xmlDoc = new XmlDocument();
|
||||||
|
string xml = string.Empty;
|
||||||
|
WebClient wc = getWebClient();
|
||||||
|
|
||||||
|
try
|
||||||
|
{
|
||||||
|
using (wc)
|
||||||
|
{
|
||||||
|
xml = wc.DownloadString(episodeSearchUrl);
|
||||||
|
xmlDoc.LoadXml(xml);
|
||||||
|
}
|
||||||
|
|
||||||
|
ReleaseInfo release;
|
||||||
|
TorrentzHelper td;
|
||||||
|
string serie_title;
|
||||||
|
|
||||||
|
foreach (XmlNode node in xmlDoc.GetElementsByTagName("item"))
|
||||||
|
{
|
||||||
|
release = new ReleaseInfo();
|
||||||
|
|
||||||
|
release.MinimumRatio = 1;
|
||||||
|
release.MinimumSeedTime = 172800;
|
||||||
|
|
||||||
|
serie_title = node.SelectSingleNode("title").InnerText;
|
||||||
|
release.Title = serie_title;
|
||||||
|
|
||||||
|
release.Comments = new Uri(node.SelectSingleNode("link").InnerText);
|
||||||
|
release.Category = node.SelectSingleNode("title").InnerText;
|
||||||
|
var test = node.SelectSingleNode("enclosure");
|
||||||
|
release.Guid = new Uri(test.Attributes["url"].Value);
|
||||||
|
release.PublishDate = DateTime.Parse(node.SelectSingleNode("pubDate").InnerText, CultureInfo.InvariantCulture);
|
||||||
|
|
||||||
|
release.Description = node.SelectSingleNode("description").InnerText;
|
||||||
|
release.InfoHash = node.SelectSingleNode("description").InnerText;
|
||||||
|
release.Size = 0;
|
||||||
|
release.Seeders = 1;
|
||||||
|
release.Peers = 1;
|
||||||
|
release.MagnetUri = new Uri(node.SelectSingleNode("link").InnerText);
|
||||||
|
releases.Add(release);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
OnResultParsingError(this, xml, ex);
|
||||||
|
throw ex;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return releases.ToArray();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@@ -168,7 +168,7 @@ namespace Jackett.Indexers
|
|||||||
release.InfoHash = release.MagnetUri.ToString().Split(':')[3].Split('&')[0];
|
release.InfoHash = release.MagnetUri.ToString().Split(':')[3].Split('&')[0];
|
||||||
|
|
||||||
var sizeString = row.ChildElements.ElementAt(4).Cq().Text().Split(' ');
|
var sizeString = row.ChildElements.ElementAt(4).Cq().Text().Split(' ');
|
||||||
var sizeVal = float.Parse(sizeString[0]);
|
var sizeVal = float.Parse(sizeString[0], CultureInfo.InvariantCulture);
|
||||||
var sizeUnit = sizeString[1];
|
var sizeUnit = sizeString[1];
|
||||||
release.Size = ReleaseInfo.GetBytes(sizeUnit, sizeVal);
|
release.Size = ReleaseInfo.GetBytes(sizeUnit, sizeVal);
|
||||||
|
|
||||||
|
@@ -122,7 +122,8 @@ namespace Jackett.Indexers
|
|||||||
}
|
}
|
||||||
|
|
||||||
ReleaseInfo release;
|
ReleaseInfo release;
|
||||||
TorrentzDescription td;
|
TorrentzHelper td;
|
||||||
|
string serie_title;
|
||||||
|
|
||||||
foreach (XmlNode node in xmlDoc.GetElementsByTagName("item"))
|
foreach (XmlNode node in xmlDoc.GetElementsByTagName("item"))
|
||||||
{
|
{
|
||||||
@@ -130,20 +131,21 @@ namespace Jackett.Indexers
|
|||||||
|
|
||||||
release.MinimumRatio = 1;
|
release.MinimumRatio = 1;
|
||||||
release.MinimumSeedTime = 172800;
|
release.MinimumSeedTime = 172800;
|
||||||
release.Title = node.SelectSingleNode("title").InnerText;
|
serie_title = node.SelectSingleNode("title").InnerText;
|
||||||
|
release.Title = serie_title;
|
||||||
|
|
||||||
release.Comments = new Uri(node.SelectSingleNode("link").InnerText);
|
release.Comments = new Uri(node.SelectSingleNode("link").InnerText);
|
||||||
release.Category = node.SelectSingleNode("category").InnerText;
|
release.Category = node.SelectSingleNode("category").InnerText;
|
||||||
release.Guid = new Uri(node.SelectSingleNode("guid").InnerText);
|
release.Guid = new Uri(node.SelectSingleNode("guid").InnerText);
|
||||||
release.PublishDate = DateTime.Parse(node.SelectSingleNode("pubDate").InnerText, CultureInfo.InvariantCulture);
|
release.PublishDate = DateTime.Parse(node.SelectSingleNode("pubDate").InnerText, CultureInfo.InvariantCulture);
|
||||||
|
|
||||||
td = new TorrentzDescription(node.SelectSingleNode("description").InnerText);
|
td = new TorrentzHelper(node.SelectSingleNode("description").InnerText);
|
||||||
release.Description = td.Description;
|
release.Description = td.Description;
|
||||||
release.InfoHash = td.hash;
|
release.InfoHash = td.hash;
|
||||||
release.Size = td.Size;
|
release.Size = td.Size;
|
||||||
release.Seeders = td.Seeders;
|
release.Seeders = td.Seeders;
|
||||||
release.Peers = td.Peers;
|
release.Peers = td.Peers;
|
||||||
release.MagnetUri = new Uri("https://torrage.com/torrent/" + td.hash.ToUpper() + ".torrent");
|
release.MagnetUri = TorrentzHelper.createMagnetLink(td.hash, serie_title);
|
||||||
releases.Add(release);
|
releases.Add(release);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -176,9 +178,9 @@ namespace Jackett.Indexers
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public class TorrentzDescription
|
public class TorrentzHelper
|
||||||
{
|
{
|
||||||
public TorrentzDescription(string description)
|
public TorrentzHelper(string description)
|
||||||
{
|
{
|
||||||
this.Description = description;
|
this.Description = description;
|
||||||
if (null == description)
|
if (null == description)
|
||||||
@@ -193,6 +195,15 @@ namespace Jackett.Indexers
|
|||||||
FillProperties();
|
FillProperties();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public static Uri createMagnetLink(string hash, string title)
|
||||||
|
{
|
||||||
|
string MagnetLink = "magnet:?xt=urn:btih:{0}&dn={1}&tr={2}";
|
||||||
|
string Trackers = WebUtility.UrlEncode("udp://tracker.publicbt.com:80&tr=udp://tracker.openbittorrent.com:80&tr=udp://tracker.ccc.de:80&tr=udp://tracker.istole.it:80");
|
||||||
|
title = WebUtility.UrlEncode(title);
|
||||||
|
|
||||||
|
return new Uri(string.Format(MagnetLink, hash, title, Trackers));
|
||||||
|
}
|
||||||
|
|
||||||
private void FillProperties()
|
private void FillProperties()
|
||||||
{
|
{
|
||||||
string description = this.Description;
|
string description = this.Description;
|
||||||
|
@@ -98,6 +98,7 @@
|
|||||||
<Compile Include="Indexers\MoreThanTV.cs" />
|
<Compile Include="Indexers\MoreThanTV.cs" />
|
||||||
<Compile Include="Indexers\Rarbg.cs" />
|
<Compile Include="Indexers\Rarbg.cs" />
|
||||||
<Compile Include="Indexers\SceneAccess.cs" />
|
<Compile Include="Indexers\SceneAccess.cs" />
|
||||||
|
<Compile Include="Indexers\ShowRSS.cs" />
|
||||||
<Compile Include="Indexers\Strike.cs" />
|
<Compile Include="Indexers\Strike.cs" />
|
||||||
<Compile Include="Indexers\ThePirateBay.cs" />
|
<Compile Include="Indexers\ThePirateBay.cs" />
|
||||||
<Compile Include="Indexers\TorrentDay.cs" />
|
<Compile Include="Indexers\TorrentDay.cs" />
|
||||||
@@ -147,9 +148,12 @@
|
|||||||
</EmbeddedResource>
|
</EmbeddedResource>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
<Content Include="WebContent\custom.css" />
|
||||||
|
<Content Include="WebContent\custom.js" />
|
||||||
<Content Include="WebContent\logos\sceneaccess.png">
|
<Content Include="WebContent\logos\sceneaccess.png">
|
||||||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||||
</Content>
|
</Content>
|
||||||
|
<Content Include="WebContent\logos\showrss.png" />
|
||||||
<Content Include="WebContent\logos\torrentday.png">
|
<Content Include="WebContent\logos\torrentday.png">
|
||||||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||||
</Content>
|
</Content>
|
||||||
|
178
src/Jackett/WebContent/custom.css
Normal file
178
src/Jackett/WebContent/custom.css
Normal file
@@ -0,0 +1,178 @@
|
|||||||
|
body {
|
||||||
|
background-image: url("binding_dark.png");
|
||||||
|
background-repeat: repeat;
|
||||||
|
}
|
||||||
|
|
||||||
|
#page {
|
||||||
|
border-radius: 6px;
|
||||||
|
background-color: white;
|
||||||
|
max-width: 900px;
|
||||||
|
margin: 0 auto;
|
||||||
|
margin-top: 30px;
|
||||||
|
padding: 20px;
|
||||||
|
margin-bottom: 100px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.container-fluid {
|
||||||
|
}
|
||||||
|
|
||||||
|
#templates {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.card {
|
||||||
|
background-color: #f9f9f9;
|
||||||
|
border-radius: 6px;
|
||||||
|
box-shadow: 1px 1px 5px 2px #cdcdcd;
|
||||||
|
padding: 10px;
|
||||||
|
width: 260px;
|
||||||
|
display: inline-block;
|
||||||
|
vertical-align: top;
|
||||||
|
margin: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.unconfigured-indexer {
|
||||||
|
height: 170px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.indexer {
|
||||||
|
height: 230px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.add-indexer {
|
||||||
|
border: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.indexer-logo {
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.indexer-logo > img {
|
||||||
|
border: 1px solid #828282;
|
||||||
|
}
|
||||||
|
|
||||||
|
.indexer-name > h3 {
|
||||||
|
margin-top: 13px;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.indexer-buttons {
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.indexer-buttons > .btn {
|
||||||
|
margin-bottom: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
.indexer-button-test {
|
||||||
|
width: 60px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.indexer-add-content {
|
||||||
|
color: gray;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.indexer-add-content > .glyphicon {
|
||||||
|
font-size: 50px;
|
||||||
|
vertical-align: bottom;
|
||||||
|
}
|
||||||
|
|
||||||
|
.indexer-add-content > .light-text {
|
||||||
|
margin-top: 11px;
|
||||||
|
font-size: 18px;
|
||||||
|
margin-left: -5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
.indexer-host > input {
|
||||||
|
font-size: 12px;
|
||||||
|
padding: 2px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.setup-item-inputstring {
|
||||||
|
max-width: 260px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.spinner {
|
||||||
|
-webkit-animation: spin 2s infinite linear;
|
||||||
|
-moz-animation: spin 2s infinite linear;
|
||||||
|
-o-animation: spin 2s infinite linear;
|
||||||
|
animation: spin 2s infinite linear;
|
||||||
|
}
|
||||||
|
|
||||||
|
@-moz-keyframes spin {
|
||||||
|
from {
|
||||||
|
-moz-transform: rotate(0deg);
|
||||||
|
}
|
||||||
|
|
||||||
|
to {
|
||||||
|
-moz-transform: rotate(360deg);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@-webkit-keyframes spin {
|
||||||
|
from {
|
||||||
|
-webkit-transform: rotate(0deg);
|
||||||
|
}
|
||||||
|
|
||||||
|
to {
|
||||||
|
-webkit-transform: rotate(360deg);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@keyframes spin {
|
||||||
|
from {
|
||||||
|
transform: rotate(0deg);
|
||||||
|
}
|
||||||
|
|
||||||
|
to {
|
||||||
|
transform: rotate(360deg);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#setup-indexer-go {
|
||||||
|
width: 70px;
|
||||||
|
}
|
||||||
|
|
||||||
|
hr {
|
||||||
|
border-top-color: #cdcdcd;
|
||||||
|
}
|
||||||
|
|
||||||
|
.input-area {
|
||||||
|
}
|
||||||
|
|
||||||
|
.input-area > * {
|
||||||
|
vertical-align: middle;
|
||||||
|
}
|
||||||
|
|
||||||
|
.input-area > p {
|
||||||
|
margin-top: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.input-header {
|
||||||
|
font-size: 18px;
|
||||||
|
width: 140px;
|
||||||
|
display: inline-block;
|
||||||
|
}
|
||||||
|
|
||||||
|
.input-right {
|
||||||
|
width: 300px;
|
||||||
|
display: inline-block;
|
||||||
|
font-family: monospace;
|
||||||
|
}
|
||||||
|
|
||||||
|
#sonarr-warning {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
#logo {
|
||||||
|
max-width: 50px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#header-title {
|
||||||
|
font-size: 34px;
|
||||||
|
vertical-align: middle;
|
||||||
|
padding-left: 15px;
|
||||||
|
}
|
296
src/Jackett/WebContent/custom.js
Normal file
296
src/Jackett/WebContent/custom.js
Normal file
@@ -0,0 +1,296 @@
|
|||||||
|
|
||||||
|
|
||||||
|
reloadIndexers();
|
||||||
|
loadSonarrInfo();
|
||||||
|
|
||||||
|
function loadSonarrInfo() {
|
||||||
|
getSonarrConfig(function (data) {
|
||||||
|
$("#sonarr-host").val("");
|
||||||
|
var host, port, apiKey;
|
||||||
|
for (var i = 0; i < data.config.length; i++) {
|
||||||
|
if (data.config[i].id == "host")
|
||||||
|
host = data.config[i].value;
|
||||||
|
if (data.config[i].id == "port")
|
||||||
|
port = data.config[i].value;
|
||||||
|
if (data.config[i].id == "apikey")
|
||||||
|
apiKey = data.config[i].value;
|
||||||
|
}
|
||||||
|
if (!apiKey)
|
||||||
|
$("#sonarr-warning").show();
|
||||||
|
else {
|
||||||
|
$("#sonarr-warning").hide();
|
||||||
|
$("#sonarr-host").val(host + ":" + port);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
function getSonarrConfig(callback) {
|
||||||
|
var jqxhr = $.get("get_sonarr_config", function (data) {
|
||||||
|
callback(data);
|
||||||
|
}).fail(function () {
|
||||||
|
doNotify("Error loading Sonarr API configuration, request to Jackett server failed", "danger", "glyphicon glyphicon-alert");
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
$("#sonarr-test").click(function () {
|
||||||
|
var jqxhr = $.get("get_indexers", function (data) {
|
||||||
|
if (data.result == "error")
|
||||||
|
doNotify("Test failed for Sonarr API\n" + data.error, "danger", "glyphicon glyphicon-alert");
|
||||||
|
else
|
||||||
|
doNotify("Test successful for Sonarr API", "success", "glyphicon glyphicon-ok");
|
||||||
|
}).fail(function () {
|
||||||
|
doNotify("Error testing Sonarr, request to Jackett server failed", "danger", "glyphicon glyphicon-alert");
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
$("#sonarr-settings").click(function () {
|
||||||
|
getSonarrConfig(function (data) {
|
||||||
|
var config = data.config;
|
||||||
|
|
||||||
|
var configForm = newConfigModal("Sonarr API", config);
|
||||||
|
|
||||||
|
var $goButton = configForm.find(".setup-indexer-go");
|
||||||
|
$goButton.click(function () {
|
||||||
|
var data = getConfigModalJson(configForm);
|
||||||
|
|
||||||
|
var originalBtnText = $goButton.html();
|
||||||
|
$goButton.prop('disabled', true);
|
||||||
|
$goButton.html($('#templates > .spinner')[0].outerHTML);
|
||||||
|
|
||||||
|
var jqxhr = $.post("apply_sonarr_config", JSON.stringify(data), function (data) {
|
||||||
|
if (data.result == "error") {
|
||||||
|
if (data.config) {
|
||||||
|
populateSetupForm(data.indexer, data.name, data.config);
|
||||||
|
}
|
||||||
|
doNotify("Configuration failed: " + data.error, "danger", "glyphicon glyphicon-alert");
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
configForm.modal("hide");
|
||||||
|
loadSonarrInfo();
|
||||||
|
doNotify("Successfully configured Sonarr API", "success", "glyphicon glyphicon-ok");
|
||||||
|
}
|
||||||
|
}).fail(function () {
|
||||||
|
doNotify("Request to Jackett server failed", "danger", "glyphicon glyphicon-alert");
|
||||||
|
}).always(function () {
|
||||||
|
$goButton.html(originalBtnText);
|
||||||
|
$goButton.prop('disabled', false);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
configForm.modal("show");
|
||||||
|
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
|
||||||
|
function reloadIndexers() {
|
||||||
|
$('#indexers').hide();
|
||||||
|
$('#indexers > .indexer').remove();
|
||||||
|
$('#unconfigured-indexers').empty();
|
||||||
|
var jqxhr = $.get("get_indexers", function (data) {
|
||||||
|
$("#api-key-input").val(data.api_key);
|
||||||
|
displayIndexers(data.items);
|
||||||
|
}).fail(function () {
|
||||||
|
doNotify("Error loading indexers, request to Jackett server failed", "danger", "glyphicon glyphicon-alert");
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
function displayIndexers(items) {
|
||||||
|
var indexerTemplate = Handlebars.compile($("#templates > .configured-indexer")[0].outerHTML);
|
||||||
|
var unconfiguredIndexerTemplate = Handlebars.compile($("#templates > .unconfigured-indexer")[0].outerHTML);
|
||||||
|
for (var i = 0; i < items.length; i++) {
|
||||||
|
var item = items[i];
|
||||||
|
item.torznab_host = resolveUrl("/api/" + item.id);
|
||||||
|
if (item.configured)
|
||||||
|
$('#indexers').append(indexerTemplate(item));
|
||||||
|
else
|
||||||
|
$('#unconfigured-indexers').append($(unconfiguredIndexerTemplate(item)));
|
||||||
|
}
|
||||||
|
|
||||||
|
var addIndexerButton = $("#templates > .add-indexer")[0].outerHTML;
|
||||||
|
$('#indexers').append(addIndexerButton);
|
||||||
|
|
||||||
|
$('#indexers').fadeIn();
|
||||||
|
prepareSetupButtons();
|
||||||
|
prepareTestButtons();
|
||||||
|
prepareDeleteButtons();
|
||||||
|
}
|
||||||
|
|
||||||
|
function prepareDeleteButtons() {
|
||||||
|
$(".indexer-button-delete").each(function (i, btn) {
|
||||||
|
var $btn = $(btn);
|
||||||
|
var id = $btn.data("id");
|
||||||
|
$btn.click(function () {
|
||||||
|
var jqxhr = $.post("delete_indexer", JSON.stringify({ indexer: id }), function (data) {
|
||||||
|
if (data.result == "error") {
|
||||||
|
doNotify("Delete error for " + id + "\n" + data.error, "danger", "glyphicon glyphicon-alert");
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
doNotify("Deleted " + id, "success", "glyphicon glyphicon-ok");
|
||||||
|
}
|
||||||
|
}).fail(function () {
|
||||||
|
doNotify("Error deleting indexer, request to Jackett server error", "danger", "glyphicon glyphicon-alert");
|
||||||
|
}).always(function () {
|
||||||
|
reloadIndexers();
|
||||||
|
});
|
||||||
|
});
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
function prepareSetupButtons() {
|
||||||
|
$('.indexer-setup').each(function (i, btn) {
|
||||||
|
var $btn = $(btn);
|
||||||
|
var id = $btn.data("id");
|
||||||
|
$btn.click(function () {
|
||||||
|
displayIndexerSetup(id);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
function prepareTestButtons() {
|
||||||
|
$(".indexer-button-test").each(function (i, btn) {
|
||||||
|
var $btn = $(btn);
|
||||||
|
var id = $btn.data("id");
|
||||||
|
$btn.click(function () {
|
||||||
|
doNotify("Test started for " + id, "info", "glyphicon glyphicon-transfer");
|
||||||
|
var jqxhr = $.post("test_indexer", JSON.stringify({ indexer: id }), function (data) {
|
||||||
|
if (data.result == "error") {
|
||||||
|
doNotify("Test failed for " + data.name + "\n" + data.error, "danger", "glyphicon glyphicon-alert");
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
doNotify("Test successful for " + data.name, "success", "glyphicon glyphicon-ok");
|
||||||
|
}
|
||||||
|
}).fail(function () {
|
||||||
|
doNotify("Error testing indexer, request to Jackett server error", "danger", "glyphicon glyphicon-alert");
|
||||||
|
});
|
||||||
|
});
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
function displayIndexerSetup(id) {
|
||||||
|
|
||||||
|
var jqxhr = $.post("get_config_form", JSON.stringify({ indexer: id }), function (data) {
|
||||||
|
if (data.result == "error") {
|
||||||
|
doNotify("Error: " + data.error, "danger", "glyphicon glyphicon-alert");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
populateSetupForm(id, data.name, data.config);
|
||||||
|
|
||||||
|
}).fail(function () {
|
||||||
|
doNotify("Request to Jackett server failed", "danger", "glyphicon glyphicon-alert");
|
||||||
|
});
|
||||||
|
|
||||||
|
$("#select-indexer-modal").modal("hide");
|
||||||
|
}
|
||||||
|
|
||||||
|
function populateConfigItems(configForm, config) {
|
||||||
|
var $formItemContainer = configForm.find(".config-setup-form");
|
||||||
|
$formItemContainer.empty();
|
||||||
|
var setupItemTemplate = Handlebars.compile($("#templates > .setup-item")[0].outerHTML);
|
||||||
|
for (var i = 0; i < config.length; i++) {
|
||||||
|
var item = config[i];
|
||||||
|
var setupValueTemplate = Handlebars.compile($("#templates > .setup-item-" + item.type)[0].outerHTML);
|
||||||
|
item.value_element = setupValueTemplate(item);
|
||||||
|
$formItemContainer.append(setupItemTemplate(item));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function newConfigModal(title, config) {
|
||||||
|
//config-setup-modal
|
||||||
|
var configTemplate = Handlebars.compile($("#templates > .config-setup-modal")[0].outerHTML);
|
||||||
|
var configForm = $(configTemplate({ title: title }));
|
||||||
|
|
||||||
|
$("#modals").append(configForm);
|
||||||
|
|
||||||
|
populateConfigItems(configForm, config);
|
||||||
|
|
||||||
|
return configForm;
|
||||||
|
//modal.remove();
|
||||||
|
}
|
||||||
|
|
||||||
|
function getConfigModalJson(configForm) {
|
||||||
|
var configJson = {};
|
||||||
|
configForm.find(".config-setup-form").children().each(function (i, el) {
|
||||||
|
$el = $(el);
|
||||||
|
var type = $el.data("type");
|
||||||
|
var id = $el.data("id");
|
||||||
|
switch (type) {
|
||||||
|
case "inputstring":
|
||||||
|
configJson[id] = $el.find(".setup-item-inputstring").val();
|
||||||
|
break;
|
||||||
|
case "inputbool":
|
||||||
|
configJson[id] = $el.find(".setup-item-checkbox").val();
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
return configJson;
|
||||||
|
}
|
||||||
|
|
||||||
|
function populateSetupForm(indexerId, name, config) {
|
||||||
|
|
||||||
|
var configForm = newConfigModal(name, config);
|
||||||
|
|
||||||
|
var $goButton = configForm.find(".setup-indexer-go");
|
||||||
|
$goButton.click(function () {
|
||||||
|
var data = { indexer: indexerId, name: name };
|
||||||
|
data.config = getConfigModalJson(configForm);
|
||||||
|
|
||||||
|
var originalBtnText = $goButton.html();
|
||||||
|
$goButton.prop('disabled', true);
|
||||||
|
$goButton.html($('#templates > .spinner')[0].outerHTML);
|
||||||
|
|
||||||
|
var jqxhr = $.post("configure_indexer", JSON.stringify(data), function (data) {
|
||||||
|
if (data.result == "error") {
|
||||||
|
if (data.config) {
|
||||||
|
populateConfigItems(configForm, data.config);
|
||||||
|
}
|
||||||
|
doNotify("Configuration failed: " + data.error, "danger", "glyphicon glyphicon-alert");
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
configForm.modal("hide");
|
||||||
|
reloadIndexers();
|
||||||
|
doNotify("Successfully configured " + data.name, "success", "glyphicon glyphicon-ok");
|
||||||
|
}
|
||||||
|
}).fail(function () {
|
||||||
|
doNotify("Request to Jackett server failed", "danger", "glyphicon glyphicon-alert");
|
||||||
|
}).always(function () {
|
||||||
|
$goButton.html(originalBtnText);
|
||||||
|
$goButton.prop('disabled', false);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
configForm.modal("show");
|
||||||
|
}
|
||||||
|
|
||||||
|
function resolveUrl(url) {
|
||||||
|
var a = document.createElement('a');
|
||||||
|
a.href = url;
|
||||||
|
url = a.href;
|
||||||
|
return url;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
function doNotify(message, type, icon) {
|
||||||
|
$.notify({
|
||||||
|
message: message,
|
||||||
|
icon: icon
|
||||||
|
}, {
|
||||||
|
element: 'body',
|
||||||
|
type: type,
|
||||||
|
allow_dismiss: true,
|
||||||
|
z_index: 9000,
|
||||||
|
mouse_over: 'pause',
|
||||||
|
placement: {
|
||||||
|
from: "bottom",
|
||||||
|
align: "center"
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
function clearNotifications() {
|
||||||
|
$('[data-notify="container"]').remove();
|
||||||
|
}
|
||||||
|
|
||||||
|
$('#test').click(doNotify);
|
||||||
|
|
@@ -13,188 +13,9 @@
|
|||||||
|
|
||||||
<link href="bootstrap/bootstrap.min.css" rel="stylesheet">
|
<link href="bootstrap/bootstrap.min.css" rel="stylesheet">
|
||||||
<link href="animate.css" rel="stylesheet">
|
<link href="animate.css" rel="stylesheet">
|
||||||
|
<link href="custom.css" rel="stylesheet">
|
||||||
|
|
||||||
<title>Jackett</title>
|
<title>Jackett</title>
|
||||||
<style>
|
|
||||||
body {
|
|
||||||
background-image: url("binding_dark.png");
|
|
||||||
background-repeat: repeat;
|
|
||||||
}
|
|
||||||
|
|
||||||
#page {
|
|
||||||
border-radius: 6px;
|
|
||||||
background-color: white;
|
|
||||||
max-width: 900px;
|
|
||||||
margin: 0 auto;
|
|
||||||
margin-top: 30px;
|
|
||||||
padding: 20px;
|
|
||||||
margin-bottom: 100px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.container-fluid {
|
|
||||||
}
|
|
||||||
|
|
||||||
#templates {
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.card {
|
|
||||||
background-color: #f9f9f9;
|
|
||||||
border-radius: 6px;
|
|
||||||
box-shadow: 1px 1px 5px 2px #cdcdcd;
|
|
||||||
padding: 10px;
|
|
||||||
width: 260px;
|
|
||||||
display: inline-block;
|
|
||||||
vertical-align: top;
|
|
||||||
margin: 10px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.unconfigured-indexer {
|
|
||||||
height: 170px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.indexer {
|
|
||||||
height: 230px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.add-indexer {
|
|
||||||
border: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.indexer-logo {
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
.indexer-logo > img {
|
|
||||||
border: 1px solid #828282;
|
|
||||||
}
|
|
||||||
|
|
||||||
.indexer-name > h3 {
|
|
||||||
margin-top: 13px;
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
.indexer-buttons {
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
.indexer-buttons > .btn {
|
|
||||||
margin-bottom: 10px;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
.indexer-button-test {
|
|
||||||
width: 60px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.indexer-add-content {
|
|
||||||
color: gray;
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
.indexer-add-content > .glyphicon {
|
|
||||||
font-size: 50px;
|
|
||||||
vertical-align: bottom;
|
|
||||||
}
|
|
||||||
|
|
||||||
.indexer-add-content > .light-text {
|
|
||||||
margin-top: 11px;
|
|
||||||
font-size: 18px;
|
|
||||||
margin-left: -5px;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
.indexer-host > input {
|
|
||||||
font-size: 12px;
|
|
||||||
padding: 2px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.setup-item-inputstring {
|
|
||||||
max-width: 260px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.spinner {
|
|
||||||
-webkit-animation: spin 2s infinite linear;
|
|
||||||
-moz-animation: spin 2s infinite linear;
|
|
||||||
-o-animation: spin 2s infinite linear;
|
|
||||||
animation: spin 2s infinite linear;
|
|
||||||
}
|
|
||||||
|
|
||||||
@-moz-keyframes spin {
|
|
||||||
from {
|
|
||||||
-moz-transform: rotate(0deg);
|
|
||||||
}
|
|
||||||
|
|
||||||
to {
|
|
||||||
-moz-transform: rotate(360deg);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@-webkit-keyframes spin {
|
|
||||||
from {
|
|
||||||
-webkit-transform: rotate(0deg);
|
|
||||||
}
|
|
||||||
|
|
||||||
to {
|
|
||||||
-webkit-transform: rotate(360deg);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@keyframes spin {
|
|
||||||
from {
|
|
||||||
transform: rotate(0deg);
|
|
||||||
}
|
|
||||||
|
|
||||||
to {
|
|
||||||
transform: rotate(360deg);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
#setup-indexer-go {
|
|
||||||
width: 70px;
|
|
||||||
}
|
|
||||||
|
|
||||||
hr {
|
|
||||||
border-top-color: #cdcdcd;
|
|
||||||
}
|
|
||||||
|
|
||||||
.input-area {
|
|
||||||
}
|
|
||||||
|
|
||||||
.input-area > * {
|
|
||||||
vertical-align: middle;
|
|
||||||
}
|
|
||||||
|
|
||||||
.input-area > p {
|
|
||||||
margin-top: 10px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.input-header {
|
|
||||||
font-size: 18px;
|
|
||||||
width: 140px;
|
|
||||||
display: inline-block;
|
|
||||||
}
|
|
||||||
|
|
||||||
.input-right {
|
|
||||||
width: 300px;
|
|
||||||
display: inline-block;
|
|
||||||
font-family: monospace;
|
|
||||||
}
|
|
||||||
|
|
||||||
#sonarr-warning {
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
#logo {
|
|
||||||
max-width: 50px;
|
|
||||||
}
|
|
||||||
|
|
||||||
#header-title {
|
|
||||||
font-size: 34px;
|
|
||||||
vertical-align: middle;
|
|
||||||
padding-left: 15px;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<div id="page">
|
<div id="page">
|
||||||
@@ -341,305 +162,7 @@
|
|||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<script>
|
<script src="custom.js"></script>
|
||||||
|
|
||||||
|
|
||||||
reloadIndexers();
|
|
||||||
loadSonarrInfo();
|
|
||||||
|
|
||||||
function loadSonarrInfo() {
|
|
||||||
getSonarrConfig(function (data) {
|
|
||||||
$("#sonarr-host").val("");
|
|
||||||
var host, port, apiKey;
|
|
||||||
for (var i = 0; i < data.config.length; i++) {
|
|
||||||
if (data.config[i].id == "host")
|
|
||||||
host = data.config[i].value;
|
|
||||||
if (data.config[i].id == "port")
|
|
||||||
port = data.config[i].value;
|
|
||||||
if (data.config[i].id == "apikey")
|
|
||||||
apiKey = data.config[i].value;
|
|
||||||
}
|
|
||||||
if (!apiKey)
|
|
||||||
$("#sonarr-warning").show();
|
|
||||||
else {
|
|
||||||
$("#sonarr-warning").hide();
|
|
||||||
$("#sonarr-host").val(host + ":" + port);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
function getSonarrConfig(callback) {
|
|
||||||
var jqxhr = $.get("get_sonarr_config", function (data) {
|
|
||||||
callback(data);
|
|
||||||
}).fail(function () {
|
|
||||||
doNotify("Error loading Sonarr API configuration, request to Jackett server failed", "danger", "glyphicon glyphicon-alert");
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
$("#sonarr-test").click(function () {
|
|
||||||
var jqxhr = $.get("get_indexers", function (data) {
|
|
||||||
if (data.result == "error")
|
|
||||||
doNotify("Test failed for Sonarr API\n" + data.error, "danger", "glyphicon glyphicon-alert");
|
|
||||||
else
|
|
||||||
doNotify("Test successful for Sonarr API", "success", "glyphicon glyphicon-ok");
|
|
||||||
}).fail(function () {
|
|
||||||
doNotify("Error testing Sonarr, request to Jackett server failed", "danger", "glyphicon glyphicon-alert");
|
|
||||||
});
|
|
||||||
});
|
|
||||||
|
|
||||||
$("#sonarr-settings").click(function () {
|
|
||||||
getSonarrConfig(function (data) {
|
|
||||||
var config = data.config;
|
|
||||||
|
|
||||||
var configForm = newConfigModal("Sonarr API", config);
|
|
||||||
|
|
||||||
var $goButton = configForm.find(".setup-indexer-go");
|
|
||||||
$goButton.click(function () {
|
|
||||||
var data = getConfigModalJson(configForm);
|
|
||||||
|
|
||||||
var originalBtnText = $goButton.html();
|
|
||||||
$goButton.prop('disabled', true);
|
|
||||||
$goButton.html($('#templates > .spinner')[0].outerHTML);
|
|
||||||
|
|
||||||
var jqxhr = $.post("apply_sonarr_config", JSON.stringify(data), function (data) {
|
|
||||||
if (data.result == "error") {
|
|
||||||
if (data.config) {
|
|
||||||
populateSetupForm(data.indexer, data.name, data.config);
|
|
||||||
}
|
|
||||||
doNotify("Configuration failed: " + data.error, "danger", "glyphicon glyphicon-alert");
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
configForm.modal("hide");
|
|
||||||
loadSonarrInfo();
|
|
||||||
doNotify("Successfully configured Sonarr API", "success", "glyphicon glyphicon-ok");
|
|
||||||
}
|
|
||||||
}).fail(function () {
|
|
||||||
doNotify("Request to Jackett server failed", "danger", "glyphicon glyphicon-alert");
|
|
||||||
}).always(function () {
|
|
||||||
$goButton.html(originalBtnText);
|
|
||||||
$goButton.prop('disabled', false);
|
|
||||||
});
|
|
||||||
});
|
|
||||||
|
|
||||||
configForm.modal("show");
|
|
||||||
|
|
||||||
});
|
|
||||||
});
|
|
||||||
|
|
||||||
|
|
||||||
function reloadIndexers() {
|
|
||||||
$('#indexers').hide();
|
|
||||||
$('#indexers > .indexer').remove();
|
|
||||||
$('#unconfigured-indexers').empty();
|
|
||||||
var jqxhr = $.get("get_indexers", function (data) {
|
|
||||||
$("#api-key-input").val(data.api_key);
|
|
||||||
displayIndexers(data.items);
|
|
||||||
}).fail(function () {
|
|
||||||
doNotify("Error loading indexers, request to Jackett server failed", "danger", "glyphicon glyphicon-alert");
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
function displayIndexers(items) {
|
|
||||||
var indexerTemplate = Handlebars.compile($("#templates > .configured-indexer")[0].outerHTML);
|
|
||||||
var unconfiguredIndexerTemplate = Handlebars.compile($("#templates > .unconfigured-indexer")[0].outerHTML);
|
|
||||||
for (var i = 0; i < items.length; i++) {
|
|
||||||
var item = items[i];
|
|
||||||
item.torznab_host = resolveUrl("/api/" + item.id);
|
|
||||||
if (item.configured)
|
|
||||||
$('#indexers').append(indexerTemplate(item));
|
|
||||||
else
|
|
||||||
$('#unconfigured-indexers').append($(unconfiguredIndexerTemplate(item)));
|
|
||||||
}
|
|
||||||
|
|
||||||
var addIndexerButton = $("#templates > .add-indexer")[0].outerHTML;
|
|
||||||
$('#indexers').append(addIndexerButton);
|
|
||||||
|
|
||||||
$('#indexers').fadeIn();
|
|
||||||
prepareSetupButtons();
|
|
||||||
prepareTestButtons();
|
|
||||||
prepareDeleteButtons();
|
|
||||||
}
|
|
||||||
|
|
||||||
function prepareDeleteButtons() {
|
|
||||||
$(".indexer-button-delete").each(function (i, btn) {
|
|
||||||
var $btn = $(btn);
|
|
||||||
var id = $btn.data("id");
|
|
||||||
$btn.click(function () {
|
|
||||||
var jqxhr = $.post("delete_indexer", JSON.stringify({ indexer: id }), function (data) {
|
|
||||||
if (data.result == "error") {
|
|
||||||
doNotify("Delete error for " + id + "\n" + data.error, "danger", "glyphicon glyphicon-alert");
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
doNotify("Deleted " + id, "success", "glyphicon glyphicon-ok");
|
|
||||||
}
|
|
||||||
}).fail(function () {
|
|
||||||
doNotify("Error deleting indexer, request to Jackett server error", "danger", "glyphicon glyphicon-alert");
|
|
||||||
}).always(function () {
|
|
||||||
reloadIndexers();
|
|
||||||
});
|
|
||||||
});
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
function prepareSetupButtons() {
|
|
||||||
$('.indexer-setup').each(function (i, btn) {
|
|
||||||
var $btn = $(btn);
|
|
||||||
var id = $btn.data("id");
|
|
||||||
$btn.click(function () {
|
|
||||||
displayIndexerSetup(id);
|
|
||||||
});
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
function prepareTestButtons() {
|
|
||||||
$(".indexer-button-test").each(function (i, btn) {
|
|
||||||
var $btn = $(btn);
|
|
||||||
var id = $btn.data("id");
|
|
||||||
$btn.click(function () {
|
|
||||||
doNotify("Test started for " + id, "info", "glyphicon glyphicon-transfer");
|
|
||||||
var jqxhr = $.post("test_indexer", JSON.stringify({ indexer: id }), function (data) {
|
|
||||||
if (data.result == "error") {
|
|
||||||
doNotify("Test failed for " + data.name + "\n" + data.error, "danger", "glyphicon glyphicon-alert");
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
doNotify("Test successful for " + data.name, "success", "glyphicon glyphicon-ok");
|
|
||||||
}
|
|
||||||
}).fail(function () {
|
|
||||||
doNotify("Error testing indexer, request to Jackett server error", "danger", "glyphicon glyphicon-alert");
|
|
||||||
});
|
|
||||||
});
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
function displayIndexerSetup(id) {
|
|
||||||
|
|
||||||
var jqxhr = $.post("get_config_form", JSON.stringify({ indexer: id }), function (data) {
|
|
||||||
if (data.result == "error") {
|
|
||||||
doNotify("Error: " + data.error, "danger", "glyphicon glyphicon-alert");
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
populateSetupForm(id, data.name, data.config);
|
|
||||||
|
|
||||||
}).fail(function () {
|
|
||||||
doNotify("Request to Jackett server failed", "danger", "glyphicon glyphicon-alert");
|
|
||||||
});
|
|
||||||
|
|
||||||
$("#select-indexer-modal").modal("hide");
|
|
||||||
}
|
|
||||||
|
|
||||||
function populateConfigItems(configForm, config) {
|
|
||||||
var $formItemContainer = configForm.find(".config-setup-form");
|
|
||||||
$formItemContainer.empty();
|
|
||||||
var setupItemTemplate = Handlebars.compile($("#templates > .setup-item")[0].outerHTML);
|
|
||||||
for (var i = 0; i < config.length; i++) {
|
|
||||||
var item = config[i];
|
|
||||||
var setupValueTemplate = Handlebars.compile($("#templates > .setup-item-" + item.type)[0].outerHTML);
|
|
||||||
item.value_element = setupValueTemplate(item);
|
|
||||||
$formItemContainer.append(setupItemTemplate(item));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
function newConfigModal(title, config) {
|
|
||||||
//config-setup-modal
|
|
||||||
var configTemplate = Handlebars.compile($("#templates > .config-setup-modal")[0].outerHTML);
|
|
||||||
var configForm = $(configTemplate({ title: title }));
|
|
||||||
|
|
||||||
$("#modals").append(configForm);
|
|
||||||
|
|
||||||
populateConfigItems(configForm, config);
|
|
||||||
|
|
||||||
return configForm;
|
|
||||||
//modal.remove();
|
|
||||||
}
|
|
||||||
|
|
||||||
function getConfigModalJson(configForm) {
|
|
||||||
var configJson = {};
|
|
||||||
configForm.find(".config-setup-form").children().each(function (i, el) {
|
|
||||||
$el = $(el);
|
|
||||||
var type = $el.data("type");
|
|
||||||
var id = $el.data("id");
|
|
||||||
switch (type) {
|
|
||||||
case "inputstring":
|
|
||||||
configJson[id] = $el.find(".setup-item-inputstring").val();
|
|
||||||
break;
|
|
||||||
case "inputbool":
|
|
||||||
configJson[id] = $el.find(".setup-item-checkbox").val();
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
});
|
|
||||||
return configJson;
|
|
||||||
}
|
|
||||||
|
|
||||||
function populateSetupForm(indexerId, name, config) {
|
|
||||||
|
|
||||||
var configForm = newConfigModal(name, config);
|
|
||||||
|
|
||||||
var $goButton = configForm.find(".setup-indexer-go");
|
|
||||||
$goButton.click(function () {
|
|
||||||
var data = { indexer: indexerId, name: name };
|
|
||||||
data.config = getConfigModalJson(configForm);
|
|
||||||
|
|
||||||
var originalBtnText = $goButton.html();
|
|
||||||
$goButton.prop('disabled', true);
|
|
||||||
$goButton.html($('#templates > .spinner')[0].outerHTML);
|
|
||||||
|
|
||||||
var jqxhr = $.post("configure_indexer", JSON.stringify(data), function (data) {
|
|
||||||
if (data.result == "error") {
|
|
||||||
if (data.config) {
|
|
||||||
populateConfigItems(configForm, data.config);
|
|
||||||
}
|
|
||||||
doNotify("Configuration failed: " + data.error, "danger", "glyphicon glyphicon-alert");
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
configForm.modal("hide");
|
|
||||||
reloadIndexers();
|
|
||||||
doNotify("Successfully configured " + data.name, "success", "glyphicon glyphicon-ok");
|
|
||||||
}
|
|
||||||
}).fail(function () {
|
|
||||||
doNotify("Request to Jackett server failed", "danger", "glyphicon glyphicon-alert");
|
|
||||||
}).always(function () {
|
|
||||||
$goButton.html(originalBtnText);
|
|
||||||
$goButton.prop('disabled', false);
|
|
||||||
});
|
|
||||||
});
|
|
||||||
|
|
||||||
configForm.modal("show");
|
|
||||||
}
|
|
||||||
|
|
||||||
function resolveUrl(url) {
|
|
||||||
var a = document.createElement('a');
|
|
||||||
a.href = url;
|
|
||||||
url = a.href;
|
|
||||||
return url;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
function doNotify(message, type, icon) {
|
|
||||||
$.notify({
|
|
||||||
message: message,
|
|
||||||
icon: icon
|
|
||||||
}, {
|
|
||||||
element: 'body',
|
|
||||||
type: type,
|
|
||||||
allow_dismiss: true,
|
|
||||||
z_index: 9000,
|
|
||||||
mouse_over: 'pause',
|
|
||||||
placement: {
|
|
||||||
from: "bottom",
|
|
||||||
align: "center"
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
function clearNotifications() {
|
|
||||||
$('[data-notify="container"]').remove();
|
|
||||||
}
|
|
||||||
|
|
||||||
$('#test').click(doNotify);
|
|
||||||
|
|
||||||
|
|
||||||
</script>
|
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
BIN
src/Jackett/WebContent/logos/showrss.png
Normal file
BIN
src/Jackett/WebContent/logos/showrss.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 7.4 KiB |
Reference in New Issue
Block a user