Blame view

sources/lib/public/util.php 16.2 KB
03e52840d   Kload   Init
1
2
  <?php
  /**
31b7f2792   Kload   Upgrade to ownclo...
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
   * ownCloud
   *
   * @author Frank Karlitschek
   * @copyright 2012 Frank Karlitschek frank@owncloud.org
   *
   * This library is free software; you can redistribute it and/or
   * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
   * License as published by the Free Software Foundation; either
   * version 3 of the License, or any later version.
   *
   * This library 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 along with this library.  If not, see <http://www.gnu.org/licenses/>.
   *
   */
03e52840d   Kload   Init
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
  
  /**
   * Public interface of ownCloud for apps to use.
   * Utility Class.
   *
   */
  
  // use OCP namespace for all classes that are considered public.
  // This means that they should be used by apps instead of the internal ownCloud classes
  namespace OCP;
  
  /**
   * This class provides different helper functions to make the life of a developer easier
   */
  class Util {
  	// consts for Logging
  	const DEBUG=0;
  	const INFO=1;
  	const WARN=2;
  	const ERROR=3;
  	const FATAL=4;
  
  	/**
31b7f2792   Kload   Upgrade to ownclo...
45
  	 * get the current installed version of ownCloud
03e52840d   Kload   Init
46
47
48
49
50
51
52
  	 * @return array
  	 */
  	public static function getVersion() {
  		return(\OC_Util::getVersion());
  	}
  
  	/**
31b7f2792   Kload   Upgrade to ownclo...
53
  	 * send an email
03e52840d   Kload   Init
54
55
56
57
58
59
  	 * @param string $toaddress
  	 * @param string $toname
  	 * @param string $subject
  	 * @param string $mailtext
  	 * @param string $fromaddress
  	 * @param string $fromname
6d9380f96   Cédric Dupont   Update sources OC...
60
  	 * @param int $html
31b7f2792   Kload   Upgrade to ownclo...
61
62
63
64
  	 * @param string $altbody
  	 * @param string $ccaddress
  	 * @param string $ccname
  	 * @param string $bcc
03e52840d   Kload   Init
65
66
67
68
69
70
71
72
73
  	 */
  	public static function sendMail( $toaddress, $toname, $subject, $mailtext, $fromaddress, $fromname,
  		$html = 0, $altbody = '', $ccaddress = '', $ccname = '', $bcc = '') {
  		// call the internal mail class
  		\OC_MAIL::send($toaddress, $toname, $subject, $mailtext, $fromaddress, $fromname,
  			$html, $altbody, $ccaddress, $ccname, $bcc);
  	}
  
  	/**
31b7f2792   Kload   Upgrade to ownclo...
74
  	 * write a message in the log
03e52840d   Kload   Init
75
76
77
78
79
80
81
82
83
84
  	 * @param string $app
  	 * @param string $message
  	 * @param int $level
  	 */
  	public static function writeLog( $app, $message, $level ) {
  		// call the internal log class
  		\OC_LOG::write( $app, $message, $level );
  	}
  
  	/**
31b7f2792   Kload   Upgrade to ownclo...
85
86
87
  	 * write exception into the log. Include the stack trace
  	 * if DEBUG mode is enabled
  	 * @param string $app app name
6d9380f96   Cédric Dupont   Update sources OC...
88
89
  	 * @param \Exception $ex exception to log
  	 * @param string $level log level, defaults to \OCP\Util::FATAL
31b7f2792   Kload   Upgrade to ownclo...
90
  	 */
6d9380f96   Cédric Dupont   Update sources OC...
91
  	public static function logException( $app, \Exception $ex, $level = \OCP\Util::FATAL ) {
a293d369c   Kload   Update sources to...
92
  		$class = get_class($ex);
837968727   Kload   [enh] Upgrade to ...
93
  		$message = $class . ': ' . $ex->getMessage();
31b7f2792   Kload   Upgrade to ownclo...
94
95
96
  		if ($ex->getCode()) {
  			$message .= ' [' . $ex->getCode() . ']';
  		}
6d9380f96   Cédric Dupont   Update sources OC...
97
  		\OCP\Util::writeLog($app, $message, $level);
31b7f2792   Kload   Upgrade to ownclo...
98
99
  		if (defined('DEBUG') and DEBUG) {
  			// also log stack trace
a293d369c   Kload   Update sources to...
100
101
  			$stack = explode("
  ", $ex->getTraceAsString());
31b7f2792   Kload   Upgrade to ownclo...
102
103
104
  			// first element is empty
  			array_shift($stack);
  			foreach ($stack as $s) {
6d9380f96   Cédric Dupont   Update sources OC...
105
  				\OCP\Util::writeLog($app, 'Exception: ' . $s, $level);
31b7f2792   Kload   Upgrade to ownclo...
106
107
108
  			}
  
  			// include cause
31b7f2792   Kload   Upgrade to ownclo...
109
  			while (method_exists($ex, 'getPrevious') && $ex = $ex->getPrevious()) {
a293d369c   Kload   Update sources to...
110
  				$message .= ' - Caused by:' . ' ';
31b7f2792   Kload   Upgrade to ownclo...
111
112
113
114
  				$message .= $ex->getMessage();
  				if ($ex->getCode()) {
  					$message .= '[' . $ex->getCode() . '] ';
  				}
6d9380f96   Cédric Dupont   Update sources OC...
115
  				\OCP\Util::writeLog($app, 'Exception: ' . $message, $level);
31b7f2792   Kload   Upgrade to ownclo...
116
117
118
119
120
  			}
  		}
  	}
  
  	/**
6d9380f96   Cédric Dupont   Update sources OC...
121
122
123
124
125
126
127
128
129
  	 * check if sharing is disabled for the current user
  	 *
  	 * @return boolean
  	 */
  	public static function isSharingDisabledForUser() {
  		return \OC_Util::isSharingDisabledForUser();
  	}
  
  	/**
31b7f2792   Kload   Upgrade to ownclo...
130
131
  	 * get l10n object
  	 * @param string $application
6d9380f96   Cédric Dupont   Update sources OC...
132
  	 * @return \OC_L10N
31b7f2792   Kload   Upgrade to ownclo...
133
134
135
136
137
138
139
140
141
  	 */
  	public static function getL10N( $application ) {
  		return \OC_L10N::get( $application );
  	}
  
  	/**
  	 * add a css file
  	 * @param string $application
  	 * @param string $file
03e52840d   Kload   Init
142
143
144
145
146
147
  	 */
  	public static function addStyle( $application, $file = null ) {
  		\OC_Util::addStyle( $application, $file );
  	}
  
  	/**
31b7f2792   Kload   Upgrade to ownclo...
148
  	 * add a javascript file
03e52840d   Kload   Init
149
  	 * @param string $application
31b7f2792   Kload   Upgrade to ownclo...
150
  	 * @param string $file
03e52840d   Kload   Init
151
152
153
154
155
156
  	 */
  	public static function addScript( $application, $file = null ) {
  		\OC_Util::addScript( $application, $file );
  	}
  
  	/**
31b7f2792   Kload   Upgrade to ownclo...
157
  	 * Add a custom element to the header
03e52840d   Kload   Init
158
159
160
161
162
163
164
165
166
  	 * @param string $tag tag name of the element
  	 * @param array $attributes array of attributes for the element
  	 * @param string $text the text content for the element
  	 */
  	public static function addHeader( $tag, $attributes, $text='') {
  		\OC_Util::addHeader( $tag, $attributes, $text );
  	}
  
  	/**
31b7f2792   Kload   Upgrade to ownclo...
167
  	 * formats a timestamp in the "right" way
03e52840d   Kload   Init
168
169
  	 * @param int $timestamp $timestamp
  	 * @param bool $dateOnly option to omit time from the result
6d9380f96   Cédric Dupont   Update sources OC...
170
  	 * @return string timestamp
03e52840d   Kload   Init
171
172
173
174
175
176
  	 */
  	public static function formatDate( $timestamp, $dateOnly=false) {
  		return(\OC_Util::formatDate( $timestamp, $dateOnly ));
  	}
  
  	/**
31b7f2792   Kload   Upgrade to ownclo...
177
178
179
180
181
182
183
184
185
  	 * check if some encrypted files are stored
  	 * @return bool
  	 */
  	public static function encryptedFiles() {
  		return \OC_Util::encryptedFiles();
  	}
  
  	/**
  	 * Creates an absolute url to the given app and file.
03e52840d   Kload   Init
186
187
188
189
  	 * @param string $app app
  	 * @param string $file file
  	 * @param array $args array with param=>value, will be appended to the returned url
  	 * 	The value of $args will be urlencoded
31b7f2792   Kload   Upgrade to ownclo...
190
  	 * @return string the url
03e52840d   Kload   Init
191
192
193
194
195
196
  	 */
  	public static function linkToAbsolute( $app, $file, $args = array() ) {
  		return(\OC_Helper::linkToAbsolute( $app, $file, $args ));
  	}
  
  	/**
31b7f2792   Kload   Upgrade to ownclo...
197
  	 * Creates an absolute url for remote use.
03e52840d   Kload   Init
198
  	 * @param string $service id
31b7f2792   Kload   Upgrade to ownclo...
199
  	 * @return string the url
03e52840d   Kload   Init
200
201
202
203
204
205
  	 */
  	public static function linkToRemote( $service ) {
  		return(\OC_Helper::linkToRemote( $service ));
  	}
  
  	/**
31b7f2792   Kload   Upgrade to ownclo...
206
  	 * Creates an absolute url for public use
03e52840d   Kload   Init
207
  	 * @param string $service id
31b7f2792   Kload   Upgrade to ownclo...
208
  	 * @return string the url
03e52840d   Kload   Init
209
210
211
212
213
214
  	 */
  	public static function linkToPublic($service) {
  		return \OC_Helper::linkToPublic($service);
  	}
  
  	/**
31b7f2792   Kload   Upgrade to ownclo...
215
  	 * Creates an url using a defined route
6d9380f96   Cédric Dupont   Update sources OC...
216
  	 * @param string $route
03e52840d   Kload   Init
217
  	 * @param array $parameters
03e52840d   Kload   Init
218
  	 * @internal param array $args with param=>value, will be appended to the returned url
6d9380f96   Cédric Dupont   Update sources OC...
219
  	 * @return string the url
03e52840d   Kload   Init
220
221
222
223
224
225
  	 */
  	public static function linkToRoute( $route, $parameters = array() ) {
  		return \OC_Helper::linkToRoute($route, $parameters);
  	}
  
  	/**
31b7f2792   Kload   Upgrade to ownclo...
226
  	* Creates an url to the given app and file
03e52840d   Kload   Init
227
228
229
230
  	* @param string $app app
  	* @param string $file file
  	* @param array $args array with param=>value, will be appended to the returned url
  	* 	The value of $args will be urlencoded
31b7f2792   Kload   Upgrade to ownclo...
231
  	* @return string the url
03e52840d   Kload   Init
232
233
234
235
236
237
  	*/
  	public static function linkTo( $app, $file, $args = array() ) {
  		return(\OC_Helper::linkTo( $app, $file, $args ));
  	}
  
  	/**
31b7f2792   Kload   Upgrade to ownclo...
238
239
  	 * Returns the server host, even if the website uses one or more reverse proxy
  	 * @return string the server host
03e52840d   Kload   Init
240
241
242
243
244
245
  	 */
  	public static function getServerHost() {
  		return(\OC_Request::serverHost());
  	}
  
  	/**
03e52840d   Kload   Init
246
  	 * Returns the server host name without an eventual port number
31b7f2792   Kload   Upgrade to ownclo...
247
  	 * @return string the server hostname
03e52840d   Kload   Init
248
249
250
251
252
253
254
255
256
257
258
259
  	 */
  	public static function getServerHostName() {
  		$host_name = self::getServerHost();
  		// strip away port number (if existing)
  		$colon_pos = strpos($host_name, ':');
  		if ($colon_pos != FALSE) {
  			$host_name = substr($host_name, 0, $colon_pos);
  		}
  		return $host_name;
  	}
  
  	/**
31b7f2792   Kload   Upgrade to ownclo...
260
  	 * Returns the default email address
03e52840d   Kload   Init
261
  	 * @param string $user_part the user part of the address
31b7f2792   Kload   Upgrade to ownclo...
262
  	 * @return string the default email address
03e52840d   Kload   Init
263
264
265
266
267
268
  	 *
  	 * Assembles a default email address (using the server hostname
  	 * and the given user part, and returns it
  	 * Example: when given lostpassword-noreply as $user_part param,
  	 *     and is currently accessed via http(s)://example.com/,
  	 *     it would return 'lostpassword-noreply@example.com'
6d9380f96   Cédric Dupont   Update sources OC...
269
270
271
272
  	 *
  	 * If the configuration value 'mail_from_address' is set in
  	 * config.php, this value will override the $user_part that
  	 * is passed to this function
03e52840d   Kload   Init
273
274
  	 */
  	public static function getDefaultEmailAddress($user_part) {
6d9380f96   Cédric Dupont   Update sources OC...
275
  		$user_part = \OC_Config::getValue('mail_from_address', $user_part);
03e52840d   Kload   Init
276
  		$host_name = self::getServerHostName();
31b7f2792   Kload   Upgrade to ownclo...
277
  		$host_name = \OC_Config::getValue('mail_domain', $host_name);
03e52840d   Kload   Init
278
  		$defaultEmailAddress = $user_part.'@'.$host_name;
6d9380f96   Cédric Dupont   Update sources OC...
279
  		if (\OC_Mail::validateAddress($defaultEmailAddress)) {
03e52840d   Kload   Init
280
281
282
283
284
285
286
287
  			return $defaultEmailAddress;
  		}
  
  		// in case we cannot build a valid email address from the hostname let's fallback to 'localhost.localdomain'
  		return $user_part.'@localhost.localdomain';
  	}
  
  	/**
03e52840d   Kload   Init
288
  	 * Returns the server protocol. It respects reverse proxy servers and load balancers
31b7f2792   Kload   Upgrade to ownclo...
289
  	 * @return string the server protocol
03e52840d   Kload   Init
290
291
292
293
294
295
  	 */
  	public static function getServerProtocol() {
  		return(\OC_Request::serverProtocol());
  	}
  
  	/**
31b7f2792   Kload   Upgrade to ownclo...
296
  	 * Returns the request uri, even if the website uses one or more reverse proxies
6d9380f96   Cédric Dupont   Update sources OC...
297
  	 * @return string the request uri
03e52840d   Kload   Init
298
299
300
301
302
303
  	 */
  	public static function getRequestUri() {
  		return(\OC_Request::requestUri());
  	}
  
  	/**
31b7f2792   Kload   Upgrade to ownclo...
304
  	 * Returns the script name, even if the website uses one or more reverse proxies
6d9380f96   Cédric Dupont   Update sources OC...
305
  	 * @return string the script name
03e52840d   Kload   Init
306
307
308
309
310
311
  	 */
  	public static function getScriptName() {
  		return(\OC_Request::scriptName());
  	}
  
  	/**
31b7f2792   Kload   Upgrade to ownclo...
312
  	 * Creates path to an image
03e52840d   Kload   Init
313
314
  	 * @param string $app app
  	 * @param string $image image name
31b7f2792   Kload   Upgrade to ownclo...
315
  	 * @return string the url
03e52840d   Kload   Init
316
317
318
319
320
321
  	 */
  	public static function imagePath( $app, $image ) {
  		return(\OC_Helper::imagePath( $app, $image ));
  	}
  
  	/**
31b7f2792   Kload   Upgrade to ownclo...
322
  	 * Make a human file size (2048 to 2 kB)
03e52840d   Kload   Init
323
  	 * @param int $bytes file size in bytes
31b7f2792   Kload   Upgrade to ownclo...
324
  	 * @return string a human readable file size
03e52840d   Kload   Init
325
326
327
328
329
330
  	 */
  	public static function humanFileSize( $bytes ) {
  		return(\OC_Helper::humanFileSize( $bytes ));
  	}
  
  	/**
31b7f2792   Kload   Upgrade to ownclo...
331
  	 * Make a computer file size (2 kB to 2048)
03e52840d   Kload   Init
332
  	 * @param string $str file size in a fancy format
31b7f2792   Kload   Upgrade to ownclo...
333
  	 * @return int a file size in bytes
03e52840d   Kload   Init
334
335
336
337
338
339
340
341
  	 *
  	 * Inspired by: http://www.php.net/manual/en/function.filesize.php#92418
  	 */
  	public static function computerFileSize( $str ) {
  		return(\OC_Helper::computerFileSize( $str ));
  	}
  
  	/**
31b7f2792   Kload   Upgrade to ownclo...
342
  	 * connects a function to a hook
03e52840d   Kload   Init
343
344
345
346
  	 * @param string $signalclass class name of emitter
  	 * @param string $signalname name of signal
  	 * @param string $slotclass class name of slot
  	 * @param string $slotname name of slot
31b7f2792   Kload   Upgrade to ownclo...
347
  	 * @return bool
03e52840d   Kload   Init
348
349
350
351
352
353
354
355
356
357
  	 *
  	 * This function makes it very easy to connect to use hooks.
  	 *
  	 * TODO: write example
  	 */
  	static public function connectHook( $signalclass, $signalname, $slotclass, $slotname ) {
  		return(\OC_Hook::connect( $signalclass, $signalname, $slotclass, $slotname ));
  	}
  
  	/**
31b7f2792   Kload   Upgrade to ownclo...
358
  	 * Emits a signal. To get data from the slot use references!
03e52840d   Kload   Init
359
360
  	 * @param string $signalclass class name of emitter
  	 * @param string $signalname name of signal
6d9380f96   Cédric Dupont   Update sources OC...
361
  	 * @param array $params default: array() array with additional data
31b7f2792   Kload   Upgrade to ownclo...
362
  	 * @return bool true if slots exists or false if not
03e52840d   Kload   Init
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
  	 *
  	 * TODO: write example
  	 */
  	static public function emitHook( $signalclass, $signalname, $params = array()) {
  		return(\OC_Hook::emit( $signalclass, $signalname, $params ));
  	}
  
  	/**
  	 * Register an get/post call. This is important to prevent CSRF attacks
  	 * TODO: write example
  	 */
  	public static function callRegister() {
  		return(\OC_Util::callRegister());
  	}
  
  	/**
  	 * Check an ajax get/post call if the request token is valid. exit if not.
  	 * Todo: Write howto
  	 */
  	public static function callCheck() {
  		\OC_Util::callCheck();
  	}
  
  	/**
31b7f2792   Kload   Upgrade to ownclo...
387
  	 * Used to sanitize HTML
03e52840d   Kload   Init
388
389
390
391
  	 *
  	 * This function is used to sanitize HTML and should be applied on any
  	 * string or array of strings before displaying it on a web page.
  	 *
6d9380f96   Cédric Dupont   Update sources OC...
392
393
  	 * @param string|array $value
  	 * @return string|array an array of sanitized strings or a single sinitized string, depends on the input parameter.
03e52840d   Kload   Init
394
395
396
397
398
399
  	 */
  	public static function sanitizeHTML( $value ) {
  		return(\OC_Util::sanitizeHTML($value));
  	}
  
  	/**
31b7f2792   Kload   Upgrade to ownclo...
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
  	 * Public function to encode url parameters
  	 *
  	 * This function is used to encode path to file before output.
  	 * Encoding is done according to RFC 3986 with one exception:
  	 * Character '/' is preserved as is.
  	 *
  	 * @param string $component part of URI to encode
  	 * @return string
  	 */
  	public static function encodePath($component) {
  		return(\OC_Util::encodePath($component));
  	}
  
  	/**
  	 * Returns an array with all keys from input lowercased or uppercased. Numbered indices are left as is.
  	 *
  	 * @param array $input The array to work on
  	 * @param int $case Either MB_CASE_UPPER or MB_CASE_LOWER (default)
  	 * @param string $encoding The encoding parameter is the character encoding. Defaults to UTF-8
  	 * @return array
  	 */
03e52840d   Kload   Init
421
422
423
424
425
  	public static function mb_array_change_key_case($input, $case = MB_CASE_LOWER, $encoding = 'UTF-8') {
  		return(\OC_Helper::mb_array_change_key_case($input, $case, $encoding));
  	}
  
  	/**
31b7f2792   Kload   Upgrade to ownclo...
426
427
428
429
430
431
432
433
434
  	 * replaces a copy of string delimited by the start and (optionally) length parameters with the string given in replacement.
  	 *
  	 * @param string $string The input string. Opposite to the PHP build-in function does not accept an array.
  	 * @param string $replacement The replacement string.
  	 * @param int $start If start is positive, the replacing will begin at the start'th offset into string. If start is negative, the replacing will begin at the start'th character from the end of string.
  	 * @param int $length Length of the part to be replaced
  	 * @param string $encoding The encoding parameter is the character encoding. Defaults to UTF-8
  	 * @return string
  	 */
03e52840d   Kload   Init
435
436
437
438
439
  	public static function mb_substr_replace($string, $replacement, $start, $length = null, $encoding = 'UTF-8') {
  		return(\OC_Helper::mb_substr_replace($string, $replacement, $start, $length, $encoding));
  	}
  
  	/**
31b7f2792   Kload   Upgrade to ownclo...
440
441
442
443
444
445
446
447
448
  	 * Replace all occurrences of the search string with the replacement string
  	 *
  	 * @param string $search The value being searched for, otherwise known as the needle. String.
  	 * @param string $replace The replacement string.
  	 * @param string $subject The string or array being searched and replaced on, otherwise known as the haystack.
  	 * @param string $encoding The encoding parameter is the character encoding. Defaults to UTF-8
  	 * @param int $count If passed, this will be set to the number of replacements performed.
  	 * @return string
  	 */
03e52840d   Kload   Init
449
450
451
452
453
  	public static function mb_str_replace($search, $replace, $subject, $encoding = 'UTF-8', &$count = null) {
  		return(\OC_Helper::mb_str_replace($search, $replace, $subject, $encoding, $count));
  	}
  
  	/**
31b7f2792   Kload   Upgrade to ownclo...
454
455
456
457
458
459
460
  	 * performs a search in a nested array
  	 *
  	 * @param array $haystack the array to be searched
  	 * @param string $needle the search string
  	 * @param int $index optional, only search this key name
  	 * @return mixed the key of the matching field, otherwise false
  	 */
03e52840d   Kload   Init
461
462
463
464
465
  	public static function recursiveArraySearch($haystack, $needle, $index = null) {
  		return(\OC_Helper::recursiveArraySearch($haystack, $needle, $index));
  	}
  
  	/**
31b7f2792   Kload   Upgrade to ownclo...
466
  	 * calculates the maximum upload size respecting system settings, free space and user quota
03e52840d   Kload   Init
467
  	 *
6d9380f96   Cédric Dupont   Update sources OC...
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
  	 * @param string $dir the current folder where the user currently operates
  	 * @param int $free the number of bytes free on the storage holding $dir, if not set this will be received from the storage directly
  	 * @return int number of bytes representing
  	 */
  	public static function maxUploadFilesize($dir, $free = null) {
  		return \OC_Helper::maxUploadFilesize($dir, $free);
  	}
  
  	/**
  	 * Calculate free space left within user quota
  	 * @param string $dir the current folder where the user currently operates
  	 * @return int number of bytes representing
  	 */
  	public static function freeSpace($dir) {
  		return \OC_Helper::freeSpace($dir);
  	}
  
  	/**
  	 * Calculate PHP upload limit
  	 *
  	 * @return int number of bytes representing
  	 */
  	public static function uploadLimit() {
  		return \OC_Helper::uploadLimit();
  	}
  
  	/**
  	 * Returns whether the given file name is valid
  	 * @param string $file file name to check
  	 * @return bool true if the file name is valid, false otherwise
  	 */
  	public static function isValidFileName($file) {
  		return \OC_Util::isValidFileName($file);
  	}
  
  	/**
  	 * Generates a cryptographic secure pseudo-random string
  	 * @param int $length of the random string
  	 * @return string
  	 */
  	public static function generateRandomBytes($length = 30) {
  		return \OC_Util::generateRandomBytes($length);
  	}
  
  	/**
  	 * check if a password is required for each public link
  	 * @return boolean
  	 */
  	public static function isPublicLinkPasswordRequired() {
  		return \OC_Util::isPublicLinkPasswordRequired();
  	}
  
  	/**
  	 * check if share API enforces a default expire date
  	 * @return boolean
  	 */
  	public static function isDefaultExpireDateEnforced() {
  		return \OC_Util::isDefaultExpireDateEnforced();
  	}
  
  
  	/**
  	 * Checks whether the current version needs upgrade.
  	 *
  	 * @return bool true if upgrade is needed, false otherwise
03e52840d   Kload   Init
533
  	 */
6d9380f96   Cédric Dupont   Update sources OC...
534
535
  	public static function needUpgrade() {
  		return \OC_Util::needUpgrade();
03e52840d   Kload   Init
536
537
  	}
  }