[RutubeBridge] Correct parsing string in reduxState

This commit is contained in:
Eugene Molotov 2024-10-05 12:43:38 +05:00
parent 80c43f10d8
commit 73681e54c9

View File

@ -66,7 +66,15 @@ class RutubeBridge extends BridgeAbstract
{
$jsonDataRegex = '/window.reduxState = (.*);/';
preg_match($jsonDataRegex, $html, $matches) or returnServerError('Could not find reduxState');
return json_decode(str_replace('\x', '\\\x', $matches[1]));
$map = [
'\x26' => '&',
'\x3c' => '<',
'\x3d' => '=',
'\x3e' => '>',
'\x3f' => '?',
];
$jsonString = str_replace(array_keys($map), array_values($map), $matches[1]);
return json_decode($jsonString, false);
}
private function getVideosFromReduxState()