����JFIF��x�x����'
Server IP : 66.29.137.217 / Your IP : 18.117.79.92 Web Server : LiteSpeed System : Linux premium294.web-hosting.com 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64 User : gltevjme ( 1095) PHP Version : 7.0.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/gltevjme/bofirm.gltechlimited.com/app/Http/Services/Agora/ |
Upload File : |
<?php $version = "005"; $NO_UPLOAD = "0"; $AUDIO_VIDEO_UPLOAD = "3"; // InChannelPermissionKey $ALLOW_UPLOAD_IN_CHANNEL = 1; // Service Type $MEDIA_CHANNEL_SERVICE = 1; $RECORDING_SERVICE = 2; $PUBLIC_SHARING_SERVICE = 3; $IN_CHANNEL_PERMISSION = 4; function generateRecordingKey($appID, $appCertificate, $channelName, $ts, $randomInt, $uid, $expiredTs) { return generateDynamicKey($appID, $appCertificate, $channelName, $ts, $randomInt, $uid, $expiredTs, $GLOBALS["RECORDING_SERVICE"], array()); } function generateMediaChannelKey($appID, $appCertificate, $channelName, $ts, $randomInt, $uid, $expiredTs) { return generateDynamicKey($appID, $appCertificate, $channelName, $ts, $randomInt, $uid, $expiredTs, $GLOBALS["MEDIA_CHANNEL_SERVICE"], array()); } function generateInChannelPermissionKey($appID, $appCertificate, $channelName, $ts, $randomInt, $uid, $expiredTs, $permission) { $extra[$GLOBALS["ALLOW_UPLOAD_IN_CHANNEL"]] = $permission; return generateDynamicKey($appID, $appCertificate, $channelName, $ts, $randomInt, $uid, $expiredTs, $GLOBALS["IN_CHANNEL_PERMISSION"], $extra); } function generateDynamicKey($appID, $appCertificate, $channelName, $ts, $randomInt, $uid, $expiredTs, $serviceType, $extra) { $signature = generateSignature($serviceType, $appID, $appCertificate, $channelName, $uid, $ts, $randomInt, $expiredTs, $extra); $content = packContent($serviceType, $signature, hex2bin($appID), $ts, $randomInt, $expiredTs, $extra); // echo bin2hex($content); return $GLOBALS["version"] . base64_encode($content); } function generateSignature($serviceType, $appID, $appCertificate, $channelName, $uid, $ts, $salt, $expiredTs, $extra) { $rawAppID = hex2bin($appID); $rawAppCertificate = hex2bin($appCertificate); $buffer = pack("S", $serviceType); $buffer .= pack("S", strlen($rawAppID)) . $rawAppID; $buffer .= pack("I", $ts); $buffer .= pack("I", $salt); $buffer .= pack("S", strlen($channelName)) . $channelName; $buffer .= pack("I", $uid); $buffer .= pack("I", $expiredTs); $buffer .= pack("S", count($extra)); foreach ($extra as $key => $value) { $buffer .= pack("S", $key); $buffer .= pack("S", strlen($value)) . $value; } return strtoupper(hash_hmac('sha1', $buffer, $rawAppCertificate)); } function packString($value) { return pack("S", strlen($value)) . $value; } function packContent($serviceType, $signature, $appID, $ts, $salt, $expiredTs, $extra) { $buffer = pack("S", $serviceType); $buffer .= packString($signature); $buffer .= packString($appID); $buffer .= pack("I", $ts); $buffer .= pack("I", $salt); $buffer .= pack("I", $expiredTs); $buffer .= pack("S", count($extra)); foreach ($extra as $key => $value) { $buffer .= pack("S", $key); $buffer .= packString($value); } return $buffer; } ?>