X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=classes%2FProfile_tag_subscription.php;h=ab2ceed73b85feacb2013025a2da7293eab14a21;hb=1a9a8ea73032b0ded09a8ea9a4c0511401507090;hp=870640c40bf448f50e7544cf7a640c763699a995;hpb=31c1177970124cee31823cab3a11542c23b4126d;p=quix0rs-gnu-social.git diff --git a/classes/Profile_tag_subscription.php b/classes/Profile_tag_subscription.php index 870640c40b..ab2ceed73b 100644 --- a/classes/Profile_tag_subscription.php +++ b/classes/Profile_tag_subscription.php @@ -4,7 +4,7 @@ */ require_once INSTALLDIR.'/classes/Memcached_DataObject.php'; -class Profile_tag_subscription extends Memcached_DataObject +class Profile_tag_subscription extends Managed_DataObject { ###START_AUTOCODE /* the code below is auto generated do not remove the above tag */ @@ -15,13 +15,32 @@ class Profile_tag_subscription extends Memcached_DataObject public $created; // datetime not_null default_0000-00-00%2000%3A00%3A00 public $modified; // timestamp() not_null default_CURRENT_TIMESTAMP - /* Static get */ - function staticGet($k,$v=null) - { return Memcached_DataObject::staticGet('Profile_tag_subscription',$k,$v); } - /* the code above is auto generated do not remove the tag below */ ###END_AUTOCODE + public static function schemaDef() + { + return array( + 'fields' => array( + 'profile_tag_id' => array('type' => 'int', 'not null' => true, 'description' => 'foreign key to profile_tag'), + 'profile_id' => array('type' => 'int', 'not null' => true, 'description' => 'foreign key to profile table'), + + '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('profile_tag_id', 'profile_id'), + 'foreign keys' => array( + 'profile_tag_subscription_profile_list_id_fkey' => array('profile_list', array('profile_tag_id' => 'id')), + 'profile_tag_subscription_profile_id_fkey' => array('profile', array('profile_id' => 'id')), + ), + 'indexes' => array( + // @fixme probably we want a (profile_id, created) index here? + 'profile_tag_subscription_profile_id_idx' => array('profile_id'), + 'profile_tag_subscription_created_idx' => array('created'), + ), + ); + } + function pkeyGet($kv) { return Memcached_DataObject::pkeyGet('Profile_tag_subscription', $kv); @@ -50,7 +69,8 @@ class Profile_tag_subscription extends Memcached_DataObject if (!$result) { common_log_db_error($sub, 'INSERT', __FILE__); - throw new Exception(_("Adding people tag subscription failed.")); + // TRANS: Exception thrown when inserting a list subscription in the database fails. + throw new Exception(_('Adding list subscription failed.')); } $ptag = Profile_list::staticGet('id', $peopletag->id); @@ -76,7 +96,8 @@ class Profile_tag_subscription extends Memcached_DataObject if (!$result) { common_log_db_error($sub, 'DELETE', __FILE__); - throw new Exception(_("Removing people tag subscription failed.")); + // TRANS: Exception thrown when deleting a list subscription from the database fails. + throw new Exception(_('Removing list subscription failed.')); } $peopletag->subscriberCount(true); @@ -100,4 +121,24 @@ class Profile_tag_subscription extends Memcached_DataObject Event::handle('StartUnsubscribePeopletag', array($profile_list, $profile)); } } + + function insert() + { + $result = parent::insert(); + if ($result) { + self::blow('profile_list:subscriber_count:%d', + $this->profile_tag_id); + } + return $result; + } + + function delete() + { + $result = parent::delete(); + if ($result) { + self::blow('profile_list:subscriber_count:%d', + $this->profile_tag_id); + } + return $result; + } }