diff options
author | Evan Prodromou <evan@status.net> | 2010-09-14 11:01:29 -0400 |
---|---|---|
committer | Evan Prodromou <evan@status.net> | 2010-09-14 11:01:29 -0400 |
commit | 43ad609600f8374e923579c5f3dc6b28a92b1c7c (patch) | |
tree | 1a3c089841f1a518a0983db8a5121812cb5f6938 /classes | |
parent | eec540723efd33d857ae9d0bd4035e8d9840cf2f (diff) |
Add Group_member::asActivity() to record group joins
Diffstat (limited to 'classes')
-rw-r--r-- | classes/Group_member.php | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/classes/Group_member.php b/classes/Group_member.php index 2239461be..c6ff24fed 100644 --- a/classes/Group_member.php +++ b/classes/Group_member.php @@ -65,4 +65,54 @@ class Group_member extends Memcached_DataObject return true; } + + function getMember() + { + $member = Profile::staticGet('id', $this->profile_id); + + if (empty($member)) { + throw new Exception("Profile ID {$this->profile_id} invalid."); + } + + return $member; + } + + function getGroup() + { + $group = User_group::staticGet('id', $this->group_id); + + if (empty($group)) { + throw new Exception("Group ID {$this->group_id} invalid."); + } + + return $group; + } + + function asActivity() + { + $member = $this->getMember(); + $group = $this->getGroup(); + + $act = new Activity(); + + $act->id = TagURI::mint('join:%d:%d:%s', + $member->id, + $group->id, + common_date_iso8601($this->created)); + + $act->actor = ActivityObject::fromProfile($member); + $act->verb = ActivityVerb::JOIN; + $act->object = ActivityObject::fromGroup($group); + + $act->time = strtotime($this->created); + $act->title = _m("Join"); + + // TRANS: Success message for subscribe to group attempt through OStatus. + // TRANS: %1$s is the member name, %2$s is the subscribed group's name. + $act->content = sprintf(_m("%1$s has joined group %2$s."), + $member->getBestName(), + $group->getBestName()); + + return $act; + } } |