]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Site metadata tags in status_network: single 'tags' field, pipe-separated.
authorBrion Vibber <brion@pobox.com>
Tue, 26 Jan 2010 17:25:39 +0000 (09:25 -0800)
committerBrion Vibber <brion@pobox.com>
Tue, 26 Jan 2010 18:33:20 +0000 (10:33 -0800)
$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'

classes/Status_network.php
db/site.sql

index 445f8a5a3c5759e0c5a4b00ca1861ce85a9af5e3..f1314d61513c6802c3d1922f7b2c25c36ad28111 100644 (file)
@@ -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());
+    }
 }
index a9f64e5a5d0c0f9eac3a30a1255db0b03eb451d1..791303bd540885857f0f2baef805994684b8261a 100644 (file)
@@ -14,6 +14,8 @@ create table status_network (
     sitename varchar(255) comment 'display name',
     theme varchar(255) comment 'theme name',
     logo varchar(255) comment 'site logo',
+    
+    tags text comment 'site meta-info tags (pipe-separated)',
 
     created datetime not null comment 'date this record was created',
     modified timestamp comment 'date this record was modified'