1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173
|
<?php
/**
* @file
* Tweeper - a Twitter to RSS web scraper.
*
* Copyright (C) 2013-2020 Antonio Ospite <ao2@ao2.it>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
require_once 'autoload.php';
use Tweeper\Tweeper;
date_default_timezone_set('UTC');
/**
* Check if the script is being run from the command line.
*/
function is_cli() {
return (php_sapi_name() === "cli");
}
/**
* Show the script usage.
*/
function usage($argv) {
if (is_cli()) {
$usage = "{$argv[0]} [-e|-m <0|1>|-u <0|1>|-v <0|1>|-h|--help] <src_url>\n";
}
else {
$usage = htmlentities("{$_SERVER['SCRIPT_NAME']}?src_url=<src_url>&generate_enclosure=<0|1>&show_usernames=<0|1>&show_multimedia=<0|1>&verbose_output=<0|1>");
}
return "usage: $usage";
}
/**
* Parse command line options.
*/
function parse_options_cli($argv, $argc) {
$options = [
'generate_enclosure' => FALSE,
'show_usernames' => TRUE,
'show_multimedia' => TRUE,
'verbose_output' => TRUE,
];
if ($argc < 2) {
return $options;
}
$cli_options = getopt("em:u:v:h", ["help"]);
foreach ($cli_options as $opt => $val) {
switch ($opt) {
case 'e':
$options['generate_enclosure'] = TRUE;
break;
case 'm':
$ret = filter_var($val, FILTER_VALIDATE_BOOLEAN, FILTER_NULL_ON_FAILURE);
if (NULL === $ret) {
fwrite(STDERR, "Invalid argument for the -m option.\n");
fwrite(STDERR, usage($argv));
exit(1);
}
$options['show_multimedia'] = $val;
break;
case 'u':
$ret = filter_var($val, FILTER_VALIDATE_BOOLEAN, FILTER_NULL_ON_FAILURE);
if (NULL === $ret) {
fwrite(STDERR, "Invalid argument for the -u option.\n");
fwrite(STDERR, usage($argv));
exit(1);
}
$options['show_usernames'] = $val;
break;
case 'v':
$ret = filter_var($val, FILTER_VALIDATE_BOOLEAN, FILTER_NULL_ON_FAILURE);
if (NULL === $ret) {
fwrite(STDERR, "Invalid argument for the -v option.\n");
fwrite(STDERR, usage($argv));
exit(1);
}
$options['verbose_output'] = $val;
break;
case 'h':
case 'help':
echo usage($argv);
exit(0);
default:
fwrite(STDERR, usage($argv));
exit(1);
}
}
// For now assume that the URL is the lest argument, in the future we could
// switch to PHP >= 7.1 and use the $optind argument of getopt().
$options['src_url'] = array_pop($argv);
return $options;
}
/**
* Parse options passed from a query string.
*/
function parse_options_query_string() {
$options = [
'generate_enclosure' => FALSE,
'show_usernames' => TRUE,
'show_multimedia' => TRUE,
'verbose_output' => TRUE,
];
if (isset($_GET['src_url'])) {
$options['src_url'] = $_GET['src_url'];
}
if (isset($_GET['generate_enclosure'])) {
$options['generate_enclosure'] = $_GET['generate_enclosure'] == 1;
}
if (isset($_GET['show_multimedia'])) {
$options['show_multimedia'] = $_GET['show_multimedia'] != 0;
}
if (isset($_GET['show_usernames'])) {
$options['show_usernames'] = $_GET['show_usernames'] != 0;
}
if (isset($_GET['verbose_output'])) {
$options['verbose_output'] = $_GET['verbose_output'] != 0;
}
return $options;
}
if (is_cli()) {
$options = parse_options_cli($argv, $argc);
$error_stream = fopen('php://stderr', 'w');
}
else {
$options = parse_options_query_string();
$error_stream = fopen('php://output', 'w');
}
if (!isset($options['src_url'])) {
fwrite($error_stream, usage(is_cli() ? $argv : NULL));
exit(1);
}
$tweeper = new Tweeper($options['generate_enclosure'], $options['show_usernames'], $options['show_multimedia'], $options['verbose_output']);
$output = $tweeper->tweep($options['src_url']);
if (is_null($output)) {
exit(1);
}
echo $output;
|