X-Git-Url: https://git.ao2.it/tweeper.git/blobdiff_plain/b453301fecc757e4d95191a65b24259e81b53f87..584e0016f2d27ea8d40e96bf9a312ad0518bd503:/tweeper.php diff --git a/tweeper.php b/tweeper.php index f07382b..0034a0d 100644 --- a/tweeper.php +++ b/tweeper.php @@ -18,7 +18,11 @@ * along with this program. If not, see . */ -require_once 'XML/Serializer.php'; +require_once 'Symfony/Component/Serializer/autoload.php'; + +use Symfony\Component\Serializer\Serializer; +use Symfony\Component\Serializer\Encoder\XmlEncoder; +use Symfony\Component\Serializer\Normalizer\ObjectNormalizer; date_default_timezone_set('UTC'); @@ -178,39 +182,44 @@ class Tweeper { return $xsltProcessor; } - private function json_to_xml($html, $json_match_expr, $rootName) { - // pre-process, convert json to XML - $ret = preg_match($json_match_expr, $html, $matches); - if ($ret !== 1) { - trigger_error("Cannot match expression: $json_match_expr\n", E_USER_ERROR); - return NULL; - } - - $data = json_decode($matches[1]); + private function json_to_xml($json, $rootName) { + // Apparenty the ObjectNormalizer used afterwards is not able to handle + // the stdClass object created by json_decode() with the default setting + // $assoc = false; so use $assoc = true + $data = json_decode($json, $assoc = true); if (!$data) { return NULL; } + $encoder = new XmlEncoder(); + $normalizer = new ObjectNormalizer(); + $serializer = new Serializer(array($normalizer), array($encoder)); + $serializer_options = array ( - 'addDecl' => TRUE, - 'encoding' => "UTF-8", - 'indent' => ' ', - 'rootName' => $rootName, + 'xml_encoding' => "UTF-8", + 'xml_format_output' => TRUE, + 'xml_root_node_name' => $rootName, ); - $serializer = new XML_Serializer($serializer_options); - - $status = $serializer->serialize($data); - if (PEAR::isError($status)) { - trigger_error($status->getMessage(), E_USER_ERROR); + $xml_data = $serializer->serialize($data, 'xml', $serializer_options); + if (!$xml_data) { + trigger_error("Cannot serialize data", E_USER_ERROR); return NULL; } - return $serializer->getSerializedData(); + return $xml_data; } private function get_xml_instagram_com($html) { - return $this->json_to_xml($html, '/window._sharedData = (.*);/', 'instagram'); + // extract the json data from the html code + $json_match_expr = '/window._sharedData = (.*);/'; + $ret = preg_match($json_match_expr, $html, $matches); + if ($ret !== 1) { + trigger_error("Cannot match expression: $json_match_expr\n", E_USER_ERROR); + return NULL; + } + + return $this->json_to_xml($matches[1], 'instagram'); } private function preprocess_html_facebook_com($html) { @@ -354,7 +363,7 @@ if (is_cli()) { } if (!isset($options['src_url'])) { - fwrite($ERROR_STREAM, usage($argv)); + fwrite($ERROR_STREAM, usage(is_cli() ? $argv : NULL)); exit(1); }