Change namespace to Jackett.Common (#2691)

Really hope I don't break anything with this
Went to have a go at .NET core and it just became too confusing for me with 'Jackett' namespace referring to both Jackett.Common and Jackett
This commit is contained in:
flightlevel
2018-03-10 19:05:56 +11:00
committed by GitHub
parent 7ab8138060
commit 3e5e48c3a0
291 changed files with 987 additions and 1468 deletions

View File

@@ -1,7 +1,8 @@
using System;
using System.Runtime.InteropServices;
using CurlSharp.Enums;
namespace CurlSharp
namespace CurlSharp.Callbacks
{
/// <summary>
/// Called when cURL has debug information for the client.

View File

@@ -1,6 +1,7 @@
using System;
using CurlSharp.Enums;
namespace CurlSharp
namespace CurlSharp.Callbacks
{
/// <summary>
/// Called when <c>cURL</c> wants to lock a shared resource.

View File

@@ -19,6 +19,7 @@
using System;
using System.Runtime.InteropServices;
using CurlSharp.Enums;
namespace CurlSharp
{

View File

@@ -19,6 +19,8 @@
using System;
using System.Runtime.InteropServices;
using CurlSharp.Callbacks;
using CurlSharp.Enums;
namespace CurlSharp
{

View File

@@ -19,6 +19,7 @@
using System;
using System.Runtime.InteropServices;
using CurlSharp.Enums;
namespace CurlSharp
{

View File

@@ -20,6 +20,7 @@
using System;
using System.Collections;
using System.Runtime.InteropServices;
using CurlSharp.Enums;
namespace CurlSharp
{

View File

@@ -17,6 +17,8 @@
*
**************************************************************************/
using CurlSharp.Enums;
namespace CurlSharp
{
/// <summary>

View File

@@ -19,6 +19,8 @@
using System;
using System.Runtime.InteropServices;
using CurlSharp.Callbacks;
using CurlSharp.Enums;
namespace CurlSharp
{

View File

@@ -20,6 +20,7 @@
using System;
using System.Collections.Generic;
using System.Runtime.InteropServices;
using CurlSharp.Enums;
namespace CurlSharp
{

View File

@@ -18,6 +18,7 @@
**************************************************************************/
using System;
using CurlSharp.Callbacks;
namespace CurlSharp
{

View File

@@ -18,7 +18,7 @@
**************************************************************************/
using System;
using System.Runtime.InteropServices;
using CurlSharp.Enums;
namespace CurlSharp
{

View File

@@ -1,4 +1,4 @@
namespace CurlSharp
namespace CurlSharp.Enums
{
/// <summary>
/// Contains values used to specify the order in which cached connections

View File

@@ -1,4 +1,4 @@
namespace CurlSharp
namespace CurlSharp.Enums
{
/// <summary>
/// Status code returned from <see cref="CurlEasy" /> functions.

View File

@@ -17,7 +17,7 @@
* $Id: Enums.cs,v 1.1 2005/02/17 22:47:25 jeffreyphillips Exp $
**************************************************************************/
namespace CurlSharp
namespace CurlSharp.Enums
{
/// <summary>
/// One of these is returned by <see cref="CurlHttpMultiPartForm.AddSection" />.

View File

@@ -1,4 +1,4 @@
namespace CurlSharp
namespace CurlSharp.Enums
{
/// <summary>
/// These are options available to build a multi-part form section

View File

@@ -1,4 +1,4 @@
namespace CurlSharp
namespace CurlSharp.Enums
{
/// <summary>
/// This enumeration contains values used to specify the FTP Ssl

View File

@@ -1,4 +1,4 @@
namespace CurlSharp
namespace CurlSharp.Enums
{
/// <summary>
/// This enumeration contains values used to specify the FTP Ssl level

View File

@@ -1,4 +1,4 @@
namespace CurlSharp
namespace CurlSharp.Enums
{
/// <summary>
/// This enumeration contains values used to specify the HTTP authentication

View File

@@ -1,4 +1,4 @@
namespace CurlSharp
namespace CurlSharp.Enums
{
/// <summary>
/// Contains values used to specify the HTTP version level when using

View File

@@ -1,4 +1,4 @@
namespace CurlSharp
namespace CurlSharp.Enums
{
/// <summary>
/// This enumeration is used to extract information associated with an

View File

@@ -1,4 +1,4 @@
namespace CurlSharp
namespace CurlSharp.Enums
{
/// <summary>
/// A member of this enumeration is passed as the first parameter to the

View File

@@ -1,4 +1,4 @@
namespace CurlSharp
namespace CurlSharp.Enums
{
/// <summary>
/// Contains values used to initialize libcurl internally. One of

View File

@@ -1,4 +1,4 @@
namespace CurlSharp
namespace CurlSharp.Enums
{
/// <summary>
/// Your handler for the <see cref="CurlEasy.CurlIoctlCallback" />

View File

@@ -1,4 +1,4 @@
namespace CurlSharp
namespace CurlSharp.Enums
{
/// <summary>
/// Your handler for the <see cref="CurlEasy.CurlIoctlCallback" /> delegate

View File

@@ -1,4 +1,4 @@
namespace CurlSharp
namespace CurlSharp.Enums
{
/// <summary>
/// This enumeration contains values used to specify the IP resolution

View File

@@ -1,4 +1,4 @@
namespace CurlSharp
namespace CurlSharp.Enums
{
/// <summary>
/// Values containing the type of shared access requested when libcurl

View File

@@ -1,4 +1,4 @@
namespace CurlSharp
namespace CurlSharp.Enums
{
/// <summary>
/// Members of this enumeration should be passed to

View File

@@ -1,4 +1,4 @@
namespace CurlSharp
namespace CurlSharp.Enums
{
/// <summary>
/// The status code associated with an <see cref="CurlEasy" /> object in a

View File

@@ -1,4 +1,4 @@
namespace CurlSharp
namespace CurlSharp.Enums
{
/// <summary>
/// Contains return codes for many of the functions in the

View File

@@ -8,7 +8,7 @@
//
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
namespace CurlSharp
namespace CurlSharp.Enums
{
public enum CurlMultiOption
{

View File

@@ -1,4 +1,4 @@
namespace CurlSharp
namespace CurlSharp.Enums
{
/// <summary>
/// Contains values used to specify the preference of libcurl between

View File

@@ -8,7 +8,7 @@
//
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
namespace CurlSharp
namespace CurlSharp.Enums
{
public enum CurlOptType
{

View File

@@ -17,7 +17,9 @@
*
**************************************************************************/
namespace CurlSharp
using CurlSharp.Callbacks;
namespace CurlSharp.Enums
{
/// <summary>
/// One of these is passed as the first parameter to

View File

@@ -8,7 +8,7 @@
//
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
namespace CurlSharp
namespace CurlSharp.Enums
{
/* bitmask bits for CURLMOPT_PIPELINING */

View File

@@ -1,4 +1,4 @@
namespace CurlSharp
namespace CurlSharp.Enums
{
/// <summary>
/// This enumeration contains values used to specify the proxy type when

View File

@@ -1,4 +1,4 @@
namespace CurlSharp
namespace CurlSharp.Enums
{
/// <summary>
/// Contains return codes from many of the functions in the

View File

@@ -1,4 +1,4 @@
namespace CurlSharp
namespace CurlSharp.Enums
{
/// <summary>
/// A member of this enumeration is passed to the function

View File

@@ -1,4 +1,4 @@
namespace CurlSharp
namespace CurlSharp.Enums
{
/// <summary>
/// Contains values used to specify the Ssl version level when using

View File

@@ -1,4 +1,4 @@
namespace CurlSharp
namespace CurlSharp.Enums
{
/// <summary>
/// Contains values used to specify the time condition when using

View File

@@ -1,4 +1,4 @@
namespace CurlSharp
namespace CurlSharp.Enums
{
/// <summary>
/// A member of this enumeration is passed to the function

View File

@@ -1,4 +1,4 @@
namespace CurlSharp
namespace CurlSharp.Enums
{
/// <summary>
/// A bitmask of libcurl features OR'd together as the value of the

View File

@@ -24,6 +24,7 @@ using System;
using System.IO;
using System.Reflection;
using System.Runtime.InteropServices;
using CurlSharp.Enums;
namespace CurlSharp
{

View File

@@ -1,10 +1,4 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CurlSharp
namespace CurlSharp
{
public class SSLFix
{

View File

@@ -5,14 +5,11 @@
// sergey.stoyan@gmail.com
// 27 February 2007
//********************************************************************************************
using System;
using System.Collections.Generic;
using System.Text;
using System.IO;
using System.Text.RegularExpressions;
using System.Threading;
using System.Collections;
namespace Cliver
namespace DateTimeRoutines
{
/// <summary>
/// Miscellaneous and parsing methods for DateTime

View File

@@ -1,19 +1,16 @@
using CurlSharp;
using System;
using System.Collections.Concurrent;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Net.Http;
using System.Text;
using System.Threading.Tasks;
using System.Net.Http.Headers;
using Jackett.Utils;
using System.Net;
using System.Threading;
using Jacket.Common;
using Jackett.Models.Config;
using CurlSharp;
using CurlSharp.Enums;
using Jackett.Common.Models.Config;
using Jackett.Common.Utils;
namespace Jackett
namespace Jackett.Common
{
public class CurlHelper
{

View File

@@ -1,23 +1,22 @@
using Autofac;
using AutoMapper;
using Jackett.Common.Models.Config;
using Jackett.Common.Plumbing;
using Jackett.Models;
using Jackett.Models.Config;
using Jackett.Services;
using Jackett.Services.Interfaces;
using Jackett.Utils.Clients;
using NLog;
using NLog.Config;
using NLog.LayoutRenderers;
using NLog.Targets;
using System;
using System;
using System.Diagnostics;
using System.IO;
using System.Linq;
using System.Text;
using Autofac;
using AutoMapper;
using Jackett.Common.Models;
using Jackett.Common.Models.Config;
using Jackett.Common.Plumbing;
using Jackett.Common.Services;
using Jackett.Common.Services.Interfaces;
using Jackett.Common.Utils.Clients;
using NLog;
using NLog.Config;
using NLog.LayoutRenderers;
using NLog.Targets;
namespace Jackett
namespace Jackett.Common
{
public class Engine
{

View File

@@ -1,12 +1,7 @@
using Jackett.Models;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Jackett.Models.IndexerConfig;
using System;
using Jackett.Common.Models.IndexerConfig;
namespace Jackett
namespace Jackett.Common
{
public class ExceptionWithConfigData : Exception

View File

@@ -1,14 +1,9 @@
using Newtonsoft.Json.Linq;
using NLog;
using System;
using System.Collections.Generic;
using System.Linq;
using System;
using System.Net;
using System.Text;
using System.Threading.Tasks;
using System.Web;
using Newtonsoft.Json.Linq;
using NLog;
namespace Jackett
namespace Jackett.Common.Helpers
{
public static class CookieContainerExtensions
{

View File

@@ -1,11 +1,8 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Net.Http;
using System.Text;
using System.Threading.Tasks;
namespace Jackett
namespace Jackett.Common.Helpers
{
public static class HttpClientExtensions
{

View File

@@ -1,9 +1,7 @@
using System;
using System.Collections.Generic;
using System.Net;
using System.Net;
using System.Text;
namespace Jacket.Common.Helpers
namespace Jackett.Common.Helpers
{
public static class WebUtilityHelpers
{

View File

@@ -1,11 +1,7 @@
using Jackett.Indexers;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System;
using Jackett.Common.Indexers;
namespace Jackett
namespace Jackett.Common
{
public class IndexerException : Exception
{

View File

@@ -4,15 +4,15 @@ using System.Collections.Specialized;
using System.Text;
using System.Threading.Tasks;
using AngleSharp.Parser.Html;
using Jackett.Models;
using Jackett.Models.IndexerConfig;
using Jackett.Services.Interfaces;
using Jackett.Utils;
using Jackett.Utils.Clients;
using Jackett.Common.Models;
using Jackett.Common.Models.IndexerConfig;
using Jackett.Common.Services.Interfaces;
using Jackett.Common.Utils;
using Jackett.Common.Utils.Clients;
using Newtonsoft.Json.Linq;
using NLog;
namespace Jackett.Indexers
namespace Jackett.Common.Indexers
{
public class SevenTor : BaseWebIndexer
{

View File

@@ -9,18 +9,17 @@ using System.Reflection;
using System.Text;
using System.Text.RegularExpressions;
using System.Threading.Tasks;
using System.Web;
using CsQuery;
using Jackett.Models;
using Jackett.Models.IndexerConfig.Bespoke;
using Jackett.Services.Interfaces;
using Jackett.Utils;
using Jackett.Utils.Clients;
using Jackett.Common.Models;
using Jackett.Common.Models.IndexerConfig.Bespoke;
using Jackett.Common.Services.Interfaces;
using Jackett.Common.Utils;
using Jackett.Common.Utils.Clients;
using Newtonsoft.Json;
using Newtonsoft.Json.Linq;
using NLog;
namespace Jackett.Indexers
namespace Jackett.Common.Indexers
{
/// <summary>
/// Provider for Abnormal Private French Tracker

View File

@@ -1,21 +1,19 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Text;
using System.Text.RegularExpressions;
using System.Threading.Tasks;
using Jackett.Models;
using CsQuery;
using Jackett.Common.Models;
using Jackett.Common.Models.IndexerConfig;
using Jackett.Common.Services.Interfaces;
using Jackett.Common.Utils;
using Newtonsoft.Json.Linq;
using NLog;
using Jackett.Utils;
using CsQuery;
using System.Web;
using Jackett.Utils.Clients;
using System.Text.RegularExpressions;
using Jackett.Models.IndexerConfig;
using Jackett.Services.Interfaces;
using System.Net;
namespace Jackett.Indexers
namespace Jackett.Common.Indexers.Abstract
{
public abstract class AvistazTracker : BaseWebIndexer
{

View File

@@ -1,17 +1,16 @@
using Jackett.Models;
using Jackett.Models.IndexerConfig;
using Jackett.Services;
using Jackett.Utils;
using Jackett.Utils.Clients;
using Newtonsoft.Json.Linq;
using NLog;
using System;
using System.Collections.Generic;
using System.Collections.Specialized;
using System.Threading.Tasks;
using Jackett.Services.Interfaces;
using Jackett.Common.Models;
using Jackett.Common.Models.IndexerConfig;
using Jackett.Common.Services.Interfaces;
using Jackett.Common.Utils;
using Jackett.Common.Utils.Clients;
using Newtonsoft.Json.Linq;
using NLog;
namespace Jackett.Indexers.Abstract
namespace Jackett.Common.Indexers.Abstract
{
public abstract class CouchPotatoTracker : BaseWebIndexer
{

View File

@@ -1,23 +1,20 @@
using AngleSharp.Parser.Html;
using Jackett.Models;
using Jackett.Models.IndexerConfig;
using Jackett.Utils;
using Jackett.Services.Interfaces;
using Jackett.Utils.Clients;
using Newtonsoft.Json.Linq;
using NLog;
using System;
using System;
using System.Collections.Generic;
using System.Collections.Specialized;
using System.Globalization;
using System.Linq;
using System.Net;
using System.Text;
using System.Threading.Tasks;
using System.Web;
using System.Net;
using static Jackett.Models.IndexerConfig.ConfigurationData;
using AngleSharp.Parser.Html;
using Jackett.Common.Models;
using Jackett.Common.Models.IndexerConfig;
using Jackett.Common.Services.Interfaces;
using Jackett.Common.Utils;
using Newtonsoft.Json.Linq;
using NLog;
namespace Jackett.Indexers.Abstract
namespace Jackett.Common.Indexers.Abstract
{
public abstract class GazelleTracker : BaseWebIndexer
{
@@ -50,7 +47,7 @@ namespace Jackett.Indexers.Abstract
if (supportsFreeleechTokens)
{
var useTokenItem = new BoolItem { Value = false };
var useTokenItem = new ConfigurationData.BoolItem { Value = false };
useTokenItem.Name = "Use Freeleech Tokens when available";
configData.AddDynamic("usetoken", useTokenItem);
}
@@ -60,7 +57,7 @@ namespace Jackett.Indexers.Abstract
{
LoadValuesFromJson(configJson);
var useTokenItem = (BoolItem)configData.GetDynamic("usetoken");
var useTokenItem = (ConfigurationData.BoolItem)configData.GetDynamic("usetoken");
if (useTokenItem != null)
{
useTokens = useTokenItem.Value;

View File

@@ -1,10 +1,10 @@
using Jackett.Indexers.Abstract;
using Jackett.Models;
using Jackett.Services.Interfaces;
using Jackett.Utils.Clients;
using Jackett.Common.Indexers.Abstract;
using Jackett.Common.Models;
using Jackett.Common.Services.Interfaces;
using Jackett.Common.Utils.Clients;
using NLog;
namespace Jackett.Indexers
namespace Jackett.Common.Indexers
{
public class AlphaRatio : GazelleTracker
{

View File

@@ -6,15 +6,15 @@ using System.Linq;
using System.Text;
using System.Threading.Tasks;
using CsQuery;
using Jackett.Models;
using Jackett.Models.IndexerConfig;
using Jackett.Services.Interfaces;
using Jackett.Utils;
using Jackett.Utils.Clients;
using Jackett.Common.Models;
using Jackett.Common.Models.IndexerConfig;
using Jackett.Common.Services.Interfaces;
using Jackett.Common.Utils;
using Jackett.Common.Utils.Clients;
using Newtonsoft.Json.Linq;
using NLog;
namespace Jackett.Indexers
namespace Jackett.Common.Indexers
{
public class Andraste : BaseWebIndexer
{

View File

@@ -5,18 +5,16 @@ using System.Net;
using System.Text;
using System.Text.RegularExpressions;
using System.Threading.Tasks;
using System.Web;
using CsQuery;
using Jackett.Models;
using Jackett.Models.IndexerConfig.Bespoke;
using Jackett.Services.Interfaces;
using Jackett.Utils;
using Jackett.Utils.Clients;
using Jackett.Common.Models;
using Jackett.Common.Models.IndexerConfig;
using Jackett.Common.Models.IndexerConfig.Bespoke;
using Jackett.Common.Services.Interfaces;
using Jackett.Common.Utils;
using Newtonsoft.Json.Linq;
using NLog;
using Jackett.Models.IndexerConfig;
namespace Jackett.Indexers
namespace Jackett.Common.Indexers
{
public class AnimeBytes : BaseCachingWebIndexer
{

View File

@@ -6,15 +6,15 @@ using System.Linq;
using System.Text;
using System.Threading.Tasks;
using CsQuery;
using Jackett.Models;
using Jackett.Models.IndexerConfig;
using Jackett.Services.Interfaces;
using Jackett.Utils;
using Jackett.Utils.Clients;
using Jackett.Common.Models;
using Jackett.Common.Models.IndexerConfig;
using Jackett.Common.Services.Interfaces;
using Jackett.Common.Utils;
using Jackett.Common.Utils.Clients;
using Newtonsoft.Json.Linq;
using NLog;
namespace Jackett.Indexers
namespace Jackett.Common.Indexers
{
public class AnimeTorrents : BaseWebIndexer
{

View File

@@ -1,11 +1,11 @@
using System.Collections.Generic;
using Jackett.Indexers.Abstract;
using Jackett.Models;
using Jackett.Services.Interfaces;
using Jackett.Utils.Clients;
using Jackett.Common.Indexers.Abstract;
using Jackett.Common.Models;
using Jackett.Common.Services.Interfaces;
using Jackett.Common.Utils.Clients;
using NLog;
namespace Jackett.Indexers
namespace Jackett.Common.Indexers
{
public class Apollo : GazelleTracker
{

View File

@@ -1,8 +1,9 @@
using Jackett.Services.Interfaces;
using Jackett.Utils.Clients;
using Jackett.Common.Indexers.Abstract;
using Jackett.Common.Services.Interfaces;
using Jackett.Common.Utils.Clients;
using NLog;
namespace Jackett.Indexers
namespace Jackett.Common.Indexers
{
public class Avistaz : AvistazTracker
{

View File

@@ -6,15 +6,15 @@ using System.Text;
using System.Text.RegularExpressions;
using System.Threading.Tasks;
using CsQuery;
using Jackett.Models;
using Jackett.Models.IndexerConfig;
using Jackett.Services.Interfaces;
using Jackett.Utils;
using Jackett.Utils.Clients;
using Jackett.Common.Models;
using Jackett.Common.Models.IndexerConfig;
using Jackett.Common.Services.Interfaces;
using Jackett.Common.Utils;
using Jackett.Common.Utils.Clients;
using Newtonsoft.Json.Linq;
using NLog;
namespace Jackett.Indexers
namespace Jackett.Common.Indexers
{
// To comply with the rules for this tracker, only the acronym is used and no publicly displayed URLs to the site.

View File

@@ -8,15 +8,15 @@ using System.Text.RegularExpressions;
using System.Threading.Tasks;
using AngleSharp.Dom;
using AngleSharp.Parser.Html;
using Jackett.Models;
using Jackett.Models.IndexerConfig;
using Jackett.Services.Interfaces;
using Jackett.Utils;
using Jackett.Utils.Clients;
using Jackett.Common.Models;
using Jackett.Common.Models.IndexerConfig;
using Jackett.Common.Services.Interfaces;
using Jackett.Common.Utils;
using Jackett.Common.Utils.Clients;
using Newtonsoft.Json.Linq;
using NLog;
namespace Jackett.Indexers
namespace Jackett.Common.Indexers
{
public class BJShare : BaseWebIndexer
{

View File

@@ -4,16 +4,15 @@ using System.Globalization;
using System.Net;
using System.Text;
using System.Threading.Tasks;
using System.Web;
using CsQuery;
using Jackett.Models;
using Jackett.Models.IndexerConfig;
using Jackett.Services.Interfaces;
using Jackett.Utils.Clients;
using Jackett.Common.Models;
using Jackett.Common.Models.IndexerConfig;
using Jackett.Common.Services.Interfaces;
using Jackett.Common.Utils.Clients;
using Newtonsoft.Json.Linq;
using NLog;
namespace Jackett.Indexers
namespace Jackett.Common.Indexers
{
public class BakaBT : BaseWebIndexer
{

View File

@@ -4,16 +4,16 @@ using System.Linq;
using System.Text;
using System.Threading.Tasks;
using AutoMapper;
using Jackett.Models;
using Jackett.Models.IndexerConfig;
using Jackett.Services.Interfaces;
using Jackett.Utils;
using Jackett.Utils.Clients;
using Jackett.Common.Models;
using Jackett.Common.Models.IndexerConfig;
using Jackett.Common.Services.Interfaces;
using Jackett.Common.Utils;
using Jackett.Common.Utils.Clients;
using Newtonsoft.Json;
using Newtonsoft.Json.Linq;
using NLog;
namespace Jackett.Indexers
namespace Jackett.Common.Indexers
{
public abstract class BaseIndexer : IIndexer
{

View File

@@ -6,15 +6,15 @@ using System.Text;
using System.Text.RegularExpressions;
using System.Threading.Tasks;
using CsQuery;
using Jackett.Models;
using Jackett.Models.IndexerConfig;
using Jackett.Services.Interfaces;
using Jackett.Utils;
using Jackett.Utils.Clients;
using Jackett.Common.Models;
using Jackett.Common.Models.IndexerConfig;
using Jackett.Common.Services.Interfaces;
using Jackett.Common.Utils;
using Jackett.Common.Utils.Clients;
using Newtonsoft.Json.Linq;
using NLog;
namespace Jackett.Indexers
namespace Jackett.Common.Indexers
{
public class BeyondHD : BaseWebIndexer
{

View File

@@ -5,15 +5,15 @@ using System.Globalization;
using System.Text;
using System.Threading.Tasks;
using CsQuery;
using Jackett.Models;
using Jackett.Models.IndexerConfig;
using Jackett.Services.Interfaces;
using Jackett.Utils;
using Jackett.Utils.Clients;
using Jackett.Common.Models;
using Jackett.Common.Models.IndexerConfig;
using Jackett.Common.Services.Interfaces;
using Jackett.Common.Utils;
using Jackett.Common.Utils.Clients;
using Newtonsoft.Json.Linq;
using NLog;
namespace Jackett.Indexers
namespace Jackett.Common.Indexers
{
public class BitCityReloaded : BaseWebIndexer
{

View File

@@ -6,15 +6,15 @@ using System.Linq;
using System.Text;
using System.Threading.Tasks;
using CsQuery;
using Jackett.Models;
using Jackett.Models.IndexerConfig;
using Jackett.Services.Interfaces;
using Jackett.Utils;
using Jackett.Utils.Clients;
using Jackett.Common.Models;
using Jackett.Common.Models.IndexerConfig;
using Jackett.Common.Services.Interfaces;
using Jackett.Common.Utils;
using Jackett.Common.Utils.Clients;
using Newtonsoft.Json.Linq;
using NLog;
namespace Jackett.Indexers
namespace Jackett.Common.Indexers
{
public class BitHdtv : BaseWebIndexer
{

View File

@@ -6,17 +6,15 @@ using System.Net;
using System.Text;
using System.Text.RegularExpressions;
using System.Threading.Tasks;
using System.Web;
using CsQuery;
using Jackett.Models;
using Jackett.Models.IndexerConfig;
using Jackett.Services.Interfaces;
using Jackett.Utils;
using Jackett.Utils.Clients;
using Jackett.Common.Models;
using Jackett.Common.Models.IndexerConfig;
using Jackett.Common.Services.Interfaces;
using Jackett.Common.Utils;
using Newtonsoft.Json.Linq;
using NLog;
namespace Jackett.Indexers
namespace Jackett.Common.Indexers
{
public class BitMeTV : BaseWebIndexer
{

View File

@@ -6,15 +6,15 @@ using System.Linq;
using System.Text;
using System.Threading.Tasks;
using CsQuery;
using Jackett.Models;
using Jackett.Models.IndexerConfig;
using Jackett.Services.Interfaces;
using Jackett.Utils;
using Jackett.Utils.Clients;
using Jackett.Common.Models;
using Jackett.Common.Models.IndexerConfig;
using Jackett.Common.Services.Interfaces;
using Jackett.Common.Utils;
using Jackett.Common.Utils.Clients;
using Newtonsoft.Json.Linq;
using NLog;
namespace Jackett.Indexers
namespace Jackett.Common.Indexers
{
public class BitSoup : BaseWebIndexer
{

View File

@@ -3,16 +3,16 @@ using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Jackett.Models;
using Jackett.Models.IndexerConfig;
using Jackett.Services.Interfaces;
using Jackett.Utils;
using Jackett.Utils.Clients;
using Jackett.Common.Models;
using Jackett.Common.Models.IndexerConfig;
using Jackett.Common.Services.Interfaces;
using Jackett.Common.Utils;
using Jackett.Common.Utils.Clients;
using Newtonsoft.Json;
using Newtonsoft.Json.Linq;
using NLog;
namespace Jackett.Indexers
namespace Jackett.Common.Indexers
{
public class BroadcastTheNet : BaseWebIndexer
{

View File

@@ -1,10 +1,10 @@
using Jackett.Indexers.Abstract;
using Jackett.Models;
using Jackett.Services.Interfaces;
using Jackett.Utils.Clients;
using Jackett.Common.Indexers.Abstract;
using Jackett.Common.Models;
using Jackett.Common.Services.Interfaces;
using Jackett.Common.Utils.Clients;
using NLog;
namespace Jackett.Indexers
namespace Jackett.Common.Indexers
{
public class BrokenStones : GazelleTracker
{

View File

@@ -1,28 +1,27 @@
using Jackett.Utils.Clients;
using NLog;
using Jackett.Services.Interfaces;
using Jackett.Utils;
using Jackett.Models;
using System.Threading.Tasks;
using Newtonsoft.Json.Linq;
using System;
using System.Collections;
using System.Collections.Generic;
using System;
using Jackett.Models.IndexerConfig;
using System.Collections.Specialized;
using System.Text;
using static Jackett.Models.IndexerConfig.ConfigurationData;
using AngleSharp.Parser.Html;
using System.Text.RegularExpressions;
using System.Web;
using AngleSharp.Dom;
using AngleSharp.Dom.Html;
using System.Linq;
using System.Net;
using System.Text;
using System.Text.RegularExpressions;
using System.Threading.Tasks;
using AngleSharp.Dom;
using AngleSharp.Dom.Html;
using AngleSharp.Parser.Html;
using Jackett.Common.Helpers;
using Jackett.Common.Models;
using Jackett.Common.Models.IndexerConfig;
using static Jackett.Common.Models.IndexerConfig.ConfigurationData;
using Jackett.Common.Services.Interfaces;
using Jackett.Common.Utils;
using Jackett.Common.Utils.Clients;
using Microsoft.AspNetCore.WebUtilities;
using Jacket.Common.Helpers;
using System.Collections;
using Newtonsoft.Json.Linq;
using NLog;
namespace Jackett.Indexers
namespace Jackett.Common.Indexers
{
public class CardigannIndexer : BaseWebIndexer
{

View File

@@ -1,8 +1,9 @@
using Jackett.Services.Interfaces;
using Jackett.Utils.Clients;
using Jackett.Common.Indexers.Abstract;
using Jackett.Common.Services.Interfaces;
using Jackett.Common.Utils.Clients;
using NLog;
namespace Jackett.Indexers
namespace Jackett.Common.Indexers
{
public class CinemaZ : AvistazTracker
{

View File

@@ -2,14 +2,14 @@ using System.Collections.Generic;
using System.Text;
using System.Text.RegularExpressions;
using System.Threading.Tasks;
using Jackett.Indexers.Abstract;
using Jackett.Models;
using Jackett.Models.IndexerConfig;
using Jackett.Services.Interfaces;
using Jackett.Utils.Clients;
using Jackett.Common.Indexers.Abstract;
using Jackett.Common.Models;
using Jackett.Common.Models.IndexerConfig;
using Jackett.Common.Services.Interfaces;
using Jackett.Common.Utils.Clients;
using NLog;
namespace Jackett.Indexers
namespace Jackett.Common.Indexers
{
public class DanishBits : CouchPotatoTracker
{

View File

@@ -5,18 +5,16 @@ using System.Linq;
using System.Net;
using System.Text;
using System.Threading.Tasks;
using System.Web;
using CsQuery;
using Jackett.Models;
using Jackett.Models.IndexerConfig;
using Jackett.Services.Interfaces;
using Jackett.Utils;
using Jackett.Utils.Clients;
using Jackett.Common.Models;
using Jackett.Common.Models.IndexerConfig;
using Jackett.Common.Services.Interfaces;
using Jackett.Common.Utils;
using Microsoft.AspNetCore.WebUtilities;
using Newtonsoft.Json.Linq;
using NLog;
namespace Jackett.Indexers
namespace Jackett.Common.Indexers
{
public class Demonoid : BaseWebIndexer
{

View File

@@ -5,15 +5,15 @@ using System.Linq;
using System.Text;
using System.Threading.Tasks;
using CsQuery;
using Jackett.Models;
using Jackett.Models.IndexerConfig;
using Jackett.Services.Interfaces;
using Jackett.Utils;
using Jackett.Utils.Clients;
using Jackett.Common.Models;
using Jackett.Common.Models.IndexerConfig;
using Jackett.Common.Services.Interfaces;
using Jackett.Common.Utils;
using Jackett.Common.Utils.Clients;
using Newtonsoft.Json.Linq;
using NLog;
namespace Jackett.Indexers
namespace Jackett.Common.Indexers
{
public class DigitalHive : BaseWebIndexer
{

View File

@@ -6,15 +6,15 @@ using System.Text;
using System.Text.RegularExpressions;
using System.Threading.Tasks;
using AngleSharp.Parser.Html;
using Jackett.Models;
using Jackett.Models.IndexerConfig;
using Jackett.Services.Interfaces;
using Jackett.Utils;
using Jackett.Utils.Clients;
using Jackett.Common.Models;
using Jackett.Common.Models.IndexerConfig;
using Jackett.Common.Services.Interfaces;
using Jackett.Common.Utils;
using Jackett.Common.Utils.Clients;
using Newtonsoft.Json.Linq;
using NLog;
namespace Jackett.Indexers
namespace Jackett.Common.Indexers
{
internal class EliteTracker : BaseWebIndexer
{

View File

@@ -2,14 +2,14 @@
using System.Linq;
using System.Text;
using System.Xml.Linq;
using Jackett.Models;
using Jackett.Models.IndexerConfig;
using Jackett.Services.Interfaces;
using Jackett.Utils;
using Jackett.Utils.Clients;
using Jackett.Common.Models;
using Jackett.Common.Models.IndexerConfig;
using Jackett.Common.Services.Interfaces;
using Jackett.Common.Utils;
using Jackett.Common.Utils.Clients;
using NLog;
namespace Jackett.Indexers.Newznab
namespace Jackett.Common.Indexers.Feeds
{
public class AnimeTosho : BaseNewznabIndexer
{

View File

@@ -1,15 +1,15 @@
using System;
using System.Collections.Generic;
using System.Threading.Tasks;
using Jackett.Models;
using Jackett.Models.IndexerConfig;
using Jackett.Services.Interfaces;
using Jackett.Utils;
using Jackett.Utils.Clients;
using Jackett.Common.Models;
using Jackett.Common.Models.IndexerConfig;
using Jackett.Common.Services.Interfaces;
using Jackett.Common.Utils;
using Jackett.Common.Utils.Clients;
using Newtonsoft.Json.Linq;
using NLog;
namespace Jackett.Indexers
namespace Jackett.Common.Indexers.Feeds
{
public abstract class BaseFeedIndexer : BaseWebIndexer
{

View File

@@ -2,14 +2,14 @@
using System.Collections.Generic;
using System.Linq;
using System.Xml.Linq;
using Jackett.Models;
using Jackett.Models.IndexerConfig;
using Jackett.Services.Interfaces;
using Jackett.Utils;
using Jackett.Utils.Clients;
using Jackett.Common.Models;
using Jackett.Common.Models.IndexerConfig;
using Jackett.Common.Services.Interfaces;
using Jackett.Common.Utils;
using Jackett.Common.Utils.Clients;
using NLog;
namespace Jackett.Indexers
namespace Jackett.Common.Indexers.Feeds
{
public abstract class BaseNewznabIndexer : BaseFeedIndexer
{

View File

@@ -7,15 +7,15 @@ using System.Text;
using System.Text.RegularExpressions;
using System.Threading.Tasks;
using CsQuery;
using Jackett.Models;
using Jackett.Models.IndexerConfig.Bespoke;
using Jackett.Services.Interfaces;
using Jackett.Utils;
using Jackett.Utils.Clients;
using Jackett.Common.Models;
using Jackett.Common.Models.IndexerConfig.Bespoke;
using Jackett.Common.Services.Interfaces;
using Jackett.Common.Utils;
using Jackett.Common.Utils.Clients;
using Newtonsoft.Json.Linq;
using NLog;
namespace Jackett.Indexers
namespace Jackett.Common.Indexers
{
public class FileList : BaseWebIndexer
{

View File

@@ -4,15 +4,15 @@ using System.Collections.Specialized;
using System.Text;
using System.Threading.Tasks;
using CsQuery;
using Jackett.Models;
using Jackett.Models.IndexerConfig;
using Jackett.Services.Interfaces;
using Jackett.Utils;
using Jackett.Utils.Clients;
using Jackett.Common.Models;
using Jackett.Common.Models.IndexerConfig;
using Jackett.Common.Services.Interfaces;
using Jackett.Common.Utils;
using Jackett.Common.Utils.Clients;
using Newtonsoft.Json.Linq;
using NLog;
namespace Jackett.Indexers
namespace Jackett.Common.Indexers
{
public class FunFile : BaseWebIndexer
{

View File

@@ -3,22 +3,19 @@ using System.Collections.Generic;
using System.Collections.Specialized;
using System.Globalization;
using System.Linq;
using System.Net;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
using System.Web;
using CsQuery;
using Jacket.Common.Helpers;
using Jackett.Models;
using Jackett.Models.IndexerConfig;
using Jackett.Services.Interfaces;
using Jackett.Utils;
using Jackett.Utils.Clients;
using Jackett.Common.Helpers;
using Jackett.Common.Models;
using Jackett.Common.Models.IndexerConfig;
using Jackett.Common.Services.Interfaces;
using Jackett.Common.Utils;
using Newtonsoft.Json.Linq;
using NLog;
namespace Jackett.Indexers
namespace Jackett.Common.Indexers
{
public class Fuzer : BaseWebIndexer
{

View File

@@ -6,15 +6,15 @@ using System.Linq;
using System.Text;
using System.Threading.Tasks;
using CsQuery;
using Jackett.Models;
using Jackett.Models.IndexerConfig;
using Jackett.Services.Interfaces;
using Jackett.Utils;
using Jackett.Utils.Clients;
using Jackett.Common.Models;
using Jackett.Common.Models.IndexerConfig;
using Jackett.Common.Services.Interfaces;
using Jackett.Common.Utils;
using Jackett.Common.Utils.Clients;
using Newtonsoft.Json.Linq;
using NLog;
namespace Jackett.Indexers
namespace Jackett.Common.Indexers
{
//
// Quick and dirty indexer for GFTracker.

View File

@@ -6,15 +6,15 @@ using System.Linq;
using System.Text;
using System.Threading.Tasks;
using AngleSharp.Parser.Html;
using Jackett.Models;
using Jackett.Models.IndexerConfig;
using Jackett.Services.Interfaces;
using Jackett.Utils;
using Jackett.Utils.Clients;
using Jackett.Common.Models;
using Jackett.Common.Models.IndexerConfig;
using Jackett.Common.Services.Interfaces;
using Jackett.Common.Utils;
using Jackett.Common.Utils.Clients;
using Newtonsoft.Json.Linq;
using NLog;
namespace Jackett.Indexers
namespace Jackett.Common.Indexers
{
public class GazelleGames : BaseWebIndexer
{

View File

@@ -6,15 +6,15 @@ using System.Linq;
using System.Text;
using System.Threading.Tasks;
using CsQuery;
using Jackett.Models;
using Jackett.Models.IndexerConfig;
using Jackett.Services.Interfaces;
using Jackett.Utils;
using Jackett.Utils.Clients;
using Jackett.Common.Models;
using Jackett.Common.Models.IndexerConfig;
using Jackett.Common.Services.Interfaces;
using Jackett.Common.Utils;
using Jackett.Common.Utils.Clients;
using Newtonsoft.Json.Linq;
using NLog;
namespace Jackett.Indexers
namespace Jackett.Common.Indexers
{
public class GhostCity : BaseWebIndexer
{

View File

@@ -6,15 +6,15 @@ using System.Linq;
using System.Text;
using System.Threading.Tasks;
using CsQuery;
using Jackett.Models;
using Jackett.Models.IndexerConfig;
using Jackett.Services.Interfaces;
using Jackett.Utils;
using Jackett.Utils.Clients;
using Jackett.Common.Models;
using Jackett.Common.Models.IndexerConfig;
using Jackett.Common.Services.Interfaces;
using Jackett.Common.Utils;
using Jackett.Common.Utils.Clients;
using Newtonsoft.Json.Linq;
using NLog;
namespace Jackett.Indexers
namespace Jackett.Common.Indexers
{
// ReSharper disable once InconsistentNaming
public class GimmePeers : BaseWebIndexer

View File

@@ -1,10 +1,10 @@
using Jackett.Indexers.Abstract;
using Jackett.Models;
using Jackett.Services.Interfaces;
using Jackett.Utils.Clients;
using Jackett.Common.Indexers.Abstract;
using Jackett.Common.Models;
using Jackett.Common.Services.Interfaces;
using Jackett.Common.Utils.Clients;
using NLog;
namespace Jackett.Indexers
namespace Jackett.Common.Indexers
{
public class HDForever : GazelleTracker
{

View File

@@ -1,12 +1,12 @@
using System.Collections.Generic;
using Jackett.Indexers.Abstract;
using Jackett.Models;
using Jackett.Services.Interfaces;
using Jackett.Utils.Clients;
using Jackett.Common.Indexers.Abstract;
using Jackett.Common.Models;
using Jackett.Common.Services.Interfaces;
using Jackett.Common.Utils.Clients;
using Newtonsoft.Json.Linq;
using NLog;
namespace Jackett.Indexers
namespace Jackett.Common.Indexers
{
public class HDOnly : GazelleTracker
{

View File

@@ -7,15 +7,15 @@ using System.Text;
using System.Text.RegularExpressions;
using System.Threading.Tasks;
using CsQuery;
using Jackett.Models;
using Jackett.Models.IndexerConfig;
using Jackett.Services.Interfaces;
using Jackett.Utils;
using Jackett.Utils.Clients;
using Jackett.Common.Models;
using Jackett.Common.Models.IndexerConfig;
using Jackett.Common.Services.Interfaces;
using Jackett.Common.Utils;
using Jackett.Common.Utils.Clients;
using Newtonsoft.Json.Linq;
using NLog;
namespace Jackett.Indexers
namespace Jackett.Common.Indexers
{
public class HDSpace : BaseWebIndexer
{

View File

@@ -5,15 +5,15 @@ using System.Globalization;
using System.Text;
using System.Threading.Tasks;
using CsQuery;
using Jackett.Models;
using Jackett.Models.IndexerConfig;
using Jackett.Services.Interfaces;
using Jackett.Utils;
using Jackett.Utils.Clients;
using Jackett.Common.Models;
using Jackett.Common.Models.IndexerConfig;
using Jackett.Common.Services.Interfaces;
using Jackett.Common.Utils;
using Jackett.Common.Utils.Clients;
using Newtonsoft.Json.Linq;
using NLog;
namespace Jackett.Indexers
namespace Jackett.Common.Indexers
{
public class HDTorrents : BaseWebIndexer
{

View File

@@ -4,16 +4,16 @@ using System.Collections.Specialized;
using System.Globalization;
using System.Text;
using System.Threading.Tasks;
using Jackett.Models;
using Jackett.Models.IndexerConfig;
using Jackett.Services.Interfaces;
using Jackett.Utils;
using Jackett.Utils.Clients;
using Jackett.Common.Models;
using Jackett.Common.Models.IndexerConfig;
using Jackett.Common.Services.Interfaces;
using Jackett.Common.Utils;
using Jackett.Common.Utils.Clients;
using Newtonsoft.Json;
using Newtonsoft.Json.Linq;
using NLog;
namespace Jackett.Indexers
namespace Jackett.Common.Indexers
{
public class Hardbay : BaseWebIndexer
{

View File

@@ -1,22 +1,19 @@
using System;
using System.Collections.Generic;
using System.Globalization;
using System.Net;
using System.Text;
using System.Text.RegularExpressions;
using System.Threading.Tasks;
using System.Web;
using CsQuery;
using Jacket.Common.Helpers;
using Jackett.Models;
using Jackett.Models.IndexerConfig;
using Jackett.Services.Interfaces;
using Jackett.Utils;
using Jackett.Utils.Clients;
using Jackett.Common.Helpers;
using Jackett.Common.Models;
using Jackett.Common.Models.IndexerConfig;
using Jackett.Common.Services.Interfaces;
using Jackett.Common.Utils;
using Newtonsoft.Json.Linq;
using NLog;
namespace Jackett.Indexers
namespace Jackett.Common.Indexers
{
public class Hebits : BaseWebIndexer
{

View File

@@ -1,11 +1,11 @@
using System;
using System.Collections.Generic;
using System.Threading.Tasks;
using Jackett.Models;
using Jackett.Models.IndexerConfig;
using Jackett.Common.Models;
using Jackett.Common.Models.IndexerConfig;
using Newtonsoft.Json.Linq;
namespace Jackett.Indexers
namespace Jackett.Common.Indexers
{
public class IndexerResult
{

View File

@@ -5,17 +5,16 @@ using System.Linq;
using System.Net;
using System.Text;
using System.Threading.Tasks;
using System.Web;
using CsQuery;
using Jackett.Models;
using Jackett.Models.IndexerConfig;
using Jackett.Services.Interfaces;
using Jackett.Utils;
using Jackett.Utils.Clients;
using Jackett.Common.Models;
using Jackett.Common.Models.IndexerConfig;
using Jackett.Common.Services.Interfaces;
using Jackett.Common.Utils;
using Jackett.Common.Utils.Clients;
using Newtonsoft.Json.Linq;
using NLog;
namespace Jackett.Indexers
namespace Jackett.Common.Indexers
{
public class IPTorrents : BaseWebIndexer
{

View File

@@ -5,17 +5,15 @@ using System.Linq;
using System.Net;
using System.Text;
using System.Threading.Tasks;
using System.Web;
using CsQuery;
using Jackett.Models;
using Jackett.Models.IndexerConfig;
using Jackett.Services.Interfaces;
using Jackett.Utils;
using Jackett.Utils.Clients;
using Jackett.Common.Models;
using Jackett.Common.Models.IndexerConfig;
using Jackett.Common.Services.Interfaces;
using Jackett.Common.Utils;
using Newtonsoft.Json.Linq;
using NLog;
namespace Jackett.Indexers
namespace Jackett.Common.Indexers
{
public class ImmortalSeed : BaseWebIndexer
{

View File

@@ -6,19 +6,17 @@ using System.Linq;
using System.Text;
using System.Text.RegularExpressions;
using System.Threading.Tasks;
using Jackett.Models;
using Jackett.Models.IndexerConfig;
using Jackett.Utils;
using Jackett.Utils.Clients;
using Jackett.Services.Interfaces;
using AngleSharp.Dom;
using AngleSharp.Parser.Html;
using Jackett.Common.Models;
using Jackett.Common.Models.IndexerConfig;
using Jackett.Common.Services.Interfaces;
using Jackett.Common.Utils;
using Jackett.Common.Utils.Clients;
using Newtonsoft.Json.Linq;
using NLog;
namespace Jackett.Indexers
namespace Jackett.Common.Indexers
{
class LostFilm : BaseWebIndexer
{

View File

@@ -2,15 +2,15 @@
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Jackett.Models;
using Jackett.Models.IndexerConfig;
using Jackett.Services.Interfaces;
using Jackett.Utils;
using Jackett.Utils.Clients;
using Jackett.Common.Models;
using Jackett.Common.Models.IndexerConfig;
using Jackett.Common.Services.Interfaces;
using Jackett.Common.Utils;
using Jackett.Common.Utils.Clients;
using Newtonsoft.Json.Linq;
using NLog;
namespace Jackett.Indexers.Meta
namespace Jackett.Common.Indexers.Meta
{
public abstract class BaseMetaIndexer : BaseWebIndexer
{

Some files were not shown because too many files have changed in this diff Show More