+function parse_options_cli($argv, $argc)
+{
+ $options = array(
+ 'generate_enclosure' => FALSE
+ );
+
+ if ($argc < 2)
+ return $options;
+
+ $cli_options = getopt("eh", array("help"));
+ foreach ($cli_options as $opt => $val) {
+ switch ($opt) {
+ case 'e':
+ $options['generate_enclosure'] = TRUE;
+ break;
+ case 'h':
+ case 'help':
+ echo usage($argv);
+ exit(0);
+ default:
+ die(usage($argv));
+ }
+ }
+
+ $options['src_url'] = $argv[count($cli_options) + 1];
+
+ return $options;
+}
+
+function parse_options_query_string()
+{
+ $options = array(
+ 'generate_enclosure' => FALSE
+ );
+
+ if (isset($_GET['src_url']))
+ $options['src_url'] = $_GET['src_url'];
+
+ if (isset($_GET['generate_enclosure']))
+ $options['generate_enclosure'] = $_GET['generate_enclosure'] == 1;
+
+ return $options;
+}
+
+
+if (php_sapi_name() != 'cli')
+ $options = parse_options_query_string();
+else
+ $options = parse_options_cli($argv, $argc);
+
+if (!isset($options['src_url']))
+ die(usage($argv));
+
+$url = parse_url($options['src_url']);
+if (FALSE === $url || empty($url["host"]))
+ die("Invalid url: ${options['src_url']}\n");
+
+$stylesheet = __DIR__ . "/rss_converter_" . $url["host"] . ".xsl";
+if (FALSE === file_exists($stylesheet))
+ die("Conversion to RSS not supported: {$url["host"]}\n");