You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Util.php 16KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529
  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 <oc.list@georgehrke.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 Julius Härtl <jus@bitgrid.net>
  14. * @author Lukas Reschke <lukas@statuscode.ch>
  15. * @author Michael Gapczynski <GapczynskiM@gmail.com>
  16. * @author Morris Jobke <hey@morrisjobke.de>
  17. * @author Nicolas Grekas <nicolas.grekas@gmail.com>
  18. * @author Pellaeon Lin <nfsmwlin@gmail.com>
  19. * @author Randolph Carter <RandolphCarter@fantasymail.de>
  20. * @author Robin Appelman <robin@icewind.nl>
  21. * @author Robin McCorkell <robin@mccorkell.me.uk>
  22. * @author Roeland Jago Douma <roeland@famdouma.nl>
  23. * @author Stefan Herbrechtsmeier <stefan@herbrechtsmeier.net>
  24. * @author Thomas Müller <thomas.mueller@tmit.eu>
  25. * @author Thomas Tanghus <thomas@tanghus.net>
  26. * @author Victor Dubiniuk <dubiniuk@owncloud.com>
  27. * @author Vincent Petry <pvince81@owncloud.com>
  28. *
  29. * @license AGPL-3.0
  30. *
  31. * This code is free software: you can redistribute it and/or modify
  32. * it under the terms of the GNU Affero General Public License, version 3,
  33. * as published by the Free Software Foundation.
  34. *
  35. * This program is distributed in the hope that it will be useful,
  36. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  37. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  38. * GNU Affero General Public License for more details.
  39. *
  40. * You should have received a copy of the GNU Affero General Public License, version 3,
  41. * along with this program. If not, see <http://www.gnu.org/licenses/>
  42. *
  43. */
  44. /**
  45. * Public interface of ownCloud for apps to use.
  46. * Utility Class.
  47. *
  48. */
  49. // use OCP namespace for all classes that are considered public.
  50. // This means that they should be used by apps instead of the internal ownCloud classes
  51. namespace OCP;
  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. /**
  58. * @deprecated 14.0.0 use \OCP\ILogger::DEBUG
  59. */
  60. const DEBUG=0;
  61. /**
  62. * @deprecated 14.0.0 use \OCP\ILogger::INFO
  63. */
  64. const INFO=1;
  65. /**
  66. * @deprecated 14.0.0 use \OCP\ILogger::WARN
  67. */
  68. const WARN=2;
  69. /**
  70. * @deprecated 14.0.0 use \OCP\ILogger::ERROR
  71. */
  72. const ERROR=3;
  73. /**
  74. * @deprecated 14.0.0 use \OCP\ILogger::FATAL
  75. */
  76. const FATAL=4;
  77. /** \OCP\Share\IManager */
  78. private static $shareManager;
  79. /**
  80. * get the current installed version of Nextcloud
  81. * @return array
  82. * @since 4.0.0
  83. */
  84. public static function getVersion() {
  85. return \OC_Util::getVersion();
  86. }
  87. /**
  88. * @since 17.0.0
  89. */
  90. public static function hasExtendedSupport(): bool {
  91. try {
  92. /** @var \OCP\Support\Subscription\IRegistry */
  93. $subscriptionRegistry = \OC::$server->query(\OCP\Support\Subscription\IRegistry::class);
  94. return $subscriptionRegistry->delegateHasExtendedSupport();
  95. } catch (AppFramework\QueryException $e) {}
  96. return \OC::$server->getConfig()->getSystemValueBool('extendedSupport', false);
  97. }
  98. /**
  99. * Set current update channel
  100. * @param string $channel
  101. * @since 8.1.0
  102. */
  103. public static function setChannel($channel) {
  104. \OC::$server->getConfig()->setSystemValue('updater.release.channel', $channel);
  105. }
  106. /**
  107. * Get current update channel
  108. * @return string
  109. * @since 8.1.0
  110. */
  111. public static function getChannel() {
  112. return \OC_Util::getChannel();
  113. }
  114. /**
  115. * write a message in the log
  116. * @param string $app
  117. * @param string $message
  118. * @param int $level
  119. * @since 4.0.0
  120. * @deprecated 13.0.0 use log of \OCP\ILogger
  121. */
  122. public static function writeLog( $app, $message, $level ) {
  123. $context = ['app' => $app];
  124. \OC::$server->getLogger()->log($level, $message, $context);
  125. }
  126. /**
  127. * check if sharing is disabled for the current user
  128. *
  129. * @return boolean
  130. * @since 7.0.0
  131. * @deprecated 9.1.0 Use \OC::$server->getShareManager()->sharingDisabledForUser
  132. */
  133. public static function isSharingDisabledForUser() {
  134. if (self::$shareManager === null) {
  135. self::$shareManager = \OC::$server->getShareManager();
  136. }
  137. $user = \OC::$server->getUserSession()->getUser();
  138. if ($user !== null) {
  139. $user = $user->getUID();
  140. }
  141. return self::$shareManager->sharingDisabledForUser($user);
  142. }
  143. /**
  144. * get l10n object
  145. * @param string $application
  146. * @param string|null $language
  147. * @return \OCP\IL10N
  148. * @since 6.0.0 - parameter $language was added in 8.0.0
  149. */
  150. public static function getL10N($application, $language = null) {
  151. return \OC::$server->getL10N($application, $language);
  152. }
  153. /**
  154. * add a css file
  155. * @param string $application
  156. * @param string $file
  157. * @since 4.0.0
  158. */
  159. public static function addStyle( $application, $file = null ) {
  160. \OC_Util::addStyle( $application, $file );
  161. }
  162. /**
  163. * add a javascript file
  164. * @param string $application
  165. * @param string $file
  166. * @since 4.0.0
  167. */
  168. public static function addScript( $application, $file = null ) {
  169. \OC_Util::addScript( $application, $file );
  170. }
  171. /**
  172. * Add a translation JS file
  173. * @param string $application application id
  174. * @param string $languageCode language code, defaults to the current locale
  175. * @since 8.0.0
  176. */
  177. public static function addTranslations($application, $languageCode = null) {
  178. \OC_Util::addTranslations($application, $languageCode);
  179. }
  180. /**
  181. * Add a custom element to the header
  182. * If $text is null then the element will be written as empty element.
  183. * So use "" to get a closing tag.
  184. * @param string $tag tag name of the element
  185. * @param array $attributes array of attributes for the element
  186. * @param string $text the text content for the element
  187. * @since 4.0.0
  188. */
  189. public static function addHeader($tag, $attributes, $text=null) {
  190. \OC_Util::addHeader($tag, $attributes, $text);
  191. }
  192. /**
  193. * Creates an absolute url to the given app and file.
  194. * @param string $app app
  195. * @param string $file file
  196. * @param array $args array with param=>value, will be appended to the returned url
  197. * The value of $args will be urlencoded
  198. * @return string the url
  199. * @since 4.0.0 - parameter $args was added in 4.5.0
  200. */
  201. public static function linkToAbsolute( $app, $file, $args = array() ) {
  202. $urlGenerator = \OC::$server->getURLGenerator();
  203. return $urlGenerator->getAbsoluteURL(
  204. $urlGenerator->linkTo($app, $file, $args)
  205. );
  206. }
  207. /**
  208. * Creates an absolute url for remote use.
  209. * @param string $service id
  210. * @return string the url
  211. * @since 4.0.0
  212. */
  213. public static function linkToRemote( $service ) {
  214. $urlGenerator = \OC::$server->getURLGenerator();
  215. $remoteBase = $urlGenerator->linkTo('', 'remote.php') . '/' . $service;
  216. return $urlGenerator->getAbsoluteURL(
  217. $remoteBase . (($service[strlen($service) - 1] != '/') ? '/' : '')
  218. );
  219. }
  220. /**
  221. * Creates an absolute url for public use
  222. * @param string $service id
  223. * @return string the url
  224. * @since 4.5.0
  225. * @deprecated 15.0.0 - use OCP\IURLGenerator
  226. */
  227. public static function linkToPublic($service) {
  228. $urlGenerator = \OC::$server->getURLGenerator();
  229. if ($service === 'files') {
  230. return $urlGenerator->getAbsoluteURL('/s');
  231. }
  232. return $urlGenerator->getAbsoluteURL($urlGenerator->linkTo('', 'public.php').'?service='.$service);
  233. }
  234. /**
  235. * Returns the server host name without an eventual port number
  236. * @return string the server hostname
  237. * @since 5.0.0
  238. */
  239. public static function getServerHostName() {
  240. $host_name = \OC::$server->getRequest()->getServerHost();
  241. // strip away port number (if existing)
  242. $colon_pos = strpos($host_name, ':');
  243. if ($colon_pos != FALSE) {
  244. $host_name = substr($host_name, 0, $colon_pos);
  245. }
  246. return $host_name;
  247. }
  248. /**
  249. * Returns the default email address
  250. * @param string $user_part the user part of the address
  251. * @return string the default email address
  252. *
  253. * Assembles a default email address (using the server hostname
  254. * and the given user part, and returns it
  255. * Example: when given lostpassword-noreply as $user_part param,
  256. * and is currently accessed via http(s)://example.com/,
  257. * it would return 'lostpassword-noreply@example.com'
  258. *
  259. * If the configuration value 'mail_from_address' is set in
  260. * config.php, this value will override the $user_part that
  261. * is passed to this function
  262. * @since 5.0.0
  263. */
  264. public static function getDefaultEmailAddress($user_part) {
  265. $config = \OC::$server->getConfig();
  266. $user_part = $config->getSystemValue('mail_from_address', $user_part);
  267. $host_name = self::getServerHostName();
  268. $host_name = $config->getSystemValue('mail_domain', $host_name);
  269. $defaultEmailAddress = $user_part.'@'.$host_name;
  270. $mailer = \OC::$server->getMailer();
  271. if ($mailer->validateMailAddress($defaultEmailAddress)) {
  272. return $defaultEmailAddress;
  273. }
  274. // in case we cannot build a valid email address from the hostname let's fallback to 'localhost.localdomain'
  275. return $user_part.'@localhost.localdomain';
  276. }
  277. /**
  278. * Make a human file size (2048 to 2 kB)
  279. * @param int $bytes file size in bytes
  280. * @return string a human readable file size
  281. * @since 4.0.0
  282. */
  283. public static function humanFileSize($bytes) {
  284. return \OC_Helper::humanFileSize($bytes);
  285. }
  286. /**
  287. * Make a computer file size (2 kB to 2048)
  288. * @param string $str file size in a fancy format
  289. * @return float a file size in bytes
  290. *
  291. * Inspired by: http://www.php.net/manual/en/function.filesize.php#92418
  292. * @since 4.0.0
  293. */
  294. public static function computerFileSize($str) {
  295. return \OC_Helper::computerFileSize($str);
  296. }
  297. /**
  298. * connects a function to a hook
  299. *
  300. * @param string $signalClass class name of emitter
  301. * @param string $signalName name of signal
  302. * @param string|object $slotClass class name of slot
  303. * @param string $slotName name of slot
  304. * @return bool
  305. *
  306. * This function makes it very easy to connect to use hooks.
  307. *
  308. * TODO: write example
  309. * @since 4.0.0
  310. */
  311. static public function connectHook($signalClass, $signalName, $slotClass, $slotName) {
  312. return \OC_Hook::connect($signalClass, $signalName, $slotClass, $slotName);
  313. }
  314. /**
  315. * Emits a signal. To get data from the slot use references!
  316. * @param string $signalclass class name of emitter
  317. * @param string $signalname name of signal
  318. * @param array $params default: array() array with additional data
  319. * @return bool true if slots exists or false if not
  320. *
  321. * TODO: write example
  322. * @since 4.0.0
  323. */
  324. static public function emitHook($signalclass, $signalname, $params = array()) {
  325. return \OC_Hook::emit($signalclass, $signalname, $params);
  326. }
  327. /**
  328. * Cached encrypted CSRF token. Some static unit-tests of ownCloud compare
  329. * multiple OC_Template elements which invoke `callRegister`. If the value
  330. * would not be cached these unit-tests would fail.
  331. * @var string
  332. */
  333. private static $token = '';
  334. /**
  335. * Register an get/post call. This is important to prevent CSRF attacks
  336. * @since 4.5.0
  337. */
  338. public static function callRegister() {
  339. if(self::$token === '') {
  340. self::$token = \OC::$server->getCsrfTokenManager()->getToken()->getEncryptedValue();
  341. }
  342. return self::$token;
  343. }
  344. /**
  345. * Used to sanitize HTML
  346. *
  347. * This function is used to sanitize HTML and should be applied on any
  348. * string or array of strings before displaying it on a web page.
  349. *
  350. * @param string|array $value
  351. * @return string|array an array of sanitized strings or a single sanitized string, depends on the input parameter.
  352. * @since 4.5.0
  353. */
  354. public static function sanitizeHTML($value) {
  355. return \OC_Util::sanitizeHTML($value);
  356. }
  357. /**
  358. * Public function to encode url parameters
  359. *
  360. * This function is used to encode path to file before output.
  361. * Encoding is done according to RFC 3986 with one exception:
  362. * Character '/' is preserved as is.
  363. *
  364. * @param string $component part of URI to encode
  365. * @return string
  366. * @since 6.0.0
  367. */
  368. public static function encodePath($component) {
  369. return \OC_Util::encodePath($component);
  370. }
  371. /**
  372. * Returns an array with all keys from input lowercased or uppercased. Numbered indices are left as is.
  373. *
  374. * @param array $input The array to work on
  375. * @param int $case Either MB_CASE_UPPER or MB_CASE_LOWER (default)
  376. * @param string $encoding The encoding parameter is the character encoding. Defaults to UTF-8
  377. * @return array
  378. * @since 4.5.0
  379. */
  380. public static function mb_array_change_key_case($input, $case = MB_CASE_LOWER, $encoding = 'UTF-8') {
  381. return \OC_Helper::mb_array_change_key_case($input, $case, $encoding);
  382. }
  383. /**
  384. * performs a search in a nested array
  385. *
  386. * @param array $haystack the array to be searched
  387. * @param string $needle the search string
  388. * @param mixed $index optional, only search this key name
  389. * @return mixed the key of the matching field, otherwise false
  390. * @since 4.5.0
  391. * @deprecated 15.0.0
  392. */
  393. public static function recursiveArraySearch($haystack, $needle, $index = null) {
  394. return \OC_Helper::recursiveArraySearch($haystack, $needle, $index);
  395. }
  396. /**
  397. * calculates the maximum upload size respecting system settings, free space and user quota
  398. *
  399. * @param string $dir the current folder where the user currently operates
  400. * @param int $free the number of bytes free on the storage holding $dir, if not set this will be received from the storage directly
  401. * @return int number of bytes representing
  402. * @since 5.0.0
  403. */
  404. public static function maxUploadFilesize($dir, $free = null) {
  405. return \OC_Helper::maxUploadFilesize($dir, $free);
  406. }
  407. /**
  408. * Calculate free space left within user quota
  409. * @param string $dir the current folder where the user currently operates
  410. * @return int number of bytes representing
  411. * @since 7.0.0
  412. */
  413. public static function freeSpace($dir) {
  414. return \OC_Helper::freeSpace($dir);
  415. }
  416. /**
  417. * Calculate PHP upload limit
  418. *
  419. * @return int number of bytes representing
  420. * @since 7.0.0
  421. */
  422. public static function uploadLimit() {
  423. return \OC_Helper::uploadLimit();
  424. }
  425. /**
  426. * Returns whether the given file name is valid
  427. * @param string $file file name to check
  428. * @return bool true if the file name is valid, false otherwise
  429. * @deprecated 8.1.0 use \OC\Files\View::verifyPath()
  430. * @since 7.0.0
  431. * @suppress PhanDeprecatedFunction
  432. */
  433. public static function isValidFileName($file) {
  434. return \OC_Util::isValidFileName($file);
  435. }
  436. /**
  437. * Compare two strings to provide a natural sort
  438. * @param string $a first string to compare
  439. * @param string $b second string to compare
  440. * @return int -1 if $b comes before $a, 1 if $a comes before $b
  441. * or 0 if the strings are identical
  442. * @since 7.0.0
  443. */
  444. public static function naturalSortCompare($a, $b) {
  445. return \OC\NaturalSort::getInstance()->compare($a, $b);
  446. }
  447. /**
  448. * check if a password is required for each public link
  449. * @return boolean
  450. * @since 7.0.0
  451. */
  452. public static function isPublicLinkPasswordRequired() {
  453. return \OC_Util::isPublicLinkPasswordRequired();
  454. }
  455. /**
  456. * check if share API enforces a default expire date
  457. * @return boolean
  458. * @since 8.0.0
  459. */
  460. public static function isDefaultExpireDateEnforced() {
  461. return \OC_Util::isDefaultExpireDateEnforced();
  462. }
  463. protected static $needUpgradeCache = null;
  464. /**
  465. * Checks whether the current version needs upgrade.
  466. *
  467. * @return bool true if upgrade is needed, false otherwise
  468. * @since 7.0.0
  469. */
  470. public static function needUpgrade() {
  471. if (!isset(self::$needUpgradeCache)) {
  472. self::$needUpgradeCache=\OC_Util::needUpgrade(\OC::$server->getSystemConfig());
  473. }
  474. return self::$needUpgradeCache;
  475. }
  476. /**
  477. * is this Internet explorer ?
  478. *
  479. * @return boolean
  480. * @since 14.0.0
  481. */
  482. public static function isIe() {
  483. return \OC_Util::isIe();
  484. }
  485. }