2011-09-23 20:22:59 +00:00
|
|
|
<?php
|
|
|
|
/**
|
2016-07-21 15:07:57 +00:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
*
|
2015-03-26 10:44:34 +00:00
|
|
|
* @author Bart Visscher <bartv@thisnet.nl>
|
|
|
|
* @author Bernhard Posselt <dev@bernhard-posselt.com>
|
2016-07-21 15:07:57 +00:00
|
|
|
* @author Christoph Wurst <christoph@owncloud.com>
|
2015-03-26 10:44:34 +00:00
|
|
|
* @author Felix Moeller <mail@felixmoeller.de>
|
2017-11-06 19:15:27 +00:00
|
|
|
* @author Georg Ehrke <oc.list@georgehrke.com>
|
2016-05-26 17:56:05 +00:00
|
|
|
* @author Lukas Reschke <lukas@statuscode.ch>
|
2015-03-26 10:44:34 +00:00
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
2016-07-21 16:13:36 +00:00
|
|
|
* @author Robin Appelman <robin@icewind.nl>
|
2017-11-06 14:56:42 +00:00
|
|
|
* @author Roeland Jago Douma <roeland@famdouma.nl>
|
|
|
|
* @author Sebastian Wessalowski <sebastian@wessalowski.org>
|
2015-03-26 10:44:34 +00:00
|
|
|
* @author Thomas Müller <thomas.mueller@tmit.eu>
|
|
|
|
* @author Thomas Tanghus <thomas@tanghus.net>
|
|
|
|
* @author Vincent Petry <pvince81@owncloud.com>
|
|
|
|
*
|
|
|
|
* @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
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Class OC_JSON
|
|
|
|
* @deprecated Use a AppFramework JSONResponse instead
|
2015-02-11 23:56:13 +00:00
|
|
|
*/
|
2011-09-23 20:22:59 +00:00
|
|
|
class OC_JSON{
|
|
|
|
|
2011-09-30 21:05:10 +00:00
|
|
|
/**
|
2015-02-11 23:56:13 +00:00
|
|
|
* Check if the app is enabled, send json error msg if not
|
|
|
|
* @param string $app
|
|
|
|
* @deprecated Use the AppFramework instead. It will automatically check if the app is enabled.
|
2017-07-19 18:21:05 +00:00
|
|
|
* @suppress PhanDeprecatedFunction
|
2015-02-11 23:56:13 +00:00
|
|
|
*/
|
2012-09-07 13:22:01 +00:00
|
|
|
public static function checkAppEnabled($app) {
|
2017-10-23 21:31:17 +00:00
|
|
|
if( !\OC::$server->getAppManager()->isEnabledForUser($app)) {
|
2014-08-31 08:05:59 +00:00
|
|
|
$l = \OC::$server->getL10N('lib');
|
2014-07-04 12:08:48 +00:00
|
|
|
self::error(array( 'data' => array( 'message' => $l->t('Application is not enabled'), 'error' => 'application_not_enabled' )));
|
2011-09-30 21:05:10 +00:00
|
|
|
exit();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-09-23 20:22:59 +00:00
|
|
|
/**
|
2015-02-11 23:56:13 +00:00
|
|
|
* Check if the user is logged in, send json error msg if not
|
|
|
|
* @deprecated Use annotation based ACLs from the AppFramework instead
|
2017-07-19 18:21:05 +00:00
|
|
|
* @suppress PhanDeprecatedFunction
|
2015-02-11 23:56:13 +00:00
|
|
|
*/
|
2012-09-07 13:22:01 +00:00
|
|
|
public static function checkLoggedIn() {
|
2016-06-10 07:52:52 +00:00
|
|
|
$twoFactorAuthManger = \OC::$server->getTwoFactorAuthManager();
|
2017-03-02 15:52:05 +00:00
|
|
|
if( !\OC::$server->getUserSession()->isLoggedIn()
|
2016-08-24 08:42:07 +00:00
|
|
|
|| $twoFactorAuthManger->needsSecondFactor(\OC::$server->getUserSession()->getUser())) {
|
2014-08-31 08:05:59 +00:00
|
|
|
$l = \OC::$server->getL10N('lib');
|
2016-02-16 08:48:40 +00:00
|
|
|
http_response_code(\OCP\AppFramework\Http::STATUS_UNAUTHORIZED);
|
2014-07-04 12:08:48 +00:00
|
|
|
self::error(array( 'data' => array( 'message' => $l->t('Authentication error'), 'error' => 'authentication_error' )));
|
2011-09-23 20:22:59 +00:00
|
|
|
exit();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-06-13 15:33:19 +00:00
|
|
|
/**
|
2014-04-21 13:44:54 +00:00
|
|
|
* Check an ajax get/post call if the request token is valid, send json error msg if not.
|
2015-02-11 23:56:13 +00:00
|
|
|
* @deprecated Use annotation based CSRF checks from the AppFramework instead
|
2017-07-19 18:21:05 +00:00
|
|
|
* @suppress PhanDeprecatedFunction
|
2012-06-13 15:33:19 +00:00
|
|
|
*/
|
2012-09-07 13:22:01 +00:00
|
|
|
public static function callCheck() {
|
2016-07-20 15:37:30 +00:00
|
|
|
if(!\OC::$server->getRequest()->passesStrictCookieCheck()) {
|
|
|
|
header('Location: '.\OC::$WEBROOT);
|
|
|
|
exit();
|
|
|
|
}
|
|
|
|
|
2018-01-26 22:46:40 +00:00
|
|
|
if( !\OC::$server->getRequest()->passesCSRFCheck()) {
|
2014-08-31 08:05:59 +00:00
|
|
|
$l = \OC::$server->getL10N('lib');
|
2014-07-04 12:08:48 +00:00
|
|
|
self::error(array( 'data' => array( 'message' => $l->t('Token expired. Please reload page.'), 'error' => 'token_expired' )));
|
2012-06-13 15:33:19 +00:00
|
|
|
exit();
|
|
|
|
}
|
|
|
|
}
|
2012-08-29 06:38:33 +00:00
|
|
|
|
2011-09-23 20:22:59 +00:00
|
|
|
/**
|
2015-02-11 23:56:13 +00:00
|
|
|
* Check if the user is a admin, send json error msg if not.
|
|
|
|
* @deprecated Use annotation based ACLs from the AppFramework instead
|
2017-07-19 18:21:05 +00:00
|
|
|
* @suppress PhanDeprecatedFunction
|
2015-02-11 23:56:13 +00:00
|
|
|
*/
|
2012-09-07 13:22:01 +00:00
|
|
|
public static function checkAdminUser() {
|
2013-01-14 18:45:17 +00:00
|
|
|
if( !OC_User::isAdminUser(OC_User::getUser())) {
|
2014-08-31 08:05:59 +00:00
|
|
|
$l = \OC::$server->getL10N('lib');
|
2014-07-04 12:08:48 +00:00
|
|
|
self::error(array( 'data' => array( 'message' => $l->t('Authentication error'), 'error' => 'authentication_error' )));
|
2011-09-23 20:22:59 +00:00
|
|
|
exit();
|
|
|
|
}
|
|
|
|
}
|
2012-08-29 06:38:33 +00:00
|
|
|
|
2011-09-23 20:22:59 +00:00
|
|
|
/**
|
2015-02-11 23:56:13 +00:00
|
|
|
* Send json error msg
|
|
|
|
* @deprecated Use a AppFramework JSONResponse instead
|
2017-07-19 18:21:05 +00:00
|
|
|
* @suppress PhanDeprecatedFunction
|
2015-02-11 23:56:13 +00:00
|
|
|
*/
|
2012-09-07 13:22:01 +00:00
|
|
|
public static function error($data = array()) {
|
2011-09-23 20:22:59 +00:00
|
|
|
$data['status'] = 'error';
|
2018-03-12 17:28:46 +00:00
|
|
|
header( 'Content-Type: application/json; charset=utf-8');
|
|
|
|
echo self::encode($data);
|
2011-09-23 20:22:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2015-02-11 23:56:13 +00:00
|
|
|
* Send json success msg
|
|
|
|
* @deprecated Use a AppFramework JSONResponse instead
|
2017-07-19 18:21:05 +00:00
|
|
|
* @suppress PhanDeprecatedFunction
|
2015-02-11 23:56:13 +00:00
|
|
|
*/
|
2012-09-07 13:22:01 +00:00
|
|
|
public static function success($data = array()) {
|
2011-09-23 20:22:59 +00:00
|
|
|
$data['status'] = 'success';
|
2018-03-12 17:28:46 +00:00
|
|
|
header( 'Content-Type: application/json; charset=utf-8');
|
|
|
|
echo self::encode($data);
|
2011-09-23 20:22:59 +00:00
|
|
|
}
|
|
|
|
|
2012-06-22 06:43:58 +00:00
|
|
|
/**
|
|
|
|
* Convert OC_L10N_String to string, for use in json encodings
|
|
|
|
*/
|
2012-09-07 13:22:01 +00:00
|
|
|
protected static function to_string(&$value) {
|
2017-07-24 18:17:20 +00:00
|
|
|
if ($value instanceof \OC\L10N\L10NString) {
|
2012-06-22 06:43:58 +00:00
|
|
|
$value = (string)$value;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-12-10 14:32:48 +00:00
|
|
|
/**
|
|
|
|
* Encode JSON
|
2015-02-11 23:56:13 +00:00
|
|
|
* @deprecated Use a AppFramework JSONResponse instead
|
2013-12-10 14:32:48 +00:00
|
|
|
*/
|
|
|
|
public static function encode($data) {
|
2013-12-18 14:25:28 +00:00
|
|
|
if (is_array($data)) {
|
|
|
|
array_walk_recursive($data, array('OC_JSON', 'to_string'));
|
|
|
|
}
|
2015-09-02 22:44:46 +00:00
|
|
|
return json_encode($data, JSON_HEX_TAG);
|
2011-09-23 20:22:59 +00:00
|
|
|
}
|
|
|
|
}
|