nextcloud/lib/private/app/platform.php

72 lines
1.2 KiB
PHP
Raw Normal View History

<?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-02 01:43:27 +03:00
use OCP\IConfig;
/**
* Class Platform
*
* This class basically abstracts any kind of information which can be retrieved from the underlying system.
*
* @package OC\App
*/
class Platform {
2014-12-02 01:43:27 +03:00
/**
* @param IConfig $config
*/
2014-12-02 01:43:27 +03:00
function __construct(IConfig $config) {
$this->config = $config;
}
/**
* @return string
*/
public function getPhpVersion() {
return phpversion();
}
2014-12-02 01:43:27 +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;
}
/**
* @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);
}
public function getLibraryVersion($name) {
$repo = new PlatformRepository();
$lib = $repo->findLibrary($name);
return $lib;
}
}