util.php 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703
  1. <?php
  2. /**
  3. * @copyright Copyright (c) 2016, ownCloud, Inc.
  4. *
  5. * @author Arthur Schiwon <blizzz@arthur-schiwon.de>
  6. * @author Bart Visscher <bartv@thisnet.nl>
  7. * @author Björn Schießle <bjoern@schiessle.org>
  8. * @author Frank Karlitschek <frank@karlitschek.de>
  9. * @author Georg Ehrke <georg@owncloud.com>
  10. * @author Individual IT Services <info@individual-it.net>
  11. * @author Jens-Christian Fischer <jens-christian.fischer@switch.ch>
  12. * @author Joas Schilling <coding@schilljs.com>
  13. * @author Lukas Reschke <lukas@statuscode.ch>
  14. * @author Michael Gapczynski <GapczynskiM@gmail.com>
  15. * @author Morris Jobke <hey@morrisjobke.de>
  16. * @author Nicolas Grekas <nicolas.grekas@gmail.com>
  17. * @author Pellaeon Lin <nfsmwlin@gmail.com>
  18. * @author Randolph Carter <RandolphCarter@fantasymail.de>
  19. * @author Robin Appelman <robin@icewind.nl>
  20. * @author Robin McCorkell <robin@mccorkell.me.uk>
  21. * @author Roeland Jago Douma <roeland@famdouma.nl>
  22. * @author Stefan Herbrechtsmeier <stefan@herbrechtsmeier.net>
  23. * @author Thomas Müller <thomas.mueller@tmit.eu>
  24. * @author Thomas Tanghus <thomas@tanghus.net>
  25. * @author Victor Dubiniuk <dubiniuk@owncloud.com>
  26. * @author Vincent Petry <pvince81@owncloud.com>
  27. *
  28. * @license AGPL-3.0
  29. *
  30. * This code is free software: you can redistribute it and/or modify
  31. * it under the terms of the GNU Affero General Public License, version 3,
  32. * as published by the Free Software Foundation.
  33. *
  34. * This program is distributed in the hope that it will be useful,
  35. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  36. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  37. * GNU Affero General Public License for more details.
  38. *
  39. * You should have received a copy of the GNU Affero General Public License, version 3,
  40. * along with this program. If not, see <http://www.gnu.org/licenses/>
  41. *
  42. */
  43. /**
  44. * Public interface of ownCloud for apps to use.
  45. * Utility Class.
  46. *
  47. */
  48. // use OCP namespace for all classes that are considered public.
  49. // This means that they should be used by apps instead of the internal ownCloud classes
  50. namespace OCP;
  51. use DateTimeZone;
  52. /**
  53. * This class provides different helper functions to make the life of a developer easier
  54. * @since 4.0.0
  55. */
  56. class Util {
  57. // consts for Logging
  58. const DEBUG=0;
  59. const INFO=1;
  60. const WARN=2;
  61. const ERROR=3;
  62. const FATAL=4;
  63. /**
  64. * get the current installed version of ownCloud
  65. * @return array
  66. * @since 4.0.0
  67. */
  68. public static function getVersion() {
  69. return(\OC_Util::getVersion());
  70. }
  71. /**
  72. * Set current update channel
  73. * @param string $channel
  74. * @since 8.1.0
  75. */
  76. public static function setChannel($channel) {
  77. //Flush timestamp to reload version.php
  78. \OC::$server->getConfig()->setSystemValue('updater.release.channel', $channel);
  79. \OC::$server->getSession()->set('OC_Version_Timestamp', 0);
  80. }
  81. /**
  82. * Get current update channel
  83. * @return string
  84. * @since 8.1.0
  85. */
  86. public static function getChannel() {
  87. return \OC_Util::getChannel();
  88. }
  89. /**
  90. * send an email
  91. * @param string $toaddress
  92. * @param string $toname
  93. * @param string $subject
  94. * @param string $mailtext
  95. * @param string $fromaddress
  96. * @param string $fromname
  97. * @param int $html
  98. * @param string $altbody
  99. * @param string $ccaddress
  100. * @param string $ccname
  101. * @param string $bcc
  102. * @deprecated 8.1.0 Use \OCP\Mail\IMailer instead
  103. * @since 4.0.0
  104. */
  105. public static function sendMail($toaddress, $toname, $subject, $mailtext, $fromaddress, $fromname,
  106. $html = 0, $altbody = '', $ccaddress = '', $ccname = '', $bcc = '') {
  107. $mailer = \OC::$server->getMailer();
  108. $message = $mailer->createMessage();
  109. $message->setTo([$toaddress => $toname]);
  110. $message->setSubject($subject);
  111. $message->setPlainBody($mailtext);
  112. $message->setFrom([$fromaddress => $fromname]);
  113. if($html === 1) {
  114. $message->setHTMLBody($altbody);
  115. }
  116. if($altbody === '') {
  117. $message->setHTMLBody($mailtext);
  118. $message->setPlainBody('');
  119. } else {
  120. $message->setHtmlBody($mailtext);
  121. $message->setPlainBody($altbody);
  122. }
  123. if(!empty($ccaddress)) {
  124. if(!empty($ccname)) {
  125. $message->setCc([$ccaddress => $ccname]);
  126. } else {
  127. $message->setCc([$ccaddress]);
  128. }
  129. }
  130. if(!empty($bcc)) {
  131. $message->setBcc([$bcc]);
  132. }
  133. $mailer->send($message);
  134. }
  135. /**
  136. * write a message in the log
  137. * @param string $app
  138. * @param string $message
  139. * @param int $level
  140. * @since 4.0.0
  141. */
  142. public static function writeLog( $app, $message, $level ) {
  143. $context = ['app' => $app];
  144. \OC::$server->getLogger()->log($level, $message, $context);
  145. }
  146. /**
  147. * write exception into the log
  148. * @param string $app app name
  149. * @param \Exception $ex exception to log
  150. * @param int $level log level, defaults to \OCP\Util::FATAL
  151. * @since ....0.0 - parameter $level was added in 7.0.0
  152. * @deprecated 8.2.0 use logException of \OCP\ILogger
  153. */
  154. public static function logException( $app, \Exception $ex, $level = \OCP\Util::FATAL ) {
  155. \OC::$server->getLogger()->logException($ex, ['app' => $app]);
  156. }
  157. /**
  158. * check if sharing is disabled for the current user
  159. *
  160. * @return boolean
  161. * @since 7.0.0
  162. */
  163. public static function isSharingDisabledForUser() {
  164. return \OC_Util::isSharingDisabledForUser(
  165. \OC::$server->getConfig(),
  166. \OC::$server->getGroupManager(),
  167. \OC::$server->getUserSession()->getUser()
  168. );
  169. }
  170. /**
  171. * get l10n object
  172. * @param string $application
  173. * @param string|null $language
  174. * @return \OC_L10N
  175. * @since 6.0.0 - parameter $language was added in 8.0.0
  176. */
  177. public static function getL10N($application, $language = null) {
  178. return \OC::$server->getL10N($application, $language);
  179. }
  180. /**
  181. * add a css file
  182. * @param string $application
  183. * @param string $file
  184. * @since 4.0.0
  185. */
  186. public static function addStyle( $application, $file = null ) {
  187. \OC_Util::addStyle( $application, $file );
  188. }
  189. /**
  190. * add a javascript file
  191. * @param string $application
  192. * @param string $file
  193. * @since 4.0.0
  194. */
  195. public static function addScript( $application, $file = null ) {
  196. \OC_Util::addScript( $application, $file );
  197. }
  198. /**
  199. * Add a translation JS file
  200. * @param string $application application id
  201. * @param string $languageCode language code, defaults to the current locale
  202. * @since 8.0.0
  203. */
  204. public static function addTranslations($application, $languageCode = null) {
  205. \OC_Util::addTranslations($application, $languageCode);
  206. }
  207. /**
  208. * Add a custom element to the header
  209. * If $text is null then the element will be written as empty element.
  210. * So use "" to get a closing tag.
  211. * @param string $tag tag name of the element
  212. * @param array $attributes array of attributes for the element
  213. * @param string $text the text content for the element
  214. * @since 4.0.0
  215. */
  216. public static function addHeader($tag, $attributes, $text=null) {
  217. \OC_Util::addHeader($tag, $attributes, $text);
  218. }
  219. /**
  220. * formats a timestamp in the "right" way
  221. * @param int $timestamp $timestamp
  222. * @param bool $dateOnly option to omit time from the result
  223. * @param DateTimeZone|string $timeZone where the given timestamp shall be converted to
  224. * @return string timestamp
  225. *
  226. * @deprecated 8.0.0 Use \OC::$server->query('DateTimeFormatter') instead
  227. * @since 4.0.0
  228. */
  229. public static function formatDate($timestamp, $dateOnly=false, $timeZone = null) {
  230. return(\OC_Util::formatDate($timestamp, $dateOnly, $timeZone));
  231. }
  232. /**
  233. * check if some encrypted files are stored
  234. * @return bool
  235. *
  236. * @deprecated 8.1.0 No longer required
  237. * @since 6.0.0
  238. */
  239. public static function encryptedFiles() {
  240. return false;
  241. }
  242. /**
  243. * Creates an absolute url to the given app and file.
  244. * @param string $app app
  245. * @param string $file file
  246. * @param array $args array with param=>value, will be appended to the returned url
  247. * The value of $args will be urlencoded
  248. * @return string the url
  249. * @since 4.0.0 - parameter $args was added in 4.5.0
  250. */
  251. public static function linkToAbsolute( $app, $file, $args = array() ) {
  252. $urlGenerator = \OC::$server->getURLGenerator();
  253. return $urlGenerator->getAbsoluteURL(
  254. $urlGenerator->linkTo($app, $file, $args)
  255. );
  256. }
  257. /**
  258. * Creates an absolute url for remote use.
  259. * @param string $service id
  260. * @return string the url
  261. * @since 4.0.0
  262. */
  263. public static function linkToRemote( $service ) {
  264. $urlGenerator = \OC::$server->getURLGenerator();
  265. $remoteBase = $urlGenerator->linkTo('', 'remote.php') . '/' . $service;
  266. return $urlGenerator->getAbsoluteURL(
  267. $remoteBase . (($service[strlen($service) - 1] != '/') ? '/' : '')
  268. );
  269. }
  270. /**
  271. * Creates an absolute url for public use
  272. * @param string $service id
  273. * @return string the url
  274. * @since 4.5.0
  275. */
  276. public static function linkToPublic($service) {
  277. return \OC_Helper::linkToPublic($service);
  278. }
  279. /**
  280. * Creates an url using a defined route
  281. * @param string $route
  282. * @param array $parameters
  283. * @internal param array $args with param=>value, will be appended to the returned url
  284. * @return string the url
  285. * @deprecated 8.1.0 Use \OC::$server->getURLGenerator()->linkToRoute($route, $parameters)
  286. * @since 5.0.0
  287. */
  288. public static function linkToRoute( $route, $parameters = array() ) {
  289. return \OC::$server->getURLGenerator()->linkToRoute($route, $parameters);
  290. }
  291. /**
  292. * Creates an url to the given app and file
  293. * @param string $app app
  294. * @param string $file file
  295. * @param array $args array with param=>value, will be appended to the returned url
  296. * The value of $args will be urlencoded
  297. * @return string the url
  298. * @deprecated 8.1.0 Use \OC::$server->getURLGenerator()->linkTo($app, $file, $args)
  299. * @since 4.0.0 - parameter $args was added in 4.5.0
  300. */
  301. public static function linkTo( $app, $file, $args = array() ) {
  302. return \OC::$server->getURLGenerator()->linkTo($app, $file, $args);
  303. }
  304. /**
  305. * Returns the server host, even if the website uses one or more reverse proxy
  306. * @return string the server host
  307. * @deprecated 8.1.0 Use \OCP\IRequest::getServerHost
  308. * @since 4.0.0
  309. */
  310. public static function getServerHost() {
  311. return \OC::$server->getRequest()->getServerHost();
  312. }
  313. /**
  314. * Returns the server host name without an eventual port number
  315. * @return string the server hostname
  316. * @since 5.0.0
  317. */
  318. public static function getServerHostName() {
  319. $host_name = self::getServerHost();
  320. // strip away port number (if existing)
  321. $colon_pos = strpos($host_name, ':');
  322. if ($colon_pos != FALSE) {
  323. $host_name = substr($host_name, 0, $colon_pos);
  324. }
  325. return $host_name;
  326. }
  327. /**
  328. * Returns the default email address
  329. * @param string $user_part the user part of the address
  330. * @return string the default email address
  331. *
  332. * Assembles a default email address (using the server hostname
  333. * and the given user part, and returns it
  334. * Example: when given lostpassword-noreply as $user_part param,
  335. * and is currently accessed via http(s)://example.com/,
  336. * it would return 'lostpassword-noreply@example.com'
  337. *
  338. * If the configuration value 'mail_from_address' is set in
  339. * config.php, this value will override the $user_part that
  340. * is passed to this function
  341. * @since 5.0.0
  342. */
  343. public static function getDefaultEmailAddress($user_part) {
  344. $config = \OC::$server->getConfig();
  345. $user_part = $config->getSystemValue('mail_from_address', $user_part);
  346. $host_name = self::getServerHostName();
  347. $host_name = $config->getSystemValue('mail_domain', $host_name);
  348. $defaultEmailAddress = $user_part.'@'.$host_name;
  349. $mailer = \OC::$server->getMailer();
  350. if ($mailer->validateMailAddress($defaultEmailAddress)) {
  351. return $defaultEmailAddress;
  352. }
  353. // in case we cannot build a valid email address from the hostname let's fallback to 'localhost.localdomain'
  354. return $user_part.'@localhost.localdomain';
  355. }
  356. /**
  357. * Returns the server protocol. It respects reverse proxy servers and load balancers
  358. * @return string the server protocol
  359. * @deprecated 8.1.0 Use \OCP\IRequest::getServerProtocol
  360. * @since 4.5.0
  361. */
  362. public static function getServerProtocol() {
  363. return \OC::$server->getRequest()->getServerProtocol();
  364. }
  365. /**
  366. * Returns the request uri, even if the website uses one or more reverse proxies
  367. * @return string the request uri
  368. * @deprecated 8.1.0 Use \OCP\IRequest::getRequestUri
  369. * @since 5.0.0
  370. */
  371. public static function getRequestUri() {
  372. return \OC::$server->getRequest()->getRequestUri();
  373. }
  374. /**
  375. * Returns the script name, even if the website uses one or more reverse proxies
  376. * @return string the script name
  377. * @deprecated 8.1.0 Use \OCP\IRequest::getScriptName
  378. * @since 5.0.0
  379. */
  380. public static function getScriptName() {
  381. return \OC::$server->getRequest()->getScriptName();
  382. }
  383. /**
  384. * Creates path to an image
  385. * @param string $app app
  386. * @param string $image image name
  387. * @return string the url
  388. * @deprecated 8.1.0 Use \OC::$server->getURLGenerator()->imagePath($app, $image)
  389. * @since 4.0.0
  390. */
  391. public static function imagePath( $app, $image ) {
  392. return \OC::$server->getURLGenerator()->imagePath($app, $image);
  393. }
  394. /**
  395. * Make a human file size (2048 to 2 kB)
  396. * @param int $bytes file size in bytes
  397. * @return string a human readable file size
  398. * @since 4.0.0
  399. */
  400. public static function humanFileSize( $bytes ) {
  401. return(\OC_Helper::humanFileSize( $bytes ));
  402. }
  403. /**
  404. * Make a computer file size (2 kB to 2048)
  405. * @param string $str file size in a fancy format
  406. * @return int a file size in bytes
  407. *
  408. * Inspired by: http://www.php.net/manual/en/function.filesize.php#92418
  409. * @since 4.0.0
  410. */
  411. public static function computerFileSize( $str ) {
  412. return(\OC_Helper::computerFileSize( $str ));
  413. }
  414. /**
  415. * connects a function to a hook
  416. *
  417. * @param string $signalClass class name of emitter
  418. * @param string $signalName name of signal
  419. * @param string|object $slotClass class name of slot
  420. * @param string $slotName name of slot
  421. * @return bool
  422. *
  423. * This function makes it very easy to connect to use hooks.
  424. *
  425. * TODO: write example
  426. * @since 4.0.0
  427. */
  428. static public function connectHook($signalClass, $signalName, $slotClass, $slotName ) {
  429. return(\OC_Hook::connect($signalClass, $signalName, $slotClass, $slotName ));
  430. }
  431. /**
  432. * Emits a signal. To get data from the slot use references!
  433. * @param string $signalclass class name of emitter
  434. * @param string $signalname name of signal
  435. * @param array $params default: array() array with additional data
  436. * @return bool true if slots exists or false if not
  437. *
  438. * TODO: write example
  439. * @since 4.0.0
  440. */
  441. static public function emitHook( $signalclass, $signalname, $params = array()) {
  442. return(\OC_Hook::emit( $signalclass, $signalname, $params ));
  443. }
  444. /**
  445. * Cached encrypted CSRF token. Some static unit-tests of ownCloud compare
  446. * multiple OC_Template elements which invoke `callRegister`. If the value
  447. * would not be cached these unit-tests would fail.
  448. * @var string
  449. */
  450. private static $token = '';
  451. /**
  452. * Register an get/post call. This is important to prevent CSRF attacks
  453. * @since 4.5.0
  454. */
  455. public static function callRegister() {
  456. if(self::$token === '') {
  457. self::$token = \OC::$server->getCsrfTokenManager()->getToken()->getEncryptedValue();
  458. }
  459. return self::$token;
  460. }
  461. /**
  462. * Check an ajax get/post call if the request token is valid. exit if not.
  463. * @since 4.5.0
  464. * @deprecated 9.0.0 Use annotations based on the app framework.
  465. */
  466. public static function callCheck() {
  467. if(!\OC::$server->getRequest()->passesStrictCookieCheck()) {
  468. header('Location: '.\OC::$WEBROOT);
  469. exit();
  470. }
  471. if (!(\OC::$server->getRequest()->passesCSRFCheck())) {
  472. exit();
  473. }
  474. }
  475. /**
  476. * Used to sanitize HTML
  477. *
  478. * This function is used to sanitize HTML and should be applied on any
  479. * string or array of strings before displaying it on a web page.
  480. *
  481. * @param string|array $value
  482. * @return string|array an array of sanitized strings or a single sanitized string, depends on the input parameter.
  483. * @since 4.5.0
  484. */
  485. public static function sanitizeHTML($value) {
  486. return \OC_Util::sanitizeHTML($value);
  487. }
  488. /**
  489. * Public function to encode url parameters
  490. *
  491. * This function is used to encode path to file before output.
  492. * Encoding is done according to RFC 3986 with one exception:
  493. * Character '/' is preserved as is.
  494. *
  495. * @param string $component part of URI to encode
  496. * @return string
  497. * @since 6.0.0
  498. */
  499. public static function encodePath($component) {
  500. return(\OC_Util::encodePath($component));
  501. }
  502. /**
  503. * Returns an array with all keys from input lowercased or uppercased. Numbered indices are left as is.
  504. *
  505. * @param array $input The array to work on
  506. * @param int $case Either MB_CASE_UPPER or MB_CASE_LOWER (default)
  507. * @param string $encoding The encoding parameter is the character encoding. Defaults to UTF-8
  508. * @return array
  509. * @since 4.5.0
  510. */
  511. public static function mb_array_change_key_case($input, $case = MB_CASE_LOWER, $encoding = 'UTF-8') {
  512. return(\OC_Helper::mb_array_change_key_case($input, $case, $encoding));
  513. }
  514. /**
  515. * replaces a copy of string delimited by the start and (optionally) length parameters with the string given in replacement.
  516. *
  517. * @param string $string The input string. Opposite to the PHP build-in function does not accept an array.
  518. * @param string $replacement The replacement string.
  519. * @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.
  520. * @param int $length Length of the part to be replaced
  521. * @param string $encoding The encoding parameter is the character encoding. Defaults to UTF-8
  522. * @return string
  523. * @since 4.5.0
  524. * @deprecated 8.2.0 Use substr_replace() instead.
  525. */
  526. public static function mb_substr_replace($string, $replacement, $start, $length = null, $encoding = 'UTF-8') {
  527. return substr_replace($string, $replacement, $start, $length);
  528. }
  529. /**
  530. * Replace all occurrences of the search string with the replacement string
  531. *
  532. * @param string $search The value being searched for, otherwise known as the needle. String.
  533. * @param string $replace The replacement string.
  534. * @param string $subject The string or array being searched and replaced on, otherwise known as the haystack.
  535. * @param string $encoding The encoding parameter is the character encoding. Defaults to UTF-8
  536. * @param int $count If passed, this will be set to the number of replacements performed.
  537. * @return string
  538. * @since 4.5.0
  539. * @deprecated 8.2.0 Use str_replace() instead.
  540. */
  541. public static function mb_str_replace($search, $replace, $subject, $encoding = 'UTF-8', &$count = null) {
  542. return str_replace($search, $replace, $subject, $count);
  543. }
  544. /**
  545. * performs a search in a nested array
  546. *
  547. * @param array $haystack the array to be searched
  548. * @param string $needle the search string
  549. * @param int $index optional, only search this key name
  550. * @return mixed the key of the matching field, otherwise false
  551. * @since 4.5.0
  552. */
  553. public static function recursiveArraySearch($haystack, $needle, $index = null) {
  554. return(\OC_Helper::recursiveArraySearch($haystack, $needle, $index));
  555. }
  556. /**
  557. * calculates the maximum upload size respecting system settings, free space and user quota
  558. *
  559. * @param string $dir the current folder where the user currently operates
  560. * @param int $free the number of bytes free on the storage holding $dir, if not set this will be received from the storage directly
  561. * @return int number of bytes representing
  562. * @since 5.0.0
  563. */
  564. public static function maxUploadFilesize($dir, $free = null) {
  565. return \OC_Helper::maxUploadFilesize($dir, $free);
  566. }
  567. /**
  568. * Calculate free space left within user quota
  569. * @param string $dir the current folder where the user currently operates
  570. * @return int number of bytes representing
  571. * @since 7.0.0
  572. */
  573. public static function freeSpace($dir) {
  574. return \OC_Helper::freeSpace($dir);
  575. }
  576. /**
  577. * Calculate PHP upload limit
  578. *
  579. * @return int number of bytes representing
  580. * @since 7.0.0
  581. */
  582. public static function uploadLimit() {
  583. return \OC_Helper::uploadLimit();
  584. }
  585. /**
  586. * Returns whether the given file name is valid
  587. * @param string $file file name to check
  588. * @return bool true if the file name is valid, false otherwise
  589. * @deprecated 8.1.0 use \OC\Files\View::verifyPath()
  590. * @since 7.0.0
  591. */
  592. public static function isValidFileName($file) {
  593. return \OC_Util::isValidFileName($file);
  594. }
  595. /**
  596. * Generates a cryptographic secure pseudo-random string
  597. * @param int $length of the random string
  598. * @return string
  599. * @deprecated 8.0.0 Use \OC::$server->getSecureRandom()->getMediumStrengthGenerator()->generate($length); instead
  600. * @since 7.0.0
  601. */
  602. public static function generateRandomBytes($length = 30) {
  603. return \OC::$server->getSecureRandom()->generate($length, \OCP\Security\ISecureRandom::CHAR_LOWER.\OCP\Security\ISecureRandom::CHAR_DIGITS);
  604. }
  605. /**
  606. * Compare two strings to provide a natural sort
  607. * @param string $a first string to compare
  608. * @param string $b second string to compare
  609. * @return -1 if $b comes before $a, 1 if $a comes before $b
  610. * or 0 if the strings are identical
  611. * @since 7.0.0
  612. */
  613. public static function naturalSortCompare($a, $b) {
  614. return \OC\NaturalSort::getInstance()->compare($a, $b);
  615. }
  616. /**
  617. * check if a password is required for each public link
  618. * @return boolean
  619. * @since 7.0.0
  620. */
  621. public static function isPublicLinkPasswordRequired() {
  622. return \OC_Util::isPublicLinkPasswordRequired();
  623. }
  624. /**
  625. * check if share API enforces a default expire date
  626. * @return boolean
  627. * @since 8.0.0
  628. */
  629. public static function isDefaultExpireDateEnforced() {
  630. return \OC_Util::isDefaultExpireDateEnforced();
  631. }
  632. protected static $needUpgradeCache = null;
  633. /**
  634. * Checks whether the current version needs upgrade.
  635. *
  636. * @return bool true if upgrade is needed, false otherwise
  637. * @since 7.0.0
  638. */
  639. public static function needUpgrade() {
  640. if (!isset(self::$needUpgradeCache)) {
  641. self::$needUpgradeCache=\OC_Util::needUpgrade(\OC::$server->getConfig());
  642. }
  643. return self::$needUpgradeCache;
  644. }
  645. }