2014-12-01 23:47:22 +03:00
|
|
|
<?php
|
2014-12-12 14:34:53 +03:00
|
|
|
/**
|
2014-12-01 23:47:22 +03:00
|
|
|
* @author Thomas Müller
|
|
|
|
* @copyright 2014 Thomas Müller deepdiver@owncloud.com
|
|
|
|
*
|
|
|
|
* This file is licensed under the Affero General Public License version 3 or
|
|
|
|
* later.
|
|
|
|
* See the COPYING-README file.
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace OC\App;
|
|
|
|
|
2014-12-04 19:04:35 +03:00
|
|
|
use OCP\IL10N;
|
|
|
|
|
2014-12-01 23:47:22 +03:00
|
|
|
class DependencyAnalyzer {
|
|
|
|
|
2014-12-02 13:49:31 +03:00
|
|
|
/** @var Platform */
|
2014-12-04 19:04:35 +03:00
|
|
|
private $platform;
|
2014-12-02 13:49:31 +03:00
|
|
|
|
|
|
|
/** @var \OCP\IL10N */
|
|
|
|
private $l;
|
|
|
|
|
2014-12-01 23:47:22 +03:00
|
|
|
/**
|
2014-12-02 13:49:31 +03:00
|
|
|
* @param Platform $platform
|
2014-12-01 23:47:22 +03:00
|
|
|
* @param \OCP\IL10N $l
|
|
|
|
*/
|
2014-12-12 14:34:53 +03:00
|
|
|
function __construct(Platform $platform, IL10N $l) {
|
2014-12-04 19:04:35 +03:00
|
|
|
$this->platform = $platform;
|
2014-12-01 23:47:22 +03:00
|
|
|
$this->l = $l;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param array $app
|
|
|
|
* @returns array of missing dependencies
|
|
|
|
*/
|
2014-12-12 14:34:53 +03:00
|
|
|
public function analyze($app) {
|
|
|
|
$this->appInfo = $app;
|
|
|
|
if (isset($app['dependencies'])) {
|
|
|
|
$dependencies = $app['dependencies'];
|
|
|
|
} else {
|
|
|
|
$dependencies = [];
|
|
|
|
}
|
|
|
|
|
|
|
|
return array_merge(
|
|
|
|
$this->analyzePhpVersion($dependencies),
|
|
|
|
$this->analyzeDatabases($dependencies),
|
|
|
|
$this->analyzeCommands($dependencies),
|
|
|
|
$this->analyzeLibraries($dependencies),
|
|
|
|
$this->analyzeOS($dependencies),
|
|
|
|
$this->analyzeOC($dependencies, $app));
|
2014-12-01 23:47:22 +03:00
|
|
|
}
|
|
|
|
|
2014-12-12 14:34:53 +03:00
|
|
|
private function analyzePhpVersion($dependencies) {
|
|
|
|
$missing = [];
|
|
|
|
if (isset($dependencies['php']['@attributes']['min-version'])) {
|
|
|
|
$minVersion = $dependencies['php']['@attributes']['min-version'];
|
2014-12-04 19:04:35 +03:00
|
|
|
if (version_compare($this->platform->getPhpVersion(), $minVersion, '<')) {
|
2014-12-12 14:34:53 +03:00
|
|
|
$missing[] = (string)$this->l->t('PHP %s or higher is required.', $minVersion);
|
2014-12-01 23:47:22 +03:00
|
|
|
}
|
|
|
|
}
|
2014-12-12 14:34:53 +03:00
|
|
|
if (isset($dependencies['php']['@attributes']['max-version'])) {
|
|
|
|
$maxVersion = $dependencies['php']['@attributes']['max-version'];
|
2014-12-04 19:04:35 +03:00
|
|
|
if (version_compare($this->platform->getPhpVersion(), $maxVersion, '>')) {
|
2014-12-12 14:34:53 +03:00
|
|
|
$missing[] = (string)$this->l->t('PHP with a version lower than %s is required.', $maxVersion);
|
2014-12-01 23:47:22 +03:00
|
|
|
}
|
|
|
|
}
|
2014-12-12 14:34:53 +03:00
|
|
|
return $missing;
|
2014-12-01 23:47:22 +03:00
|
|
|
}
|
|
|
|
|
2014-12-12 14:34:53 +03:00
|
|
|
private function analyzeDatabases($dependencies) {
|
|
|
|
$missing = [];
|
|
|
|
if (!isset($dependencies['database'])) {
|
|
|
|
return $missing;
|
2014-12-02 01:43:27 +03:00
|
|
|
}
|
|
|
|
|
2014-12-12 14:34:53 +03:00
|
|
|
$supportedDatabases = $dependencies['database'];
|
2014-12-02 01:43:27 +03:00
|
|
|
if (empty($supportedDatabases)) {
|
2014-12-12 14:34:53 +03:00
|
|
|
return $missing;
|
2014-12-02 01:43:27 +03:00
|
|
|
}
|
2014-12-11 17:37:45 +03:00
|
|
|
if (!is_array($supportedDatabases)) {
|
|
|
|
$supportedDatabases = array($supportedDatabases);
|
|
|
|
}
|
2014-12-12 14:34:53 +03:00
|
|
|
$supportedDatabases = array_map(function ($db) {
|
2014-12-04 19:04:35 +03:00
|
|
|
return $this->getValue($db);
|
2014-12-02 13:49:31 +03:00
|
|
|
}, $supportedDatabases);
|
2014-12-04 19:04:35 +03:00
|
|
|
$currentDatabase = $this->platform->getDatabase();
|
2014-12-02 01:43:27 +03:00
|
|
|
if (!in_array($currentDatabase, $supportedDatabases)) {
|
2014-12-12 14:34:53 +03:00
|
|
|
$missing[] = (string)$this->l->t('Following databases are supported: %s', join(', ', $supportedDatabases));
|
2014-12-04 19:04:35 +03:00
|
|
|
}
|
2014-12-12 14:34:53 +03:00
|
|
|
return $missing;
|
2014-12-04 19:04:35 +03:00
|
|
|
}
|
|
|
|
|
2014-12-12 14:34:53 +03:00
|
|
|
private function analyzeCommands($dependencies) {
|
|
|
|
$missing = [];
|
|
|
|
if (!isset($dependencies['command'])) {
|
|
|
|
return $missing;
|
2014-12-04 19:04:35 +03:00
|
|
|
}
|
|
|
|
|
2014-12-12 14:34:53 +03:00
|
|
|
$commands = $dependencies['command'];
|
2014-12-11 17:37:45 +03:00
|
|
|
if (!is_array($commands)) {
|
|
|
|
$commands = array($commands);
|
|
|
|
}
|
2014-12-04 19:04:35 +03:00
|
|
|
$os = $this->platform->getOS();
|
2014-12-12 14:34:53 +03:00
|
|
|
foreach ($commands as $command) {
|
2014-12-04 19:04:35 +03:00
|
|
|
if (isset($command['@attributes']['os']) && $command['@attributes']['os'] !== $os) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
$commandName = $this->getValue($command);
|
|
|
|
if (!$this->platform->isCommandKnown($commandName)) {
|
2014-12-12 14:34:53 +03:00
|
|
|
$missing[] = (string)$this->l->t('The command line tool %s could not be found', $commandName);
|
2014-12-04 19:04:35 +03:00
|
|
|
}
|
2014-12-02 01:43:27 +03:00
|
|
|
}
|
2014-12-12 14:34:53 +03:00
|
|
|
return $missing;
|
2014-12-02 01:43:27 +03:00
|
|
|
}
|
2014-12-04 19:04:35 +03:00
|
|
|
|
2014-12-12 14:34:53 +03:00
|
|
|
private function analyzeLibraries($dependencies) {
|
|
|
|
$missing = [];
|
|
|
|
if (!isset($dependencies['lib'])) {
|
|
|
|
return $missing;
|
2014-12-05 15:52:51 +03:00
|
|
|
}
|
|
|
|
|
2014-12-12 14:34:53 +03:00
|
|
|
$libs = $dependencies['lib'];
|
2014-12-11 17:37:45 +03:00
|
|
|
if (!is_array($libs)) {
|
|
|
|
$libs = array($libs);
|
|
|
|
}
|
2014-12-12 14:34:53 +03:00
|
|
|
foreach ($libs as $lib) {
|
2014-12-05 15:52:51 +03:00
|
|
|
$libName = $this->getValue($lib);
|
|
|
|
$libVersion = $this->platform->getLibraryVersion($libName);
|
|
|
|
if (is_null($libVersion)) {
|
2014-12-12 14:34:53 +03:00
|
|
|
$missing[] = (string)$this->l->t('The library %s is not available.', $libName);
|
2014-12-05 15:52:51 +03:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (is_array($lib)) {
|
|
|
|
if (isset($lib['@attributes']['min-version'])) {
|
|
|
|
$minVersion = $lib['@attributes']['min-version'];
|
|
|
|
if (version_compare($libVersion, $minVersion, '<')) {
|
2014-12-12 14:34:53 +03:00
|
|
|
$missing[] = (string)$this->l->t('Library %s with a version higher than %s is required - available version %s.',
|
|
|
|
array($libName, $minVersion, $libVersion));
|
2014-12-05 15:52:51 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if (isset($lib['@attributes']['max-version'])) {
|
|
|
|
$maxVersion = $lib['@attributes']['max-version'];
|
|
|
|
if (version_compare($libVersion, $maxVersion, '>')) {
|
2014-12-12 14:34:53 +03:00
|
|
|
$missing[] = (string)$this->l->t('Library %s with a version lower than %s is required - available version %s.',
|
|
|
|
array($libName, $maxVersion, $libVersion));
|
2014-12-05 15:52:51 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-12-12 14:34:53 +03:00
|
|
|
return $missing;
|
2014-12-05 15:52:51 +03:00
|
|
|
}
|
|
|
|
|
2014-12-12 14:34:53 +03:00
|
|
|
private function analyzeOS($dependencies) {
|
|
|
|
$missing = [];
|
|
|
|
if (!isset($dependencies['os'])) {
|
|
|
|
return $missing;
|
2014-12-05 16:51:41 +03:00
|
|
|
}
|
|
|
|
|
2014-12-12 14:34:53 +03:00
|
|
|
$oss = $dependencies['os'];
|
2014-12-05 16:51:41 +03:00
|
|
|
if (empty($oss)) {
|
2014-12-12 14:34:53 +03:00
|
|
|
return $missing;
|
2014-12-05 16:51:41 +03:00
|
|
|
}
|
2014-12-11 17:37:45 +03:00
|
|
|
if (is_array($oss)) {
|
|
|
|
$oss = array_map(function ($os) {
|
|
|
|
return $this->getValue($os);
|
|
|
|
}, $oss);
|
|
|
|
} else {
|
|
|
|
$oss = array($oss);
|
|
|
|
}
|
2014-12-05 16:51:41 +03:00
|
|
|
$currentOS = $this->platform->getOS();
|
|
|
|
if (!in_array($currentOS, $oss)) {
|
2014-12-12 14:34:53 +03:00
|
|
|
$missing[] = (string)$this->l->t('Following platforms are supported: %s', join(', ', $oss));
|
2014-12-05 16:51:41 +03:00
|
|
|
}
|
2014-12-12 14:34:53 +03:00
|
|
|
return $missing;
|
2014-12-05 16:51:41 +03:00
|
|
|
}
|
|
|
|
|
2014-12-12 14:34:53 +03:00
|
|
|
private function analyzeOC($dependencies, $appInfo) {
|
|
|
|
$missing = [];
|
2014-12-05 17:28:33 +03:00
|
|
|
$minVersion = null;
|
2014-12-12 14:34:53 +03:00
|
|
|
if (isset($dependencies['owncloud']['@attributes']['min-version'])) {
|
|
|
|
$minVersion = $dependencies['owncloud']['@attributes']['min-version'];
|
|
|
|
} elseif (isset($appInfo['requiremin'])) {
|
|
|
|
$minVersion = $appInfo['requiremin'];
|
2014-12-05 17:28:33 +03:00
|
|
|
}
|
|
|
|
$maxVersion = null;
|
2014-12-12 14:34:53 +03:00
|
|
|
if (isset($dependencies['owncloud']['@attributes']['max-version'])) {
|
|
|
|
$maxVersion = $dependencies['owncloud']['@attributes']['max-version'];
|
|
|
|
} elseif (isset($appInfo['requiremax'])) {
|
|
|
|
$maxVersion = $appInfo['requiremax'];
|
2014-12-05 17:28:33 +03:00
|
|
|
}
|
2014-12-05 16:51:41 +03:00
|
|
|
|
2014-12-05 17:28:33 +03:00
|
|
|
if (!is_null($minVersion)) {
|
|
|
|
if (version_compare($this->platform->getOcVersion(), $minVersion, '<')) {
|
2014-12-12 14:34:53 +03:00
|
|
|
$missing[] = (string)$this->l->t('ownCloud %s or higher is required.', $minVersion);
|
2014-12-05 17:28:33 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!is_null($maxVersion)) {
|
|
|
|
if (version_compare($this->platform->getOcVersion(), $maxVersion, '>')) {
|
2014-12-12 14:34:53 +03:00
|
|
|
$missing[] = (string)$this->l->t('ownCloud with a version lower than %s is required.', $maxVersion);
|
2014-12-05 17:28:33 +03:00
|
|
|
}
|
|
|
|
}
|
2014-12-12 14:34:53 +03:00
|
|
|
return $missing;
|
2014-12-05 17:28:33 +03:00
|
|
|
}
|
2014-12-05 16:51:41 +03:00
|
|
|
|
2014-12-04 19:04:35 +03:00
|
|
|
/**
|
|
|
|
* @param $element
|
|
|
|
* @return mixed
|
|
|
|
*/
|
|
|
|
private function getValue($element) {
|
|
|
|
if (isset($element['@value']))
|
|
|
|
return $element['@value'];
|
2014-12-11 17:37:45 +03:00
|
|
|
return (string)$element;
|
2014-12-04 19:04:35 +03:00
|
|
|
}
|
2014-12-01 23:47:22 +03:00
|
|
|
}
|