11
11
using AniDBAPI . Commands ;
12
12
using NHibernate ;
13
13
using NLog ;
14
+ using NutzCode . CloudFileSystem ;
14
15
using Shoko . Commons . Properties ;
15
16
using Shoko . Models . Enums ;
16
17
using Shoko . Models . Interfaces ;
19
20
using Shoko . Server . Databases ;
20
21
using Shoko . Server . Extensions ;
21
22
using Shoko . Server . Models ;
23
+ using Shoko . Server . Providers . AniDB ;
22
24
using Shoko . Server . Repositories ;
23
25
using Shoko . Server . Repositories . NHibernate ;
24
26
using Shoko . Server . Settings ;
@@ -41,6 +43,7 @@ public class AniDBHelper
41
43
private IPEndPoint remoteIpEndPoint ;
42
44
private Socket soUdp ;
43
45
private string curSessionID = string . Empty ;
46
+ private string curImageServerUrl ;
44
47
45
48
private string userName = string . Empty ;
46
49
private string password = string . Empty ;
@@ -56,6 +59,29 @@ public class AniDBHelper
56
59
public DateTime ? HttpBanTime { get ; set ; }
57
60
public DateTime ? UdpBanTime { get ; set ; }
58
61
62
+ public string ImageServerUrl {
63
+ get {
64
+ if ( string . IsNullOrWhiteSpace ( curImageServerUrl ) )
65
+ {
66
+ if ( ! Login ( ) )
67
+ {
68
+ //Don't keep trying after a failed login set to constant
69
+ curImageServerUrl = Constants . URLS . AniDB_Images_Domain ;
70
+ }
71
+ else
72
+ {
73
+ if ( string . IsNullOrWhiteSpace ( curImageServerUrl ) )
74
+ {
75
+ //The API call did not return anything useful, don't try again.
76
+ curImageServerUrl = Constants . URLS . AniDB_Images_Domain ;
77
+ }
78
+ }
79
+ }
80
+ var url = string . Format ( Constants . URLS . AniDB_Images , curImageServerUrl ) ;
81
+ return url ;
82
+ }
83
+ }
84
+
59
85
private bool _isHttpBanned ;
60
86
private bool _isUdpBanned ;
61
87
@@ -394,6 +420,7 @@ public bool Login()
394
420
break ;
395
421
case AniDBUDPResponseCode . LoggedIn :
396
422
curSessionID = login . SessionID ;
423
+ curImageServerUrl = login . ImageServerUrl ;
397
424
isLoggedOn = true ;
398
425
IsInvalidSession = false ;
399
426
return true ;
0 commit comments