X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=classes%2FGroup_join_queue.php;h=8007552fcff4c6a4e8fcdf980efae29ef7acfa6d;hb=45ee2060fa9317e65ea4ea09084bf8158c10ee61;hp=ee47b4932d8801c3f1f328810649709645ac5e72;hpb=471a4805871c44ad8770342ca8ca05536068dc85;p=quix0rs-gnu-social.git diff --git a/classes/Group_join_queue.php b/classes/Group_join_queue.php index ee47b4932d..8007552fcf 100644 --- a/classes/Group_join_queue.php +++ b/classes/Group_join_queue.php @@ -14,14 +14,6 @@ class Group_join_queue extends Managed_DataObject public $group_id; public $created; - /* Static get */ - function staticGet($k,$v=null) - { return Memcached_DataObject::staticGet('Group_join_queue',$k,$v); } - - /* Pkey get */ - function pkeyGet($k) - { return Memcached_DataObject::pkeyGet('Group_join_queue',$k); } - /* the code above is auto generated do not remove the tag below */ ###END_AUTOCODE @@ -55,4 +47,80 @@ class Group_join_queue extends Managed_DataObject $rq->insert(); return $rq; } + + function getMember() + { + $member = Profile::getKV('id', $this->profile_id); + + if (empty($member)) { + // TRANS: Exception thrown providing an invalid profile ID. + // TRANS: %s is the invalid profile ID. + throw new Exception(sprintf(_('Profile ID %s is invalid.'),$this->profile_id)); + } + + return $member; + } + + function getGroup() + { + $group = User_group::getKV('id', $this->group_id); + + if (empty($group)) { + // TRANS: Exception thrown providing an invalid group ID. + // TRANS: %s is the invalid group ID. + throw new Exception(sprintf(_('Group ID %s is invalid.'),$this->group_id)); + } + + return $group; + } + + /** + * Abort the pending group join... + * + * @param User_group $group + */ + function abort() + { + $profile = $this->getMember(); + $group = $this->getGroup(); + if ($request) { + if (Event::handle('StartCancelJoinGroup', array($profile, $group))) { + $this->delete(); + Event::handle('EndCancelJoinGroup', array($profile, $group)); + } + } + } + + /** + * Complete a pending group join... + * + * @return Group_member object on success + */ + function complete() + { + $join = null; + $profile = $this->getMember(); + $group = $this->getGroup(); + if (Event::handle('StartJoinGroup', array($profile, $group))) { + $join = Group_member::join($group->id, $profile->id); + $this->delete(); + Event::handle('EndJoinGroup', array($profile, $group)); + } + if (!$join) { + throw new Exception('Internal error: group join failed.'); + } + $join->notify(); + return $join; + } + + /** + * Send notifications via email etc to group administrators about + * this exciting new pending moderation queue item! + */ + public function notify() + { + $joiner = Profile::getKV('id', $this->profile_id); + $group = User_group::getKV('id', $this->group_id); + mail_notify_group_join_pending($group, $joiner); + } }