2014-12-01 15:47:22 -05:00
|
|
|
<?php
|
2015-03-26 06:44:34 -04:00
|
|
|
/**
|
2016-07-21 11:07:57 -04:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
|
*
|
2016-05-26 13:56:05 -04:00
|
|
|
* @author Bernhard Posselt <dev@bernhard-posselt.com>
|
2020-04-29 05:57:22 -04:00
|
|
|
* @author Christoph Wurst <christoph@winzerhof-wurst.at>
|
2020-12-16 08:54:15 -05:00
|
|
|
* @author Julius Härtl <jus@bitgrid.net>
|
2015-03-26 06:44:34 -04: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 13:57:53 -05:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
2014-12-01 15:47:22 -05:00
|
|
|
*
|
|
|
|
|
*/
|
2015-02-26 05:37:37 -05:00
|
|
|
|
2014-12-01 15:47:22 -05:00
|
|
|
namespace OC\App;
|
|
|
|
|
|
2014-12-01 17:43:27 -05:00
|
|
|
use OCP\IConfig;
|
|
|
|
|
|
2014-12-04 11:04:35 -05: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 15:47:22 -05:00
|
|
|
class Platform {
|
2014-12-01 17:43:27 -05:00
|
|
|
|
2014-12-04 11:04:35 -05:00
|
|
|
/**
|
|
|
|
|
* @param IConfig $config
|
|
|
|
|
*/
|
2020-04-10 10:51:06 -04:00
|
|
|
public function __construct(IConfig $config) {
|
2014-12-01 17:43:27 -05:00
|
|
|
$this->config = $config;
|
|
|
|
|
}
|
|
|
|
|
|
2014-12-04 11:04:35 -05:00
|
|
|
/**
|
|
|
|
|
* @return string
|
|
|
|
|
*/
|
2014-12-01 15:47:22 -05:00
|
|
|
public function getPhpVersion() {
|
|
|
|
|
return phpversion();
|
|
|
|
|
}
|
2014-12-01 17:43:27 -05:00
|
|
|
|
2016-04-27 15:24:33 -04:00
|
|
|
/**
|
|
|
|
|
* @return int
|
|
|
|
|
*/
|
|
|
|
|
public function getIntSize() {
|
|
|
|
|
return PHP_INT_SIZE;
|
|
|
|
|
}
|
|
|
|
|
|
2014-12-05 09:28:33 -05:00
|
|
|
/**
|
|
|
|
|
* @return string
|
|
|
|
|
*/
|
|
|
|
|
public function getOcVersion() {
|
2015-12-18 09:26:54 -05:00
|
|
|
$v = \OCP\Util::getVersion();
|
2018-02-13 15:48:24 -05:00
|
|
|
return implode('.', $v);
|
2014-12-05 09:28:33 -05:00
|
|
|
}
|
|
|
|
|
|
2014-12-04 11:04:35 -05:00
|
|
|
/**
|
|
|
|
|
* @return string
|
|
|
|
|
*/
|
2014-12-01 17:43:27 -05:00
|
|
|
public function getDatabase() {
|
|
|
|
|
$dbType = $this->config->getSystemValue('dbtype', 'sqlite');
|
|
|
|
|
if ($dbType === 'sqlite3') {
|
|
|
|
|
$dbType = 'sqlite';
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return $dbType;
|
|
|
|
|
}
|
2014-12-04 11:04:35 -05: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 07:52:51 -05:00
|
|
|
|
|
|
|
|
public function getLibraryVersion($name) {
|
|
|
|
|
$repo = new PlatformRepository();
|
2018-01-25 18:02:03 -05:00
|
|
|
return $repo->findLibrary($name);
|
2014-12-05 07:52:51 -05:00
|
|
|
}
|
2020-09-14 04:47:38 -04:00
|
|
|
|
|
|
|
|
public function getArchitecture(): string {
|
|
|
|
|
return php_uname('m');
|
|
|
|
|
}
|
2014-12-01 15:47:22 -05:00
|
|
|
}
|