diff options
author | Brion Vibber <brion@pobox.com> | 2010-01-26 09:25:39 -0800 |
---|---|---|
committer | Brion Vibber <brion@pobox.com> | 2010-01-26 10:33:20 -0800 |
commit | ad6f0501ff24cb287dedd21271d58c91e64b6b43 (patch) | |
tree | 5201d56655f81ed35e0a4dc6fd6fd1cfcd68f7ea /classes/Status_network.php | |
parent | e05c32572234dc0b4adb19be7bbe9879f49ec7ee (diff) |
Site metadata tags in status_network: single 'tags' field, pipe-separated.
$sn->tags() returns tag list as array; $sn->hasTag('blah') to check for a particular tag only
Could be used to control things in config file:
$sn = Status_network::setupSite($_server, $_path, $_wildcard);
if (!$sn) { die("No such site"); }
if ($sn->hasTag('individual')) { /* blah */ }
Note memcached keys are unchanged; if tags are changed from an external tool clear:
statusnet:<dbname>:status_network:<key>:<val>
for <key>s 'nickname', 'hostname', and 'pathname'
Diffstat (limited to 'classes/Status_network.php')
-rw-r--r-- | classes/Status_network.php | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/classes/Status_network.php b/classes/Status_network.php index 445f8a5a3..f1314d615 100644 --- a/classes/Status_network.php +++ b/classes/Status_network.php @@ -39,6 +39,7 @@ class Status_network extends DB_DataObject public $logo; // varchar(255) public $created; // datetime() not_null public $modified; // timestamp() not_null default_CURRENT_TIMESTAMP + public $tags; // text /* Static get */ function staticGet($k,$v=NULL) { return DB_DataObject::staticGet('Status_network',$k,$v); } @@ -245,4 +246,23 @@ class Status_network extends DB_DataObject return $this->nickname . '.' . self::$wildcard; } } + + /** + * Return site meta-info tags as an array + * @return array of strings + */ + function getTags() + { + return array_filter(explode("|", strval($this->tags))); + } + + /** + * Check if this site record has a particular meta-info tag attached. + * @param string $tag + * @return bool + */ + function hasTag($tag) + { + return in_array($tag, $this->getTags()); + } } |