-
Notifications
You must be signed in to change notification settings - Fork 102
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* new route `/api/v3/monitor/data/?oauth_token=xxx&blocksize=16ko` * add `unit` parameter for size restults ('', 'o', ''ko', 'mo', 'go'), default '' (=octets, same as 'o') * new units "octet", "octets" * fix round error (don't sum rounded values: round the real sum) * add infos about downloads; round sizes to 2 decimals * add `...&details=1` url parameter to get values by collection and subdef name * add column size in LazaretFiles table add command bin/maintenance lazaret:set_sizes * add api monitor data by databox * fix size
- Loading branch information
Showing
6 changed files
with
429 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
59 changes: 59 additions & 0 deletions
59
lib/Alchemy/Phrasea/Command/Maintenance/LazaretFilesSetSizeCommand.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
<?php | ||
|
||
namespace Alchemy\Phrasea\Command\Maintenance; | ||
|
||
use Alchemy\Phrasea\Command\Command; | ||
use Alchemy\Phrasea\Model\Entities\LazaretFile; | ||
use Alchemy\Phrasea\Model\Repositories\LazaretFileRepository; | ||
use Doctrine\ORM\EntityManager; | ||
use Symfony\Component\Console\Input\InputInterface; | ||
use Symfony\Component\Console\Input\InputOption; | ||
use Symfony\Component\Console\Output\OutputInterface; | ||
|
||
class LazaretFilesSetSizeCommand extends Command | ||
{ | ||
public function __construct() | ||
{ | ||
parent::__construct('lazaret:set_sizes'); | ||
|
||
$this | ||
->setDescription('Set the null size in the LazaretFiles table') | ||
->addOption('dry', null, InputOption::VALUE_NONE, 'dry run, count') | ||
|
||
->setHelp(''); | ||
} | ||
|
||
public function doExecute(InputInterface $input, OutputInterface $output) | ||
{ | ||
/** @var LazaretFileRepository $lazaretRepository */ | ||
$lazaretRepository = $this->container['repo.lazaret-files']; | ||
|
||
$lazaretNullSizes = $lazaretRepository->findBy(['size' => null]); | ||
|
||
$path = $this->container['tmp.lazaret.path']; | ||
/** @var EntityManager $em */ | ||
$em = $this->container['orm.em']; | ||
|
||
if (!$input->getOption('dry')) { | ||
/** @var LazaretFile $lazaretNullSize */ | ||
foreach ($lazaretNullSizes as $lazaretNullSize) { | ||
try { | ||
$lazaretFileName = $path .'/'.$lazaretNullSize->getFilename(); | ||
$media = $this->container->getMediaFromUri($lazaretFileName); | ||
$size = $media->getFile()->getSize(); | ||
} catch (\Exception $e) { | ||
$size = 0; | ||
} | ||
|
||
$lazaretNullSize->setSize($size); | ||
$em->persist($lazaretNullSize); | ||
} | ||
|
||
$em->flush(); | ||
|
||
$output->writeln(sprintf("%d LazaretFiles done!", count($lazaretNullSizes))); | ||
} else { | ||
$output->writeln(sprintf("%d LazaretFiles to update!", count($lazaretNullSizes))); | ||
} | ||
} | ||
} |
Oops, something went wrong.