2014-12-01 23:47:22 +03:00
|
|
|
<?php
|
2015-03-26 13:44:34 +03:00
|
|
|
/**
|
2016-07-21 18:07:57 +03:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
*
|
2016-05-26 20:56:05 +03:00
|
|
|
* @author Bernhard Posselt <dev@bernhard-posselt.com>
|
2020-04-29 12:57:22 +03:00
|
|
|
* @author Christoph Wurst <christoph@winzerhof-wurst.at>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
|
|
|
* @author Thomas Müller <thomas.mueller@tmit.eu>
|
|
|
|
*
|
|
|
|
* @license AGPL-3.0
|
|
|
|
*
|
|
|
|
* This code is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License, version 3,
|
|
|
|
* as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License, version 3,
|
2019-12-03 21:57:53 +03:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
2014-12-01 23:47:22 +03:00
|
|
|
*
|
|
|
|
*/
|
2015-02-26 13:37:37 +03:00
|
|
|
|
2014-12-01 23:47:22 +03:00
|
|
|
namespace OC\App;
|
|
|
|
|
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
|
|
|
|
*/
|
2020-04-10 17:51:06 +03:00
|
|
|
public function __construct(IConfig $config) {
|
2014-12-02 01:43:27 +03:00
|
|
|
$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
|
|
|
|
2016-04-27 22:24:33 +03:00
|
|
|
/**
|
|
|
|
* @return int
|
|
|
|
*/
|
|
|
|
public function getIntSize() {
|
|
|
|
return PHP_INT_SIZE;
|
|
|
|
}
|
|
|
|
|
2014-12-05 17:28:33 +03:00
|
|
|
/**
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function getOcVersion() {
|
2015-12-18 17:26:54 +03:00
|
|
|
$v = \OCP\Util::getVersion();
|
2018-02-13 23:48:24 +03:00
|
|
|
return implode('.', $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();
|
2018-01-26 02:02:03 +03:00
|
|
|
return $repo->findLibrary($name);
|
2014-12-05 15:52:51 +03:00
|
|
|
}
|
2020-09-14 11:47:38 +03:00
|
|
|
|
|
|
|
public function getArchitecture(): string {
|
|
|
|
return php_uname('m');
|
|
|
|
}
|
2014-12-01 23:47:22 +03:00
|
|
|
}
|