X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=scripts%2Fallsites.php;h=211728c497fa9381bf53671738d1f2b8172768c7;hb=e577e883f4407b3dbd6c2631273b8014153504a0;hp=ff9d8bc80499bc06a6d495d1cb3094c9d6c7a0b1;hpb=aeca8807dbce951beccbc3fb0e5a4ae5600e5e5f;p=quix0rs-gnu-social.git diff --git a/scripts/allsites.php b/scripts/allsites.php index ff9d8bc804..211728c497 100755 --- a/scripts/allsites.php +++ b/scripts/allsites.php @@ -18,24 +18,76 @@ * along with this program. If not, see . */ -# Abort if called from a web server +// Abort if called from a web server define('INSTALLDIR', realpath(dirname(__FILE__) . '/..')); +$shortoptions = 't:w:'; +$longoptions = array('tagged=', 'not-tagged='); + $helptext = <<find()) { + while ($sn->fetch()) { + print "$sn->nickname\n"; + } + } + return; +} + +function print_tagged_sites($tag) { + + $sn = new Status_network(); + + $sn->query('select status_network.nickname '. + 'from status_network join status_network_tag '. + 'on status_network.site_id = status_network_tag.site_id '. + 'where status_network_tag.tag = "' . $tag . '"'); + + while ($sn->fetch()) { + print "$sn->nickname\n"; + } + + return; +} + +function print_untagged_sites($tag) { + + $sn = new Status_network(); + + $sn->query('select status_network.nickname '. + 'from status_network '. + 'where not exists '. + '(select tag from status_network_tag '. + 'where site_id = status_network.site_id '. + 'and tag = "'.$tag.'")'); -if ($sn->find()) { while ($sn->fetch()) { print "$sn->nickname\n"; } + + return; +} + +if (have_option('t', 'tagged')) { + $tag = get_option_value('t', 'tagged'); + print_tagged_sites($tag); +} else if (have_option('w', 'not-tagged')) { + $tag = get_option_value('w', 'not-tagged'); + print_untagged_sites($tag); +} else { + print_all_sites(); } -?>