2015-10-23 14:11:44 -07:00
|
|
|
<?php
|
|
|
|
/*
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace Sikofitt\Hathor\Command;
|
|
|
|
|
|
|
|
use Symfony\Component\Finder\Finder;
|
|
|
|
use Symfony\Component\Console\Input\InputArgument;
|
|
|
|
use Symfony\Component\Console\Input\InputOption;
|
|
|
|
use Symfony\Component\Console\Input\InputInterface;
|
|
|
|
use Symfony\Component\Console\Output\OutputInterface;
|
|
|
|
use Symfony\Component\Console\Helper\ProgressBar;
|
|
|
|
use Symfony\Component\Console\Command\Command as BaseCommand;
|
|
|
|
use Sikofitt\Hathor\Common\Music\ID3;
|
|
|
|
|
2015-10-23 14:14:29 -07:00
|
|
|
class ScannerCommand extends BaseCommand
|
|
|
|
{
|
2015-10-23 14:11:44 -07:00
|
|
|
|
|
|
|
protected function configure()
|
|
|
|
{
|
|
|
|
$this
|
|
|
|
->setName('scan')
|
|
|
|
->setDescription('Scans Music')
|
2015-10-23 14:14:29 -07:00
|
|
|
->addArgument('file', InputArgument::OPTIONAL, 'the file to work on');
|
2015-10-23 14:11:44 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function execute(InputInterface $input, OutputInterface $output)
|
|
|
|
{
|
|
|
|
$output->writeln("Please wait ...");
|
|
|
|
$finder = new Finder();
|
|
|
|
$finder
|
|
|
|
->files()
|
|
|
|
->in("/home/eric/Music")
|
|
|
|
->ignoreDotFiles(true)
|
|
|
|
->ignoreUnreadableDirs(true)
|
|
|
|
->ignoreVCS(true)
|
|
|
|
->sortByType()
|
|
|
|
->name("*.mp3")
|
|
|
|
->name("*.mp4")
|
|
|
|
->name("*.ogg")
|
|
|
|
->name("*.wma")
|
|
|
|
->name("*.mp2");
|
|
|
|
$progress = new ProgressBar($output, $finder->count());
|
|
|
|
$progress->setFormat("debug");
|
|
|
|
$progress->start();
|
2015-10-23 14:14:29 -07:00
|
|
|
foreach ($finder as $file) {
|
2015-10-23 14:11:44 -07:00
|
|
|
$progress->setOverwrite(true);
|
|
|
|
$progress->setMessage($file->getFilename());
|
|
|
|
$progress->advance();
|
|
|
|
}
|
|
|
|
$progress->finish();
|
|
|
|
$getID3 = new ID3;
|
|
|
|
//$getID3->setFile($input->getArgument('file'))->getFileData()->dumpAll();
|
|
|
|
|
|
|
|
}
|
2015-10-23 14:14:29 -07:00
|
|
|
}
|