2011-09-23 20:22:59 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Copyright (c) 2011 Bart Visscher <bartv@thisnet.nl>
|
|
|
|
* This file is licensed under the Affero General Public License version 3 or
|
|
|
|
* later.
|
|
|
|
* See the COPYING-README file.
|
|
|
|
*/
|
|
|
|
|
|
|
|
class OC_JSON{
|
|
|
|
static protected $send_content_type_header = false;
|
|
|
|
/**
|
|
|
|
* set Content-Type header to jsonrequest
|
|
|
|
*/
|
2012-09-07 13:22:01 +00:00
|
|
|
public static function setContentTypeHeader($type='application/json') {
|
|
|
|
if (!self::$send_content_type_header) {
|
2011-09-23 20:22:59 +00:00
|
|
|
// We send json data
|
2013-04-25 09:36:41 +00:00
|
|
|
header( 'Content-Type: '.$type . '; charset=utf-8');
|
2011-09-23 20:22:59 +00:00
|
|
|
self::$send_content_type_header = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-09-30 21:05:10 +00:00
|
|
|
/**
|
|
|
|
* Check if the app is enabled, send json error msg if not
|
2014-02-06 15:30:58 +00:00
|
|
|
* @param string $app
|
2011-09-30 21:05:10 +00:00
|
|
|
*/
|
2012-09-07 13:22:01 +00:00
|
|
|
public static function checkAppEnabled($app) {
|
|
|
|
if( !OC_App::isEnabled($app)) {
|
2012-08-30 21:51:44 +00:00
|
|
|
$l = OC_L10N::get('lib');
|
2011-09-30 21:05:10 +00:00
|
|
|
self::error(array( 'data' => array( 'message' => $l->t('Application is not enabled') )));
|
|
|
|
exit();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-09-23 20:22:59 +00:00
|
|
|
/**
|
|
|
|
* Check if the user is logged in, send json error msg if not
|
|
|
|
*/
|
2012-09-07 13:22:01 +00:00
|
|
|
public static function checkLoggedIn() {
|
|
|
|
if( !OC_User::isLoggedIn()) {
|
2012-08-30 21:51:44 +00:00
|
|
|
$l = OC_L10N::get('lib');
|
2011-09-23 20:22:59 +00:00
|
|
|
self::error(array( 'data' => array( 'message' => $l->t('Authentication error') )));
|
|
|
|
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.
|
2012-06-13 15:33:19 +00:00
|
|
|
*/
|
2012-09-07 13:22:01 +00:00
|
|
|
public static function callCheck() {
|
|
|
|
if( !OC_Util::isCallRegistered()) {
|
2012-08-30 21:51:44 +00:00
|
|
|
$l = OC_L10N::get('lib');
|
2012-06-13 15:33:19 +00:00
|
|
|
self::error(array( 'data' => array( 'message' => $l->t('Token expired. Please reload page.') )));
|
|
|
|
exit();
|
|
|
|
}
|
|
|
|
}
|
2012-08-29 06:38:33 +00:00
|
|
|
|
2011-09-23 20:22:59 +00:00
|
|
|
/**
|
2014-04-21 13:44:54 +00:00
|
|
|
* Check if the user is a admin, send json error msg if not.
|
2011-09-23 20:22:59 +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())) {
|
2012-08-30 21:51:44 +00:00
|
|
|
$l = OC_L10N::get('lib');
|
2011-09-23 20:22:59 +00:00
|
|
|
self::error(array( 'data' => array( 'message' => $l->t('Authentication error') )));
|
|
|
|
exit();
|
|
|
|
}
|
|
|
|
}
|
2012-08-29 06:38:33 +00:00
|
|
|
|
2014-01-21 10:32:30 +00:00
|
|
|
/**
|
|
|
|
* Check is a given user exists - send json error msg if not
|
|
|
|
* @param string $user
|
|
|
|
*/
|
|
|
|
public static function checkUserExists($user) {
|
|
|
|
if (!OCP\User::userExists($user)) {
|
|
|
|
$l = OC_L10N::get('lib');
|
|
|
|
OCP\JSON::error(array('data' => array('message' => $l->t('Unknown user'))));
|
|
|
|
exit;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-07-18 15:10:53 +00:00
|
|
|
/**
|
|
|
|
* Check if the user is a subadmin, send json error msg if not
|
|
|
|
*/
|
2012-09-07 13:22:01 +00:00
|
|
|
public static function checkSubAdminUser() {
|
2013-01-14 18:45:17 +00:00
|
|
|
if(!OC_SubAdmin::isSubAdmin(OC_User::getUser())) {
|
2012-08-30 21:51:44 +00:00
|
|
|
$l = OC_L10N::get('lib');
|
2012-07-18 15:10:53 +00:00
|
|
|
self::error(array( 'data' => array( 'message' => $l->t('Authentication error') )));
|
|
|
|
exit();
|
|
|
|
}
|
|
|
|
}
|
2013-01-14 19:30:39 +00:00
|
|
|
|
2011-09-23 20:22:59 +00:00
|
|
|
/**
|
|
|
|
* Send json error msg
|
|
|
|
*/
|
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';
|
|
|
|
self::encodedPrint($data);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Send json success msg
|
|
|
|
*/
|
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';
|
|
|
|
self::encodedPrint($data);
|
|
|
|
}
|
|
|
|
|
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) {
|
2012-06-22 06:43:58 +00:00
|
|
|
if ($value instanceof OC_L10N_String) {
|
|
|
|
$value = (string)$value;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-09-23 20:22:59 +00:00
|
|
|
/**
|
|
|
|
* Encode and print $data in json format
|
|
|
|
*/
|
2012-11-02 18:53:02 +00:00
|
|
|
public static function encodedPrint($data, $setContentType=true) {
|
2012-09-07 13:22:01 +00:00
|
|
|
if($setContentType) {
|
2012-07-23 22:39:59 +00:00
|
|
|
self::setContentTypeHeader();
|
|
|
|
}
|
2013-12-10 14:32:48 +00:00
|
|
|
echo self::encode($data);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Encode JSON
|
|
|
|
*/
|
|
|
|
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'));
|
|
|
|
}
|
2013-12-10 14:32:48 +00:00
|
|
|
return json_encode($data);
|
2011-09-23 20:22:59 +00:00
|
|
|
}
|
|
|
|
}
|