From 4fd25301b8b34bf595f8f3e8ec52c09987d65951 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Wed, 1 Jun 2011 10:21:03 -0400 Subject: [PATCH] add options to show sites with/without a tag --- scripts/allsites.php | 61 +++++++++++++++++++++++++++++++++++++++++--- 1 file changed, 57 insertions(+), 4 deletions(-) diff --git a/scripts/allsites.php b/scripts/allsites.php index a67db12337..211728c497 100755 --- a/scripts/allsites.php +++ b/scripts/allsites.php @@ -22,19 +22,72 @@ 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 . '"'); -if ($sn->find()) { while ($sn->fetch()) { print "$sn->nickname\n"; } -} \ No newline at end of file + + 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.'")'); + + 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(); +}