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