403Webshell
Server IP : 80.87.202.40  /  Your IP : 216.73.216.169
Web Server : Apache
System : Linux rospirotorg.ru 5.14.0-539.el9.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Dec 5 22:26:13 UTC 2024 x86_64
User : bitrix ( 600)
PHP Version : 8.2.27
Disable Function : NONE
MySQL : OFF |  cURL : ON |  WGET : ON |  Perl : ON |  Python : OFF |  Sudo : ON |  Pkexec : ON
Directory :  /home/bitrix/ext_www/rospirotorg.ru/bitrix/modules/mobileapp/lib/janative/

Upload File :
current_dir [ Writeable] document_root [ Writeable]

 

Command :


[ Back ]     

Current File : /home/bitrix/ext_www/rospirotorg.ru/bitrix/modules/mobileapp/lib/janative/utils.php
<?php

namespace Bitrix\MobileApp\Janative;

use Bitrix\Main\IO\File;
use Bitrix\Main\Web\Json;

class Utils
{
	protected static array $descriptionCache = [];
	/**
	 * @param $entityIdentifier
	 * @param string $defaultNamespace
	 * @return array["name", "namespace","fullname", "defaultFullname"]
	 */
	public static function extractEntityDescription($entityIdentifier, string $defaultNamespace = "bitrix"): array
	{
		$namespace = $defaultNamespace;
		$name = $entityIdentifier;
		$cacheId =  "$namespace:$name";

		if(!isset(self::$descriptionCache[$cacheId]))
		{
			if (strpos($entityIdentifier, ":"))
			{
				[$namespace, $name] = explode(":", $entityIdentifier);
			}

			self::$descriptionCache[$cacheId] = [
				"name" => $name,
				"namespace" => $namespace,
				"fullname" => "$namespace:$name",
				"relativePath" => "$namespace/$name",
				"defaultFullname" => $namespace && $namespace != "bitrix" ? "$namespace:$name" : $name
			];
		}

		return self::$descriptionCache[$cacheId];
	}

	/**
	 * @param $string
	 * @param int $options
	 * @return mixed
	 * @throws \Bitrix\Main\ArgumentException
	 */
	public static function jsonEncode($string, $options = JSON_HEX_TAG | JSON_HEX_AMP | JSON_PRETTY_PRINT | JSON_HEX_APOS | JSON_HEX_QUOT | JSON_UNESCAPED_UNICODE)
	{
		return Json::encode($string, $options);
	}

	public static function getFileHash(File $file) {
		return filectime($file->getPhysicalPath()) ?? "";
	}
}

Youez - 2016 - github.com/yon3zu
LinuXploit