2012-07-30 16:42:18 +04:00
|
|
|
<?php
|
2012-12-31 19:47:15 +04:00
|
|
|
/**
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
2015-10-26 15:54:55 +03:00
|
|
|
* @author Roeland Jago Douma <rullzer@owncloud.com>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Thomas Müller <thomas.mueller@tmit.eu>
|
|
|
|
* @author Tom Needham <tom@owncloud.com>
|
|
|
|
*
|
2016-01-12 17:02:16 +03:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
2015-03-26 13:44:34 +03:00
|
|
|
* @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,
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
|
|
|
*
|
|
|
|
*/
|
2015-02-26 13:37:37 +03:00
|
|
|
|
2012-07-30 16:42:18 +04:00
|
|
|
class OC_OCS_Cloud {
|
|
|
|
|
2015-04-18 17:17:15 +03:00
|
|
|
public static function getCapabilities() {
|
2013-01-17 00:43:46 +04:00
|
|
|
$result = array();
|
2015-12-18 17:26:54 +03:00
|
|
|
list($major, $minor, $micro) = \OCP\Util::getVersion();
|
2013-02-04 22:34:28 +04:00
|
|
|
$result['version'] = array(
|
|
|
|
'major' => $major,
|
|
|
|
'minor' => $minor,
|
|
|
|
'micro' => $micro,
|
|
|
|
'string' => OC_Util::getVersionString(),
|
|
|
|
'edition' => OC_Util::getEditionString(),
|
|
|
|
);
|
2013-02-09 15:22:29 +04:00
|
|
|
|
2015-07-21 22:44:59 +03:00
|
|
|
$result['capabilities'] = \OC::$server->getCapabilitiesManager()->getCapabilities();
|
2015-03-21 22:03:56 +03:00
|
|
|
|
2013-01-17 00:43:46 +04:00
|
|
|
return new OC_OCS_Result($result);
|
2012-07-30 16:42:18 +04:00
|
|
|
}
|
2013-05-01 21:20:46 +04:00
|
|
|
|
2013-10-21 22:06:11 +04:00
|
|
|
public static function getCurrentUser() {
|
2015-12-01 14:05:40 +03:00
|
|
|
$userObject = \OC::$server->getUserManager()->get(OC_User::getUser());
|
2013-10-21 22:06:11 +04:00
|
|
|
$data = array(
|
2015-12-01 14:05:40 +03:00
|
|
|
'id' => $userObject->getUID(),
|
|
|
|
'display-name' => $userObject->getDisplayName(),
|
|
|
|
'email' => $userObject->getEMailAddress(),
|
2013-10-21 22:06:11 +04:00
|
|
|
);
|
|
|
|
return new OC_OCS_Result($data);
|
|
|
|
}
|
2012-07-30 16:42:18 +04:00
|
|
|
}
|