X-Git-Url: https://git.ao2.it/tweeper.git/blobdiff_plain/7097a8ad2ef040bc81a8c5f7ed7cc02e0073eaab..cc55224c919a727b16897879d7c35f54ea11aaf8:/tweeper.php diff --git a/tweeper.php b/tweeper.php index efc0fd6..293595f 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,50 @@ 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, $root_node_name) { + // 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' => $root_node_name, ); - $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) { + $html = str_replace('', '', $html); + return $html; } private function html_to_xml($html, $host) { @@ -279,7 +294,7 @@ class Tweeper { function is_cli() { - return (substr(php_sapi_name(), 0, 3) == 'cli'); + return (php_sapi_name() === "cli"); } function usage($argv) @@ -348,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); }