Merge branch 'dev-master'

This commit is contained in:
Simon Vieille 2015-11-18 20:53:52 +01:00
commit b2991e6a9f
6 changed files with 118 additions and 31 deletions

View file

@ -182,6 +182,8 @@ Help:
Search torrents.
Usage: torrents:search QUERY [OPTIONS]
Sort values \"seed\", \"leech\", \"size\", \"name\", \"id\"
--terms does not work (API bug)
```
@ -274,7 +276,8 @@ Help:
Usage: torrents:search:top [OPTIONS]
Period values: "100", "day", "week", "month"
Period values \"100\" (default), \"day\", \"week\", \"month\"
Sort values \"seed\", \"leech\", \"size\", \"name\", \"id\"
```

View file

@ -12,6 +12,7 @@ use Api\ConfigLoader;
use Api\ClientResponse;
use Api\ClientException;
use Helper\Formater;
use Helper\Render;
class TorrentsSearchCommand extends Command
{
@ -26,12 +27,16 @@ class TorrentsSearchCommand extends Command
->addOption('sub-category', 's', InputOption::VALUE_REQUIRED, 'Filter by sub-category ID')
->addOption('category', 'c', InputOption::VALUE_REQUIRED, 'Filter by category ID')
->addOption('terms', 't', InputOption::VALUE_REQUIRED, 'Filter by terms IDs (separated by ",")')
->addOption('sort', null, InputOption::VALUE_REQUIRED, 'Sort')
->addOption('asc', null, InputOption::VALUE_NONE, 'Ascending sort')
->setHelp("<info>%command.name%</info>
Search torrents.
Usage: <comment>torrents:search</comment> <info>QUERY</info> [OPTIONS]
<info>Sort values</info> \"seed\", \"leech\", \"size\", \"name\", \"id\"
<error>--terms does not work (API bug)</error>");
}
@ -84,8 +89,28 @@ Usage: <comment>torrents:search</comment> <info>QUERY</info> [OPTIONS]
}
$response = $this->searchTorrents($client, $input, $termsTree);
if ($response->hasError()) {
$output->writeln(sprintf(
'<error>%s</error> <comment>(%d)</comment>',
$response->getErrorMessage(),
$response->getErrorCode()
));
$this->showResults($response, $output);
return;
}
$options = [];
if ($input->getOption('sort')) {
$options['sort'] = $input->getOption('sort');
}
if ($input->getOption('asc')) {
$options['asc'] = true;
}
Render::torrents($response->getData()['torrents'], $output, $options);
} catch (ClientException $e) {
$output->writeln(sprintf('An error occured. <error>%s</error>', $e->getMessage()));
}

View file

@ -20,6 +20,8 @@ class TorrentsSearchMoviesCommand extends Command
->addOption('offset', 'o', InputOption::VALUE_REQUIRED, 'Page number')
->addOption('limit', 'l', InputOption::VALUE_REQUIRED, 'Number of results per page')
->addOption('terms', 't', InputOption::VALUE_REQUIRED, 'Filter by terms IDs (separated by ",")')
->addOption('sort', null, InputOption::VALUE_REQUIRED, 'Sort')
->addOption('asc', null, InputOption::VALUE_NONE, 'Ascending sort')
->setHelp("<info>%command.name%</info>
Search movies.
@ -37,7 +39,7 @@ Usage: <comment>torrents:search:movies</comment> <info>QUERY</info> [OPTIONS]
'--sub-category' => 631,
);
foreach (['offset', 'limit', 'terms'] as $p) {
foreach (['offset', 'limit', 'terms', 'sort', 'asc'] as $p) {
$value = $input->getOption($p);
if (null !== $value) {

View file

@ -20,6 +20,8 @@ class TorrentsSearchSeriesCommand extends Command
->addOption('offset', 'o', InputOption::VALUE_REQUIRED, 'Page number')
->addOption('limit', 'l', InputOption::VALUE_REQUIRED, 'Number of results per page')
->addOption('terms', 't', InputOption::VALUE_REQUIRED, 'Filter by terms IDs (separated by ",")')
->addOption('sort', null, InputOption::VALUE_REQUIRED, 'Sort')
->addOption('asc', null, InputOption::VALUE_NONE, 'Ascending sort')
->setHelp("<info>%command.name%</info>
Search series.
@ -37,7 +39,7 @@ Usage: <comment>torrents:search:series</comment> <info>QUERY</info> [OPTIONS]
'--sub-category' => 433,
);
foreach (['offset', 'limit', 'terms'] as $p) {
foreach (['offset', 'limit', 'terms', 'sort', 'asc'] as $p) {
$value = $input->getOption($p);
if (null !== $value) {

View file

@ -10,6 +10,7 @@ use Api\Client;
use Api\ConfigLoader;
use Api\ClientResponse;
use Api\ClientException;
use Helper\Render;
class TorrentsTopCommand extends Command
{
@ -19,13 +20,17 @@ class TorrentsTopCommand extends Command
->setName('torrents:top')
->setDescription('Top torrents')
->addOption('period', 'p', InputOption::VALUE_REQUIRED, 'Period')
->addOption('sort', null, InputOption::VALUE_REQUIRED, 'Sort')
->addOption('asc', null, InputOption::VALUE_NONE, 'Ascending sort')
->setHelp("<info>%command.name%</info>
Show top torrents.
Usage: <comment>torrents:search:top</comment> [OPTIONS]
<info>Period values: \"100\" (default), \"day\", \"week\", \"month\"</info>");
<info>Period values</info> \"100\" (default), \"day\", \"week\", \"month\"
<info>Sort values</info> \"seed\", \"leech\", \"size\", \"name\", \"id\"
");
}
protected function execute(InputInterface $input, OutputInterface $output)
@ -49,35 +54,30 @@ Usage: <comment>torrents:search:top</comment> [OPTIONS]
}
$response = $client->getTopTorrents($period);
if ($response->hasError()) {
$output->writeln(sprintf(
'<error>%s</error> <comment>(%d)</comment>',
$response->getErrorMessage(),
$response->getErrorCode()
));
return $this->showResults($response, $output);
return;
}
$options = [];
if ($input->getOption('sort')) {
$options['sort'] = $input->getOption('sort');
}
if ($input->getOption('asc')) {
$options['asc'] = true;
}
Render::torrents($response->getData(), $output, $options);
} catch (ClientException $e) {
$output->writeln(sprintf('An error occured. <error>%s</error>', $e->getMessage()));
}
}
protected function showResults(ClientResponse $response, OutputInterface $output)
{
if ($response->hasError()) {
$output->writeln(sprintf(
'<error>%s</error> <comment>(%d)</comment>',
$response->getErrorMessage(),
$response->getErrorCode()
));
return;
}
$output->writeln(' SEED LEECH ID NAME');
foreach ($response->getData() as $torrent) {
$output->writeln(sprintf(
'[<info>%4d</info><comment>%6d</comment>] %9d %s',
$torrent['seeders'],
$torrent['leechers'],
$torrent['id'],
$torrent['name']
));
}
}
}

55
src/Helper/Render.php Normal file
View file

@ -0,0 +1,55 @@
<?php
namespace Helper;
use Symfony\Component\Console\Output\OutputInterface;
use InvalidArgumentException;
/**
* Class Render
* @author Simon Vieille <simon@deblan.fr>
*/
class Render
{
public static function torrents(array $torrents, OutputInterface $output, array $options = [])
{
if (empty($torrents)) {
return;
}
if (isset($options['sort'])) {
$sort = $options['sort'];
if (!in_array($sort, ['seed', 'leech', 'size', 'id', 'name'])) {
throw new InvalidArgumentException('Invalid option "sort".');
}
$sort = str_replace(['seed', 'leech'], ['seeders', 'leechers'], $sort);
$sortDatas = [];
foreach ($torrents as $torrent) {
$sortDatas[] = $torrent[$sort];
}
array_multisort(
$sortDatas,
isset($options['asc']) ? SORT_ASC : SORT_DESC,
$sort === 'name' ? SORT_STRING : SORT_NUMERIC,
$torrents
);
}
$output->writeln(' SEED LEECH SIZE ID NAME');
foreach ($torrents as $torrent) {
$output->writeln(sprintf(
'[<info>%4d</info><comment>%6d</comment>] [%8s] %7d %s',
$torrent['seeders'],
$torrent['leechers'],
Formater::humanSize((int) $torrent['size']),
$torrent['id'],
$torrent['name']
));
}
}
}