Util.php 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609
  1. <?php
  2. /**
  3. * SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH and Nextcloud contributors
  4. * SPDX-FileCopyrightText: 2016 ownCloud, Inc.
  5. * SPDX-License-Identifier: AGPL-3.0-only
  6. */
  7. // use OCP namespace for all classes that are considered public.
  8. // This means that they should be used by apps instead of the internal Nextcloud classes
  9. namespace OCP;
  10. use bantu\IniGetWrapper\IniGetWrapper;
  11. use OC\AppScriptDependency;
  12. use OC\AppScriptSort;
  13. use OCP\Share\IManager;
  14. use Psr\Container\ContainerExceptionInterface;
  15. use Psr\Log\LoggerInterface;
  16. /**
  17. * This class provides different helper functions to make the life of a developer easier
  18. *
  19. * @since 4.0.0
  20. */
  21. class Util {
  22. private static ?IManager $shareManager = null;
  23. private static array $scriptsInit = [];
  24. private static array $scripts = [];
  25. private static array $scriptDeps = [];
  26. /**
  27. * get the current installed version of Nextcloud
  28. * @return array
  29. * @since 4.0.0
  30. */
  31. public static function getVersion() {
  32. return \OC_Util::getVersion();
  33. }
  34. /**
  35. * @since 17.0.0
  36. */
  37. public static function hasExtendedSupport(): bool {
  38. try {
  39. /** @var \OCP\Support\Subscription\IRegistry */
  40. $subscriptionRegistry = \OCP\Server::get(\OCP\Support\Subscription\IRegistry::class);
  41. return $subscriptionRegistry->delegateHasExtendedSupport();
  42. } catch (ContainerExceptionInterface $e) {
  43. }
  44. return \OC::$server->getConfig()->getSystemValueBool('extendedSupport', false);
  45. }
  46. /**
  47. * Set current update channel
  48. * @param string $channel
  49. * @since 8.1.0
  50. */
  51. public static function setChannel($channel) {
  52. \OC::$server->getConfig()->setSystemValue('updater.release.channel', $channel);
  53. }
  54. /**
  55. * Get current update channel
  56. * @return string
  57. * @since 8.1.0
  58. */
  59. public static function getChannel() {
  60. return \OC_Util::getChannel();
  61. }
  62. /**
  63. * check if sharing is disabled for the current user
  64. *
  65. * @return boolean
  66. * @since 7.0.0
  67. * @deprecated 9.1.0 Use \OC::$server->get(\OCP\Share\IManager::class)->sharingDisabledForUser
  68. */
  69. public static function isSharingDisabledForUser() {
  70. if (self::$shareManager === null) {
  71. self::$shareManager = \OC::$server->get(IManager::class);
  72. }
  73. $user = \OC::$server->getUserSession()->getUser();
  74. if ($user !== null) {
  75. $user = $user->getUID();
  76. }
  77. return self::$shareManager->sharingDisabledForUser($user);
  78. }
  79. /**
  80. * get l10n object
  81. * @since 6.0.0 - parameter $language was added in 8.0.0
  82. */
  83. public static function getL10N(string $application, ?string $language = null): IL10N {
  84. return Server::get(\OCP\L10N\IFactory::class)->get($application, $language);
  85. }
  86. /**
  87. * add a css file
  88. * @param string $application
  89. * @param string $file
  90. * @since 4.0.0
  91. */
  92. public static function addStyle($application, $file = null) {
  93. \OC_Util::addStyle($application, $file);
  94. }
  95. /**
  96. * Add a standalone init js file that is loaded for initialization
  97. *
  98. * Be careful loading scripts using this method as they are loaded early
  99. * and block the initial page rendering. They should not have dependencies
  100. * on any other scripts than core-common and core-main.
  101. *
  102. * @since 28.0.0
  103. */
  104. public static function addInitScript(string $application, string $file): void {
  105. if (!empty($application)) {
  106. $path = "$application/js/$file";
  107. } else {
  108. $path = "js/$file";
  109. }
  110. // We need to handle the translation BEFORE the init script
  111. // is loaded, as the init script might use translations
  112. if ($application !== 'core' && !str_contains($file, 'l10n')) {
  113. self::addTranslations($application, null, true);
  114. }
  115. self::$scriptsInit[] = $path;
  116. }
  117. /**
  118. * add a javascript file
  119. *
  120. * @param string $application
  121. * @param string|null $file
  122. * @param string $afterAppId
  123. * @param bool $prepend
  124. * @since 4.0.0
  125. */
  126. public static function addScript(string $application, ?string $file = null, string $afterAppId = 'core', bool $prepend = false): void {
  127. if (!empty($application)) {
  128. $path = "$application/js/$file";
  129. } else {
  130. $path = "js/$file";
  131. }
  132. // Inject js translations if we load a script for
  133. // a specific app that is not core, as those js files
  134. // need separate handling
  135. if ($application !== 'core'
  136. && $file !== null
  137. && !str_contains($file, 'l10n')) {
  138. self::addTranslations($application);
  139. }
  140. // store app in dependency list
  141. if (!array_key_exists($application, self::$scriptDeps)) {
  142. self::$scriptDeps[$application] = new AppScriptDependency($application, [$afterAppId]);
  143. } else {
  144. self::$scriptDeps[$application]->addDep($afterAppId);
  145. }
  146. if ($prepend) {
  147. array_unshift(self::$scripts[$application], $path);
  148. } else {
  149. self::$scripts[$application][] = $path;
  150. }
  151. }
  152. /**
  153. * Return the list of scripts injected to the page
  154. *
  155. * @return array
  156. * @since 24.0.0
  157. */
  158. public static function getScripts(): array {
  159. // Sort scriptDeps into sortedScriptDeps
  160. $scriptSort = \OC::$server->get(AppScriptSort::class);
  161. $sortedScripts = $scriptSort->sort(self::$scripts, self::$scriptDeps);
  162. // Flatten array and remove duplicates
  163. $sortedScripts = array_merge([self::$scriptsInit], $sortedScripts);
  164. $sortedScripts = array_merge(...array_values($sortedScripts));
  165. // Override core-common and core-main order
  166. if (in_array('core/js/main', $sortedScripts)) {
  167. array_unshift($sortedScripts, 'core/js/main');
  168. }
  169. if (in_array('core/js/common', $sortedScripts)) {
  170. array_unshift($sortedScripts, 'core/js/common');
  171. }
  172. return array_unique($sortedScripts);
  173. }
  174. /**
  175. * Add a translation JS file
  176. * @param string $application application id
  177. * @param string $languageCode language code, defaults to the current locale
  178. * @param bool $init whether the translations should be loaded early or not
  179. * @since 8.0.0
  180. */
  181. public static function addTranslations($application, $languageCode = null, $init = false) {
  182. if (is_null($languageCode)) {
  183. $languageCode = \OC::$server->getL10NFactory()->findLanguage($application);
  184. }
  185. if (!empty($application)) {
  186. $path = "$application/l10n/$languageCode";
  187. } else {
  188. $path = "l10n/$languageCode";
  189. }
  190. if ($init) {
  191. self::$scriptsInit[] = $path;
  192. } else {
  193. self::$scripts[$application][] = $path;
  194. }
  195. }
  196. /**
  197. * Add a custom element to the header
  198. * If $text is null then the element will be written as empty element.
  199. * So use "" to get a closing tag.
  200. * @param string $tag tag name of the element
  201. * @param array $attributes array of attributes for the element
  202. * @param string $text the text content for the element
  203. * @since 4.0.0
  204. */
  205. public static function addHeader($tag, $attributes, $text = null) {
  206. \OC_Util::addHeader($tag, $attributes, $text);
  207. }
  208. /**
  209. * Creates an absolute url to the given app and file.
  210. * @param string $app app
  211. * @param string $file file
  212. * @param array $args array with param=>value, will be appended to the returned url
  213. * The value of $args will be urlencoded
  214. * @return string the url
  215. * @since 4.0.0 - parameter $args was added in 4.5.0
  216. */
  217. public static function linkToAbsolute($app, $file, $args = []) {
  218. $urlGenerator = \OC::$server->getURLGenerator();
  219. return $urlGenerator->getAbsoluteURL(
  220. $urlGenerator->linkTo($app, $file, $args)
  221. );
  222. }
  223. /**
  224. * Creates an absolute url for remote use.
  225. * @param string $service id
  226. * @return string the url
  227. * @since 4.0.0
  228. */
  229. public static function linkToRemote($service) {
  230. $urlGenerator = \OC::$server->getURLGenerator();
  231. $remoteBase = $urlGenerator->linkTo('', 'remote.php') . '/' . $service;
  232. return $urlGenerator->getAbsoluteURL(
  233. $remoteBase . (($service[strlen($service) - 1] != '/') ? '/' : '')
  234. );
  235. }
  236. /**
  237. * Returns the server host name without an eventual port number
  238. * @return string the server hostname
  239. * @since 5.0.0
  240. */
  241. public static function getServerHostName() {
  242. $host_name = \OC::$server->getRequest()->getServerHost();
  243. // strip away port number (if existing)
  244. $colon_pos = strpos($host_name, ':');
  245. if ($colon_pos != false) {
  246. $host_name = substr($host_name, 0, $colon_pos);
  247. }
  248. return $host_name;
  249. }
  250. /**
  251. * Returns the default email address
  252. * @param string $user_part the user part of the address
  253. * @return string the default email address
  254. *
  255. * Assembles a default email address (using the server hostname
  256. * and the given user part, and returns it
  257. * Example: when given lostpassword-noreply as $user_part param,
  258. * and is currently accessed via http(s)://example.com/,
  259. * it would return 'lostpassword-noreply@example.com'
  260. *
  261. * If the configuration value 'mail_from_address' is set in
  262. * config.php, this value will override the $user_part that
  263. * is passed to this function
  264. * @since 5.0.0
  265. */
  266. public static function getDefaultEmailAddress(string $user_part): string {
  267. $config = \OC::$server->getConfig();
  268. $user_part = $config->getSystemValueString('mail_from_address', $user_part);
  269. $host_name = self::getServerHostName();
  270. $host_name = $config->getSystemValueString('mail_domain', $host_name);
  271. $defaultEmailAddress = $user_part.'@'.$host_name;
  272. $mailer = \OC::$server->getMailer();
  273. if ($mailer->validateMailAddress($defaultEmailAddress)) {
  274. return $defaultEmailAddress;
  275. }
  276. // in case we cannot build a valid email address from the hostname let's fallback to 'localhost.localdomain'
  277. return $user_part.'@localhost.localdomain';
  278. }
  279. /**
  280. * Converts string to int of float depending if it fits an int
  281. * @param numeric-string|float|int $number numeric string
  282. * @return int|float int if it fits, float if it is too big
  283. * @since 26.0.0
  284. */
  285. public static function numericToNumber(string|float|int $number): int|float {
  286. /* This is a hack to cast to (int|float) */
  287. return 0 + (string)$number;
  288. }
  289. /**
  290. * Make a human file size (2048 to 2 kB)
  291. * @param int|float $bytes file size in bytes
  292. * @return string a human readable file size
  293. * @since 4.0.0
  294. */
  295. public static function humanFileSize(int|float $bytes): string {
  296. return \OC_Helper::humanFileSize($bytes);
  297. }
  298. /**
  299. * Make a computer file size (2 kB to 2048)
  300. * @param string $str file size in a fancy format
  301. * @return false|int|float a file size in bytes
  302. *
  303. * Inspired by: https://www.php.net/manual/en/function.filesize.php#92418
  304. * @since 4.0.0
  305. */
  306. public static function computerFileSize(string $str): false|int|float {
  307. return \OC_Helper::computerFileSize($str);
  308. }
  309. /**
  310. * connects a function to a hook
  311. *
  312. * @param string $signalClass class name of emitter
  313. * @param string $signalName name of signal
  314. * @param string|object $slotClass class name of slot
  315. * @param string $slotName name of slot
  316. * @return bool
  317. *
  318. * This function makes it very easy to connect to use hooks.
  319. *
  320. * TODO: write example
  321. * @since 4.0.0
  322. * @deprecated 21.0.0 use \OCP\EventDispatcher\IEventDispatcher::addListener
  323. */
  324. public static function connectHook($signalClass, $signalName, $slotClass, $slotName) {
  325. return \OC_Hook::connect($signalClass, $signalName, $slotClass, $slotName);
  326. }
  327. /**
  328. * Emits a signal. To get data from the slot use references!
  329. * @param string $signalclass class name of emitter
  330. * @param string $signalname name of signal
  331. * @param array $params default: array() array with additional data
  332. * @return bool true if slots exists or false if not
  333. *
  334. * TODO: write example
  335. * @since 4.0.0
  336. * @deprecated 21.0.0 use \OCP\EventDispatcher\IEventDispatcher::dispatchTypedEvent
  337. */
  338. public static function emitHook($signalclass, $signalname, $params = []) {
  339. return \OC_Hook::emit($signalclass, $signalname, $params);
  340. }
  341. /**
  342. * Cached encrypted CSRF token. Some static unit-tests of ownCloud compare
  343. * multiple OC_Template elements which invoke `callRegister`. If the value
  344. * would not be cached these unit-tests would fail.
  345. * @var string
  346. */
  347. private static $token = '';
  348. /**
  349. * Register an get/post call. This is important to prevent CSRF attacks
  350. * @since 4.5.0
  351. */
  352. public static function callRegister() {
  353. if (self::$token === '') {
  354. self::$token = \OC::$server->getCsrfTokenManager()->getToken()->getEncryptedValue();
  355. }
  356. return self::$token;
  357. }
  358. /**
  359. * Used to sanitize HTML
  360. *
  361. * This function is used to sanitize HTML and should be applied on any
  362. * string or array of strings before displaying it on a web page.
  363. *
  364. * @param string|string[] $value
  365. * @return string|string[] an array of sanitized strings or a single sanitized string, depends on the input parameter.
  366. * @since 4.5.0
  367. */
  368. public static function sanitizeHTML($value) {
  369. return \OC_Util::sanitizeHTML($value);
  370. }
  371. /**
  372. * Public function to encode url parameters
  373. *
  374. * This function is used to encode path to file before output.
  375. * Encoding is done according to RFC 3986 with one exception:
  376. * Character '/' is preserved as is.
  377. *
  378. * @param string $component part of URI to encode
  379. * @return string
  380. * @since 6.0.0
  381. */
  382. public static function encodePath($component) {
  383. return \OC_Util::encodePath($component);
  384. }
  385. /**
  386. * Returns an array with all keys from input lowercased or uppercased. Numbered indices are left as is.
  387. *
  388. * @param array $input The array to work on
  389. * @param int $case Either MB_CASE_UPPER or MB_CASE_LOWER (default)
  390. * @param string $encoding The encoding parameter is the character encoding. Defaults to UTF-8
  391. * @return array
  392. * @since 4.5.0
  393. */
  394. public static function mb_array_change_key_case($input, $case = MB_CASE_LOWER, $encoding = 'UTF-8') {
  395. return \OC_Helper::mb_array_change_key_case($input, $case, $encoding);
  396. }
  397. /**
  398. * performs a search in a nested array
  399. *
  400. * @param array $haystack the array to be searched
  401. * @param string $needle the search string
  402. * @param mixed $index optional, only search this key name
  403. * @return mixed the key of the matching field, otherwise false
  404. * @since 4.5.0
  405. * @deprecated 15.0.0
  406. */
  407. public static function recursiveArraySearch($haystack, $needle, $index = null) {
  408. return \OC_Helper::recursiveArraySearch($haystack, $needle, $index);
  409. }
  410. /**
  411. * calculates the maximum upload size respecting system settings, free space and user quota
  412. *
  413. * @param string $dir the current folder where the user currently operates
  414. * @param int|float|null $free the number of bytes free on the storage holding $dir, if not set this will be received from the storage directly
  415. * @return int|float number of bytes representing
  416. * @since 5.0.0
  417. */
  418. public static function maxUploadFilesize(string $dir, int|float|null $free = null): int|float {
  419. return \OC_Helper::maxUploadFilesize($dir, $free);
  420. }
  421. /**
  422. * Calculate free space left within user quota
  423. * @param string $dir the current folder where the user currently operates
  424. * @return int|float number of bytes representing
  425. * @since 7.0.0
  426. */
  427. public static function freeSpace(string $dir): int|float {
  428. return \OC_Helper::freeSpace($dir);
  429. }
  430. /**
  431. * Calculate PHP upload limit
  432. *
  433. * @return int|float number of bytes representing
  434. * @since 7.0.0
  435. */
  436. public static function uploadLimit(): int|float {
  437. return \OC_Helper::uploadLimit();
  438. }
  439. /**
  440. * Get a list of characters forbidden in file names
  441. * @return string[]
  442. * @since 29.0.0
  443. */
  444. public static function getForbiddenFileNameChars(): array {
  445. // Get always forbidden characters
  446. $invalidChars = str_split(\OCP\Constants::FILENAME_INVALID_CHARS);
  447. if ($invalidChars === false) {
  448. $invalidChars = [];
  449. }
  450. // Get admin defined invalid characters
  451. $additionalChars = \OCP\Server::get(IConfig::class)->getSystemValue('forbidden_chars', []);
  452. if (!is_array($additionalChars)) {
  453. \OCP\Server::get(LoggerInterface::class)->error('Invalid system config value for "forbidden_chars" is ignored.');
  454. $additionalChars = [];
  455. }
  456. return array_merge($invalidChars, $additionalChars);
  457. }
  458. /**
  459. * Returns whether the given file name is valid
  460. * @param string $file file name to check
  461. * @return bool true if the file name is valid, false otherwise
  462. * @deprecated 8.1.0 use OCP\Files\Storage\IStorage::verifyPath()
  463. * @since 7.0.0
  464. * @suppress PhanDeprecatedFunction
  465. */
  466. public static function isValidFileName($file) {
  467. return \OC_Util::isValidFileName($file);
  468. }
  469. /**
  470. * Compare two strings to provide a natural sort
  471. * @param string $a first string to compare
  472. * @param string $b second string to compare
  473. * @return int -1 if $b comes before $a, 1 if $a comes before $b
  474. * or 0 if the strings are identical
  475. * @since 7.0.0
  476. */
  477. public static function naturalSortCompare($a, $b) {
  478. return \OC\NaturalSort::getInstance()->compare($a, $b);
  479. }
  480. /**
  481. * Check if a password is required for each public link
  482. *
  483. * @param bool $checkGroupMembership Check group membership exclusion
  484. * @return boolean
  485. * @since 7.0.0
  486. */
  487. public static function isPublicLinkPasswordRequired(bool $checkGroupMembership = true) {
  488. return \OC_Util::isPublicLinkPasswordRequired($checkGroupMembership);
  489. }
  490. /**
  491. * check if share API enforces a default expire date
  492. * @return boolean
  493. * @since 8.0.0
  494. */
  495. public static function isDefaultExpireDateEnforced() {
  496. return \OC_Util::isDefaultExpireDateEnforced();
  497. }
  498. protected static $needUpgradeCache = null;
  499. /**
  500. * Checks whether the current version needs upgrade.
  501. *
  502. * @return bool true if upgrade is needed, false otherwise
  503. * @since 7.0.0
  504. */
  505. public static function needUpgrade() {
  506. if (!isset(self::$needUpgradeCache)) {
  507. self::$needUpgradeCache = \OC_Util::needUpgrade(\OC::$server->getSystemConfig());
  508. }
  509. return self::$needUpgradeCache;
  510. }
  511. /**
  512. * Sometimes a string has to be shortened to fit within a certain maximum
  513. * data length in bytes. substr() you may break multibyte characters,
  514. * because it operates on single byte level. mb_substr() operates on
  515. * characters, so does not ensure that the shortened string satisfies the
  516. * max length in bytes.
  517. *
  518. * For example, json_encode is messing with multibyte characters a lot,
  519. * replacing them with something along "\u1234".
  520. *
  521. * This function shortens the string with by $accuracy (-5) from
  522. * $dataLength characters, until it fits within $dataLength bytes.
  523. *
  524. * @since 23.0.0
  525. */
  526. public static function shortenMultibyteString(string $subject, int $dataLength, int $accuracy = 5): string {
  527. $temp = mb_substr($subject, 0, $dataLength);
  528. // json encodes encapsulates the string in double quotes, they need to be substracted
  529. while ((strlen(json_encode($temp)) - 2) > $dataLength) {
  530. $temp = mb_substr($temp, 0, -$accuracy);
  531. }
  532. return $temp;
  533. }
  534. /**
  535. * Check if a function is enabled in the php configuration
  536. *
  537. * @since 25.0.0
  538. */
  539. public static function isFunctionEnabled(string $functionName): bool {
  540. if (!function_exists($functionName)) {
  541. return false;
  542. }
  543. $ini = \OCP\Server::get(IniGetWrapper::class);
  544. $disabled = explode(',', $ini->get('disable_functions') ?: '');
  545. $disabled = array_map('trim', $disabled);
  546. if (in_array($functionName, $disabled)) {
  547. return false;
  548. }
  549. return true;
  550. }
  551. }