X-Git-Url: https://git.ao2.it/tweeper.git/blobdiff_plain/f77845f4bf57b83af305dde609b7fc823c68c966..d8950b148c6396251ac2fbc6ff3caab3e32b56e3:/tweeper.php diff --git a/tweeper.php b/tweeper.php index 7fc98cb..a275a64 100755 --- a/tweeper.php +++ b/tweeper.php @@ -73,20 +73,36 @@ class Tweeper { } } -if (isset($_GET['screen_name'])) { - $screen_name = $_GET['screen_name']; -} else if (isset($argv[1])) { - $screen_name = $argv[1]; -} else { - if (isset($_SERVER['SCRIPT_NAME'])) - $usage = htmlentities("{$_SERVER['SCRIPT_NAME']}?screen_name="); +function usage($argv) +{ + if (php_sapi_name() != 'cli') + $usage = htmlentities("{$_SERVER['SCRIPT_NAME']}?src_url="); else - $usage = "{$argv[0]} \n"; + $usage = "{$argv[0]} \n"; + + return "usage: $usage"; +} - die("usage: $usage"); +if (isset($_GET['src_url'])) { + $src_url = $_GET['src_url']; +} else if (isset($argv[1])) { + $src_url = $argv[1]; +} else { + die(usage($argv)); } -$tweeper = new Tweeper('twitter_user_timeline2rss.xsl'); +$url = parse_url($src_url); +if (FALSE === $url || empty($url["host"])) + die("Invalid url\n"); + +$stylesheets = array( + "twitter.com" => "twitter_user_timeline2rss.xsl", +); + +if (FALSE === array_key_exists($url["host"], $stylesheets)) + die("Unsupported host\n"); + +$stylesheet = $stylesheets[$url["host"]]; -$src_uri = 'https://twitter.com/' . $screen_name; -echo $tweeper->tweep($src_uri); +$tweeper = new Tweeper($stylesheet); +echo $tweeper->tweep($src_url);