Blame view

sources/lib/private/json.php 3.4 KB
03e52840d   Kload   Init
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
  <?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
  	 */
  	public static function setContentTypeHeader($type='application/json') {
  		if (!self::$send_content_type_header) {
  			// We send json data
31b7f2792   Kload   Upgrade to ownclo...
17
  			header( 'Content-Type: '.$type . '; charset=utf-8');
03e52840d   Kload   Init
18
19
20
21
22
23
  			self::$send_content_type_header = true;
  		}
  	}
  
  	/**
  	* Check if the app is enabled, send json error msg if not
6d9380f96   Cédric Dupont   Update sources OC...
24
  	* @param string $app
03e52840d   Kload   Init
25
26
27
28
  	*/
  	public static function checkAppEnabled($app) {
  		if( !OC_App::isEnabled($app)) {
  			$l = OC_L10N::get('lib');
6d9380f96   Cédric Dupont   Update sources OC...
29
  			self::error(array( 'data' => array( 'message' => $l->t('Application is not enabled'), 'error' => 'application_not_enabled' )));
03e52840d   Kload   Init
30
31
32
33
34
35
36
37
38
39
  			exit();
  		}
  	}
  
  	/**
  	* Check if the user is logged in, send json error msg if not
  	*/
  	public static function checkLoggedIn() {
  		if( !OC_User::isLoggedIn()) {
  			$l = OC_L10N::get('lib');
6d9380f96   Cédric Dupont   Update sources OC...
40
  			self::error(array( 'data' => array( 'message' => $l->t('Authentication error'), 'error' => 'authentication_error' )));
03e52840d   Kload   Init
41
42
43
44
45
  			exit();
  		}
  	}
  
  	/**
6d9380f96   Cédric Dupont   Update sources OC...
46
  	 * Check an ajax get/post call if the request token is valid, send json error msg if not.
03e52840d   Kload   Init
47
48
49
50
  	 */
  	public static function callCheck() {
  		if( !OC_Util::isCallRegistered()) {
  			$l = OC_L10N::get('lib');
6d9380f96   Cédric Dupont   Update sources OC...
51
  			self::error(array( 'data' => array( 'message' => $l->t('Token expired. Please reload page.'), 'error' => 'token_expired' )));
03e52840d   Kload   Init
52
53
54
55
56
  			exit();
  		}
  	}
  
  	/**
6d9380f96   Cédric Dupont   Update sources OC...
57
  	* Check if the user is a admin, send json error msg if not.
03e52840d   Kload   Init
58
59
60
61
  	*/
  	public static function checkAdminUser() {
  		if( !OC_User::isAdminUser(OC_User::getUser())) {
  			$l = OC_L10N::get('lib');
6d9380f96   Cédric Dupont   Update sources OC...
62
  			self::error(array( 'data' => array( 'message' => $l->t('Authentication error'), 'error' => 'authentication_error' )));
03e52840d   Kload   Init
63
64
65
66
67
  			exit();
  		}
  	}
  
  	/**
a293d369c   Kload   Update sources to...
68
69
70
71
72
73
  	 * 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');
6d9380f96   Cédric Dupont   Update sources OC...
74
  			OCP\JSON::error(array('data' => array('message' => $l->t('Unknown user'), 'error' => 'unknown_user' )));
a293d369c   Kload   Update sources to...
75
76
77
78
79
80
81
  			exit;
  		}
  	}
  
  
  
  	/**
03e52840d   Kload   Init
82
83
84
85
86
  	* Check if the user is a subadmin, send json error msg if not
  	*/
  	public static function checkSubAdminUser() {
  		if(!OC_SubAdmin::isSubAdmin(OC_User::getUser())) {
  			$l = OC_L10N::get('lib');
6d9380f96   Cédric Dupont   Update sources OC...
87
  			self::error(array( 'data' => array( 'message' => $l->t('Authentication error'), 'error' => 'authentication_error' )));
03e52840d   Kload   Init
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
  			exit();
  		}
  	}
  
  	/**
  	* Send json error msg
  	*/
  	public static function error($data = array()) {
  		$data['status'] = 'error';
  		self::encodedPrint($data);
  	}
  
  	/**
  	* Send json success msg
  	*/
  	public static function success($data = array()) {
  		$data['status'] = 'success';
  		self::encodedPrint($data);
  	}
  
  	/**
  	 * Convert OC_L10N_String to string, for use in json encodings
  	 */
  	protected static function to_string(&$value) {
  		if ($value instanceof OC_L10N_String) {
  			$value = (string)$value;
  		}
  	}
  
  	/**
  	* Encode and print $data in json format
  	*/
  	public static function encodedPrint($data, $setContentType=true) {
03e52840d   Kload   Init
121
122
123
  		if($setContentType) {
  			self::setContentTypeHeader();
  		}
6d9380f96   Cédric Dupont   Update sources OC...
124
125
126
127
128
129
130
131
132
133
134
  		echo self::encode($data);
  	}
  
  	/**
  	 * Encode JSON
  	 */
  	public static function encode($data) {
  		if (is_array($data)) {
  			array_walk_recursive($data, array('OC_JSON', 'to_string'));
  		}
  		return json_encode($data);
03e52840d   Kload   Init
135
136
  	}
  }