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