]> git.mxchange.org Git - quix0rs-gnu-social.git/blobdiff - plugins/GroupPrivateMessage/Group_privacy_settings.php
More info for a proper, fancy-url lighttpd setup
[quix0rs-gnu-social.git] / plugins / GroupPrivateMessage / Group_privacy_settings.php
index 9a8e5c045a7eb60d24716be15a44f795f70105b4..9e983ba3236f74332e372874b1c83fcf4009efed 100644 (file)
@@ -44,7 +44,7 @@ if (!defined('STATUSNET')) {
  *
  * @see      DB_DataObject
  */
-class Group_privacy_settings extends Memcached_DataObject
+class Group_privacy_settings extends Managed_DataObject
 {
     public $__table = 'group_privacy_settings';
     /** ID of the group. */
@@ -70,78 +70,26 @@ class Group_privacy_settings extends Memcached_DataObject
     const MEMBER   = 2;
     const ADMIN    = 4;
 
-    /**
-     * Get an instance by key
-     *
-     * This is a utility method to get a single instance with a given key value.
-     *
-     * @param string $k Key to use to lookup (usually 'user_id' for this class)
-     * @param mixed  $v Value to lookup
-     *
-     * @return User_greeting_count object found, or null for no hits
-     */
-    function staticGet($k, $v=null)
+    public static function schemaDef()
     {
-        return Memcached_DataObject::staticGet('Group_privacy_settings', $k, $v);
-    }
-
-    /**
-     * return table definition for DB_DataObject
-     *
-     * DB_DataObject needs to know something about the table to manipulate
-     * instances. This method provides all the DB_DataObject needs to know.
-     *
-     * @return array array of column definitions
-     */
-    function table()
-    {
-        return array('group_id' => DB_DATAOBJECT_INT + DB_DATAOBJECT_NOTNULL,
-                     'allow_privacy' => DB_DATAOBJECT_INT,
-                     'allow_sender' => DB_DATAOBJECT_INT,
-                     'created' => DB_DATAOBJECT_STR + DB_DATAOBJECT_DATE + DB_DATAOBJECT_TIME + DB_DATAOBJECT_NOTNULL,
-                     'modified' => DB_DATAOBJECT_STR + DB_DATAOBJECT_DATE + DB_DATAOBJECT_TIME + DB_DATAOBJECT_NOTNULL);
-
-    }
-
-    /**
-     * return key definitions for DB_DataObject
-     *
-     * DB_DataObject needs to know about keys that the table has, since it
-     * won't appear in StatusNet's own keys list. In most cases, this will
-     * simply reference your keyTypes() function.
-     *
-     * @return array list of key field names
-     */
-    function keys()
-    {
-        return array_keys($this->keyTypes());
-    }
-
-    /**
-     * return key definitions for Memcached_DataObject
-     *
-     * @return array associative array of key definitions, field name to type:
-     *         'K' for primary key: for compound keys, add an entry for each component;
-     *         'U' for unique keys: compound keys are not well supported here.
-     */
-    function keyTypes()
-    {
-        return array('group_id' => 'K');
-    }
-
-    /**
-     * Magic formula for non-autoincrementing integer primary keys
-     *
-     * @return array magic three-false array that stops auto-incrementing.
-     */
-    function sequenceKey()
-    {
-        return array(false, false, false);
+        return array(
+            'fields' => array(
+                'group_id' => array('type' => 'int', 'not null' => true, 'description' => 'group_privacy_settings'),
+                'allow_privacy' => array('type' => 'int', 'not null' => true, 'description' => 'sometimes=-1, never=0, always=1'),
+                'allow_sender' => array('type' => 'int', 'not null' => true, 'description' => 'list of bit-mappy values in source code'),
+                'created' => array('type' => 'datetime', 'not null' => true, 'description' => 'date this record was created'),
+                'modified' => array('type' => 'timestamp', 'not null' => true, 'description' => 'date this record was modified'),
+            ),
+            'primary key' => array('group_id'),
+            'foreign keys' => array(
+                'group_privacy_settings_group_id_fkey' => array('user_group', array('group_id' => 'id')),
+            ),
+        );
     }
 
     function forGroup($group)
     {
-        $gps = Group_privacy_settings::staticGet('group_id', $group->id);
+        $gps = Group_privacy_settings::getKV('group_id', $group->id);
 
         if (empty($gps)) {
             // make a fake one with defaults