2016-04-19 13:02:50 -04:00
|
|
|
#!/usr/bin/env php
|
2016-12-20 12:58:37 -05:00
|
|
|
<?php declare(strict_types=1);
|
2016-04-19 13:02:50 -04:00
|
|
|
|
2017-03-27 10:09:45 -04:00
|
|
|
// Set up autoloader for third-party dependencies
|
2018-01-18 16:21:45 -05:00
|
|
|
require_once __DIR__ . '/vendor/autoload.php';
|
2017-03-27 10:09:45 -04:00
|
|
|
|
|
|
|
use Aviat\AnimeClient\Command;
|
2018-01-31 15:44:48 -05:00
|
|
|
use ConsoleKit\Console;
|
2016-04-19 13:02:50 -04:00
|
|
|
|
|
|
|
$_SERVER['HTTP_HOST'] = 'localhost';
|
|
|
|
|
2017-04-17 16:13:36 -04:00
|
|
|
// -----------------------------------------------------------------------------
|
2016-04-19 13:02:50 -04:00
|
|
|
// Start console script
|
2017-04-17 16:13:36 -04:00
|
|
|
// -----------------------------------------------------------------------------
|
2018-01-18 16:21:45 -05:00
|
|
|
try
|
|
|
|
{
|
2018-01-31 15:44:48 -05:00
|
|
|
(new Console([
|
2018-01-18 16:21:45 -05:00
|
|
|
'cache:clear' => Command\CacheClear::class,
|
2018-01-31 15:44:48 -05:00
|
|
|
'cache:refresh' => Command\CachePrime::class,
|
2018-11-01 22:15:20 -04:00
|
|
|
'clear:cache' => Command\CacheClear::class,
|
|
|
|
'clear:thumbnails' => Command\ClearThumbnails::class,
|
|
|
|
'refresh:cache' => Command\CachePrime::class,
|
|
|
|
'refresh:thumbnails' => Command\UpdateThumbnails::class,
|
2018-10-10 16:04:58 -04:00
|
|
|
'regenerate-thumbnails' => Command\UpdateThumbnails::class,
|
2018-09-27 16:45:12 -04:00
|
|
|
'lists:sync' => Command\SyncLists::class,
|
2018-01-18 16:21:45 -05:00
|
|
|
]))->run();
|
|
|
|
}
|
|
|
|
catch (\Exception $e)
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
2016-04-19 13:02:50 -04:00
|
|
|
|