2014-12-01 23:47:22 +03:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* @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-05 17:28:33 +03:00
|
|
|
use OC_Util;
|
2014-12-02 01:43:27 +03:00
|
|
|
use OCP\IConfig;
|
|
|
|
|
2014-12-04 19:04:35 +03:00
|
|
|
/**
|
|
|
|
* Class Platform
|
|
|
|
*
|
|
|
|
* This class basically abstracts any kind of information which can be retrieved from the underlying system.
|
|
|
|
*
|
|
|
|
* @package OC\App
|
|
|
|
*/
|
2014-12-01 23:47:22 +03:00
|
|
|
class Platform {
|
2014-12-02 01:43:27 +03:00
|
|
|
|
2014-12-04 19:04:35 +03:00
|
|
|
/**
|
|
|
|
* @param IConfig $config
|
|
|
|
*/
|
2014-12-02 01:43:27 +03:00
|
|
|
function __construct(IConfig $config) {
|
|
|
|
$this->config = $config;
|
|
|
|
}
|
|
|
|
|
2014-12-04 19:04:35 +03:00
|
|
|
/**
|
|
|
|
* @return string
|
|
|
|
*/
|
2014-12-01 23:47:22 +03:00
|
|
|
public function getPhpVersion() {
|
|
|
|
return phpversion();
|
|
|
|
}
|
2014-12-02 01:43:27 +03:00
|
|
|
|
2014-12-05 17:28:33 +03:00
|
|
|
/**
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function getOcVersion() {
|
2014-12-15 14:23:56 +03:00
|
|
|
$v = OC_Util::getVersion();
|
|
|
|
return join('.', $v);
|
2014-12-05 17:28:33 +03:00
|
|
|
}
|
|
|
|
|
2014-12-04 19:04:35 +03:00
|
|
|
/**
|
|
|
|
* @return string
|
|
|
|
*/
|
2014-12-02 01:43:27 +03:00
|
|
|
public function getDatabase() {
|
|
|
|
$dbType = $this->config->getSystemValue('dbtype', 'sqlite');
|
|
|
|
if ($dbType === 'sqlite3') {
|
|
|
|
$dbType = 'sqlite';
|
|
|
|
}
|
|
|
|
|
|
|
|
return $dbType;
|
|
|
|
}
|
2014-12-04 19:04:35 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function getOS() {
|
|
|
|
return php_uname('s');
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param $command
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function isCommandKnown($command) {
|
|
|
|
$path = \OC_Helper::findBinaryPath($command);
|
|
|
|
return ($path !== null);
|
|
|
|
}
|
2014-12-05 15:52:51 +03:00
|
|
|
|
|
|
|
public function getLibraryVersion($name) {
|
|
|
|
$repo = new PlatformRepository();
|
|
|
|
$lib = $repo->findLibrary($name);
|
|
|
|
return $lib;
|
|
|
|
}
|
2014-12-01 23:47:22 +03:00
|
|
|
}
|