Fix Headphones Download Auth, Add Special Parsing (#152)
* Add Secondary Backup Parsing Method if Regex Fails * Add BasicAuth info to release for nzb download handlingpull/154/head
parent
ba3d6362af
commit
ded7574227
@ -0,0 +1,23 @@
|
|||||||
|
using System;
|
||||||
|
using System.Text;
|
||||||
|
using NzbDrone.Core.Indexers.Newznab;
|
||||||
|
|
||||||
|
namespace NzbDrone.Core.Indexers.Headphones
|
||||||
|
{
|
||||||
|
public class HeadphonesRssParser : NewznabRssParser
|
||||||
|
{
|
||||||
|
public const string ns = "{http://www.newznab.com/DTD/2010/feeds/attributes/}";
|
||||||
|
public HeadphonesSettings Settings { get; set; }
|
||||||
|
|
||||||
|
public HeadphonesRssParser()
|
||||||
|
{
|
||||||
|
PreferredEnclosureMimeTypes = UsenetEnclosureMimeTypes;
|
||||||
|
UseEnclosureUrl = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
protected override string GetBasicAuth()
|
||||||
|
{
|
||||||
|
return Convert.ToBase64String(Encoding.GetEncoding("ISO-8859-1").GetBytes($"{Settings.Username}:{Settings.Password}")); ;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in new issue