blob: 1612587c8f9e05e29d9ab38799bc65c7ca05d9b5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
<?php
/**
* Join a group action.
*
* @package ElggGroups
* @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
* @author Curverider Ltd
* @copyright Curverider Ltd 2008-2010
* @link http://elgg.com/
*/
// Load configuration
global $CONFIG;
gatekeeper();
$user_guid = get_input('user_guid', get_loggedin_userid());
$group_guid = get_input('group_guid');
// @todo fix for #287
// disable access to get entity.
$invitations = groups_get_invited_groups($user_guid, TRUE);
if (in_array($group_guid, $invitations)) {
$ia = elgg_set_ignore_access(TRUE);
}
$user = get_entity($user_guid);
$group = get_entity($group_guid);
set_page_owner($group->guid);
if (($user instanceof ElggUser) && ($group instanceof ElggGroup))
{
if ($group->isPublicMembership())
{
if ($group->join($user))
{
system_message(elgg_echo("groups:joined"));
// Remove any invite or join request flags
remove_entity_relationship($group->guid, 'invited', $user->guid);
remove_entity_relationship($user->guid, 'membership_request', $group->guid);
// add to river
add_to_river('river/group/create','join',$user->guid,$group->guid);
forward($group->getURL());
exit;
}
else
register_error(elgg_echo("groups:cantjoin"));
}
else
{
// Closed group, request membership
system_message(elgg_echo('groups:privategroup'));
forward(elgg_add_action_tokens_to_url($CONFIG->url . "action/groups/joinrequest?user_guid=$user_guid&group_guid=$group_guid", FALSE));
exit;
}
}
else
register_error(elgg_echo("groups:cantjoin"));
forward($_SERVER['HTTP_REFERER']);
exit;
?>
|