Skip to content
Extraits de code Groupes Projets
Valider cba1a60e rédigé par mattab's avatar mattab
Parcourir les fichiers

Add new piwik-domain generic option to the console.

parent d78a9c5a
Aucune branche associée trouvée
Aucune étiquette associée trouvée
Aucune requête de fusion associée trouvée
......@@ -90,12 +90,12 @@ class CliMulti {
}
}
private function buildCommand($query, $outputFile)
private function buildCommand($hostname, $query, $outputFile)
{
$bin = $this->findPhpBinary();
return sprintf('%s -q %s/console climulti:request %s > %s 2>&1 &',
$bin, PIWIK_INCLUDE_PATH, escapeshellarg($query), $outputFile);
return sprintf('%s -q %s/console climulti:request --piwik-domain=%s %s > %s 2>&1 &',
$bin, PIWIK_INCLUDE_PATH, escapeshellarg($hostname), escapeshellarg($query), $outputFile);
}
private function getResponse()
......@@ -223,8 +223,10 @@ class CliMulti {
$url = $this->appendTestmodeParamToUrlIfNeeded($url);
$query = Url::getQueryFromUrl($url, array('pid' => $cmdId));
$command = $this->buildCommand($query, $output->getPathToFile());
$hostname = parse_url($url, PHP_URL_HOST);
$command = $this->buildCommand($hostname, $query, $output->getPathToFile());
Log::debug($command);
shell_exec($command);
}
......
......@@ -9,6 +9,7 @@
namespace Piwik\CliMulti;
use Piwik\Plugin\ConsoleCommand;
use Piwik\Url;
use Symfony\Component\Console\Input\InputArgument;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Input\InputOption;
......@@ -26,13 +27,19 @@ class RequestCommand extends ConsoleCommand
{
$this->setName('climulti:request');
$this->setDescription('Parses and executes the given query. See Piwik\CliMulti. Intended only for system usage.');
$this->addArgument('url', InputArgument::OPTIONAL, 'Piwik URL, for instance "module=API&method=API.getPiwikVersion&token_auth=123456789"', '');
$this->addArgument('url', null, InputOption::VALUE_REQUIRED, 'Piwik URL query string, for instance: "module=API&method=API.getPiwikVersion&token_auth=123456789"');
}
protected function execute(InputInterface $input, OutputInterface $output)
{
$_GET = array();
FrontController::assignCliParametersToRequest();
$hostname = $input->getOption('piwik-domain');
Url::setHost($hostname);
$url = $input->getArgument('url');
$query = Url::getQueryStringFromUrl($url);
parse_str($query, $_GET);
if ($this->isTestModeEnabled()) {
Config::getInstance()->setTestEnvironment();
......
......@@ -9,12 +9,17 @@
namespace Piwik;
use Symfony\Component\Console\Application;
use Symfony\Component\Console\Input\InputOption;
class Console
{
public function run()
{
$console = new Application();
$option = new InputOption('piwik-domain', null, InputOption::VALUE_OPTIONAL, 'Piwik URL (protocol and domain) eg. "http://piwik.example.org"');
$console->getDefinition()->addOption($option);
$commands = $this->getAvailableCommands();
foreach ($commands as $command) {
......
......@@ -434,18 +434,28 @@ class Url
return $query;
}
static public function getQueryStringFromUrl($url)
{
return parse_url($url, PHP_URL_QUERY);
}
static public function getHostFromUrl($url)
{
return parse_url($url, PHP_URL_HOST);
}
/**
* Returns the query part from any valid url and adds additional parameters to the query part if needed.
*
* @param string $aUrl Any url eg `"http://example.com/piwik/?foo=bar"`
* @param string $url Any url eg `"http://example.com/piwik/?foo=bar"`
* @param array $additionalParamsToAdd If not empty the given parameters will be added to the query.
*
* @return string eg. `"foo=bar&foo2=bar2"`
* @api
*/
static public function getQueryFromUrl($aUrl, array $additionalParamsToAdd)
static public function getQueryFromUrl($url, array $additionalParamsToAdd)
{
$url = @parse_url($aUrl);
$url = @parse_url($url);
$query = '';
if (!empty($url['query'])) {
......
......@@ -13,15 +13,6 @@ namespace Piwik;
use Exception;
/*
Ideas for improvements:
- Known limitation: when adding new segments to preprocess, script will assume that data was processed for this segment in the past
Workaround: run --force-all-websites --force-all-periods=10000000 to archive everything.
- Possible performance improvement
- Run first websites which are faster to process (weighted by visits and/or time to generate the last daily report)
This would make sure that huge websites do not 'block' processing of smaller websites' reports.
*/
if (!defined('PIWIK_INCLUDE_PATH')) {
define('PIWIK_INCLUDE_PATH', realpath(dirname(__FILE__) . "/../.."));
}
......
0% Chargement en cours ou .
You are about to add 0 people to the discussion. Proceed with caution.
Terminez d'abord l'édition de ce message.
Veuillez vous inscrire ou vous pour commenter