Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/CustomPiwikJs/Diagnostic/PiwikJsCheck.php')
-rw-r--r--plugins/CustomPiwikJs/Diagnostic/PiwikJsCheck.php44
1 files changed, 36 insertions, 8 deletions
diff --git a/plugins/CustomPiwikJs/Diagnostic/PiwikJsCheck.php b/plugins/CustomPiwikJs/Diagnostic/PiwikJsCheck.php
index 3766dc650b..b952214cd7 100644
--- a/plugins/CustomPiwikJs/Diagnostic/PiwikJsCheck.php
+++ b/plugins/CustomPiwikJs/Diagnostic/PiwikJsCheck.php
@@ -12,7 +12,9 @@ use Piwik\Filesystem;
use Piwik\Plugins\CustomPiwikJs\File;
use Piwik\Plugins\Diagnostics\Diagnostic\Diagnostic;
use Piwik\Plugins\Diagnostics\Diagnostic\DiagnosticResult;
+use Piwik\SettingsPiwik;
use Piwik\SettingsServer;
+use Piwik\Tracker\TrackerCodeGenerator;
use Piwik\Translation\Translator;
/**
@@ -32,23 +34,49 @@ class PiwikJsCheck implements Diagnostic
public function execute()
{
- $label = $this->translator->translate('CustomPiwikJs_DiagnosticPiwikJsWritable');
+ // for users that installed matomo 3.7+ we only check for matomo.js being writable... for all other users we
+ // check both piwik.js and matomo.js as they can use both
+ $filesToCheck = array('matomo.js');
- $file = new File(PIWIK_DOCUMENT_ROOT . '/piwik.js');
+ $jsCodeGenerator = new TrackerCodeGenerator();
+ if (SettingsPiwik::isMatomoInstalled() && $jsCodeGenerator->shouldPreferPiwikEndpoint()) {
+ // if matomo is not installed yet, we definitely prefer matomo.js... check for isMatomoInstalled is needed
+ // cause otherwise it would perform a db query before matomo DB is configured
+ $filesToCheck[] = 'piwik.js';
+ }
+
+ $notWritableFiles = array();
+ foreach ($filesToCheck as $fileToCheck) {
+ $file = new File(PIWIK_DOCUMENT_ROOT . '/' . $fileToCheck);
+
+ if (!$file->hasWriteAccess()) {
+ $notWritableFiles[] = $fileToCheck;
+ }
+ }
- if ($file->hasWriteAccess()) {
+ $label = $this->translator->translate('CustomPiwikJs_DiagnosticPiwikJsWritable', $this->makeFilesTitles($filesToCheck));
+
+ if (empty($notWritableFiles)) {
return array(DiagnosticResult::singleResult($label, DiagnosticResult::STATUS_OK, ''));
}
- $comment = $this->translator->translate('CustomPiwikJs_DiagnosticPiwikJsNotWritable');
+ $comment = $this->translator->translate('CustomPiwikJs_DiagnosticPiwikJsNotWritable', $this->makeFilesTitles($notWritableFiles));
- if(!SettingsServer::isWindows()) {
- $realpath = Filesystem::realpath(PIWIK_INCLUDE_PATH . '/piwik.js');
- $command = "<br/><code> chmod +w $realpath<br/> chown ". Filechecks::getUserAndGroup() ." " . $realpath . "</code><br />";
- $comment .= $this->translator->translate('CustomPiwikJs_DiagnosticPiwikJsMakeWritable', $command);
+ if (!SettingsServer::isWindows()) {
+ $command = '';
+ foreach ($notWritableFiles as $notWritableFile) {
+ $realpath = Filesystem::realpath(PIWIK_INCLUDE_PATH . '/' . $notWritableFile);
+ $command .= "<br/><code> chmod +w $realpath<br/> chown ". Filechecks::getUserAndGroup() ." " . $realpath . "</code><br />";
+ }
+ $comment .= $this->translator->translate('CustomPiwikJs_DiagnosticPiwikJsMakeWritable', array($this->makeFilesTitles($notWritableFiles), $command));
}
return array(DiagnosticResult::singleResult($label, DiagnosticResult::STATUS_WARNING, $comment));
}
+ private function makeFilesTitles($files)
+ {
+ return '"/'. implode('" & "/', $files) .'"';
+ }
+
}