@@ -21,9 +21,9 @@ |
||
21 | 21 | |
22 | 22 | namespace nntmux\http; |
23 | 23 | |
24 | -use App\Models\Group; |
|
25 | -use App\Models\Category; |
|
26 | 24 | use App\Models\AudioData; |
25 | +use App\Models\Category; |
|
26 | +use App\Models\Group; |
|
27 | 27 | use nntmux\utility\Utility; |
28 | 28 | |
29 | 29 | /** |
@@ -2,9 +2,9 @@ |
||
2 | 2 | |
3 | 3 | namespace nntmux\http; |
4 | 4 | |
5 | +use App\Models\Category; |
|
5 | 6 | use nntmux\NZB; |
6 | 7 | use nntmux\Releases; |
7 | -use App\Models\Category; |
|
8 | 8 | |
9 | 9 | /** |
10 | 10 | * Class RSS -- contains specific functions for RSS. |
@@ -2,15 +2,14 @@ |
||
2 | 2 | |
3 | 3 | namespace nntmux\libraries; |
4 | 4 | |
5 | -use nntmux\Nfo; |
|
6 | -use nntmux\NZB; |
|
7 | -use nntmux\NNTP; |
|
8 | -use nntmux\db\DB; |
|
9 | -use App\Models\Tmux; |
|
10 | -use nntmux\ColorCLI; |
|
11 | -use App\Models\Release; |
|
12 | 5 | use App\Models\Settings; |
6 | +use App\Models\Tmux; |
|
13 | 7 | use Illuminate\Support\Carbon; |
8 | +use nntmux\ColorCLI; |
|
9 | +use nntmux\NNTP; |
|
10 | +use nntmux\NZB; |
|
11 | +use nntmux\Nfo; |
|
12 | +use nntmux\db\DB; |
|
14 | 13 | use nntmux\processing\PostProcess; |
15 | 14 | |
16 | 15 | /** |
@@ -2,22 +2,22 @@ |
||
2 | 2 | |
3 | 3 | namespace nntmux; |
4 | 4 | |
5 | -use nntmux\db\DB; |
|
6 | -use Tmdb\ApiToken; |
|
7 | -use aharen\OMDbAPI; |
|
8 | -use GuzzleHttp\Client; |
|
9 | -use App\Models\Release; |
|
10 | 5 | use App\Models\Category; |
11 | -use App\Models\Settings; |
|
12 | 6 | use App\Models\MovieInfo; |
13 | -use nntmux\utility\Utility; |
|
7 | +use App\Models\Release; |
|
8 | +use App\Models\Settings; |
|
9 | +use GuzzleHttp\Client; |
|
10 | +use GuzzleHttp\Exception\RequestException; |
|
14 | 11 | use Illuminate\Support\Carbon; |
15 | -use nntmux\libraries\FanartTV; |
|
12 | +use Illuminate\Support\Facades\Cache; |
|
13 | +use Tmdb\ApiToken; |
|
16 | 14 | use Tmdb\Client as TmdbClient; |
17 | -use nntmux\processing\tv\TraktTv; |
|
18 | 15 | use Tmdb\Exception\TmdbApiException; |
19 | -use Illuminate\Support\Facades\Cache; |
|
20 | -use GuzzleHttp\Exception\RequestException; |
|
16 | +use aharen\OMDbAPI; |
|
17 | +use nntmux\db\DB; |
|
18 | +use nntmux\libraries\FanartTV; |
|
19 | +use nntmux\processing\tv\TraktTv; |
|
20 | +use nntmux\utility\Utility; |
|
21 | 21 | |
22 | 22 | /** |
23 | 23 | * Class Movie. |
@@ -2,20 +2,20 @@ |
||
2 | 2 | |
3 | 3 | namespace nntmux; |
4 | 4 | |
5 | -use nntmux\db\DB; |
|
6 | 5 | use ApaiIO\ApaiIO; |
6 | +use ApaiIO\Configuration\GenericConfiguration; |
|
7 | +use ApaiIO\Operations\Search; |
|
8 | +use ApaiIO\Request\GuzzleRequest; |
|
9 | +use ApaiIO\ResponseTransformer\XmlToSimpleXmlObject; |
|
10 | +use App\Models\Category; |
|
7 | 11 | use App\Models\Genre; |
8 | -use GuzzleHttp\Client; |
|
12 | +use App\Models\MusicInfo; |
|
9 | 13 | use App\Models\Release; |
10 | -use App\Models\Category; |
|
11 | 14 | use App\Models\Settings; |
12 | -use App\Models\MusicInfo; |
|
13 | -use ApaiIO\Operations\Search; |
|
15 | +use GuzzleHttp\Client; |
|
14 | 16 | use Illuminate\Support\Carbon; |
15 | -use ApaiIO\Request\GuzzleRequest; |
|
16 | 17 | use Illuminate\Support\Facades\Cache; |
17 | -use ApaiIO\Configuration\GenericConfiguration; |
|
18 | -use ApaiIO\ResponseTransformer\XmlToSimpleXmlObject; |
|
18 | +use nntmux\db\DB; |
|
19 | 19 | |
20 | 20 | /** |
21 | 21 | * Class Music. |
@@ -2,14 +2,14 @@ |
||
2 | 2 | |
3 | 3 | namespace nntmux; |
4 | 4 | |
5 | -use nntmux\db\DB; |
|
5 | +use App\Models\Category; |
|
6 | 6 | use App\Models\Group; |
7 | 7 | use App\Models\Predb; |
8 | 8 | use App\Models\Release; |
9 | -use App\Models\Category; |
|
10 | -use nntmux\utility\Utility; |
|
11 | 9 | use Illuminate\Support\Carbon; |
10 | +use nntmux\db\DB; |
|
12 | 11 | use nntmux\processing\PostProcess; |
12 | +use nntmux\utility\Utility; |
|
13 | 13 | |
14 | 14 | /** |
15 | 15 | * Class NameFixer. |
@@ -4,12 +4,12 @@ |
||
4 | 4 | |
5 | 5 | use App\Models\Group; |
6 | 6 | use App\Models\Release; |
7 | -use App\Models\Settings; |
|
8 | 7 | use App\Models\ReleaseNfo; |
9 | -use nntmux\utility\Utility; |
|
10 | -use dariusiii\rarinfo\SfvInfo; |
|
8 | +use App\Models\Settings; |
|
11 | 9 | use dariusiii\rarinfo\Par2Info; |
10 | +use dariusiii\rarinfo\SfvInfo; |
|
12 | 11 | use nntmux\processing\PostProcess; |
12 | +use nntmux\utility\Utility; |
|
13 | 13 | |
14 | 14 | /** |
15 | 15 | * Class Nfo |
@@ -2,12 +2,12 @@ |
||
2 | 2 | |
3 | 3 | namespace nntmux\processing\post; |
4 | 4 | |
5 | -use nntmux\NZB; |
|
6 | -use nntmux\db\DB; |
|
7 | -use nntmux\ColorCLI; |
|
5 | +use App\Models\AnidbEpisode; |
|
8 | 6 | use App\Models\Category; |
9 | 7 | use App\Models\Settings; |
10 | -use App\Models\AnidbEpisode; |
|
8 | +use nntmux\ColorCLI; |
|
9 | +use nntmux\NZB; |
|
10 | +use nntmux\db\DB; |
|
11 | 11 | use nntmux\db\populate\AniDB as PaDb; |
12 | 12 | |
13 | 13 | class AniDB |
@@ -2,25 +2,25 @@ |
||
2 | 2 | |
3 | 3 | namespace nntmux\processing\post; |
4 | 4 | |
5 | -use nntmux\Nfo; |
|
6 | -use nntmux\NZB; |
|
7 | -use nntmux\NNTP; |
|
8 | -use nntmux\db\DB; |
|
9 | -use nntmux\ColorCLI; |
|
10 | -use nntmux\Releases; |
|
5 | +use App\Models\Category; |
|
11 | 6 | use App\Models\Group; |
12 | -use nntmux\NameFixer; |
|
13 | -use nntmux\Categorize; |
|
14 | 7 | use App\Models\Release; |
15 | -use App\Models\Category; |
|
8 | +use App\Models\ReleaseFile; |
|
16 | 9 | use App\Models\Settings; |
10 | +use dariusiii\rarinfo\ArchiveInfo; |
|
11 | +use dariusiii\rarinfo\Par2Info; |
|
12 | +use nntmux\Categorize; |
|
13 | +use nntmux\ColorCLI; |
|
14 | +use nntmux\NNTP; |
|
15 | +use nntmux\NZB; |
|
16 | +use nntmux\NameFixer; |
|
17 | +use nntmux\Nfo; |
|
17 | 18 | use nntmux\ReleaseExtra; |
18 | 19 | use nntmux\ReleaseImage; |
20 | +use nntmux\Releases; |
|
19 | 21 | use nntmux\SphinxSearch; |
20 | -use App\Models\ReleaseFile; |
|
22 | +use nntmux\db\DB; |
|
21 | 23 | use nntmux\utility\Utility; |
22 | -use dariusiii\rarinfo\Par2Info; |
|
23 | -use dariusiii\rarinfo\ArchiveInfo; |
|
24 | 24 | |
25 | 25 | class ProcessAdditional |
26 | 26 | { |