blob: c277b795d98b12e436c4e8618648fb55e3294f4a (
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
|
<?php
/**
* Elgg groups: add post to a topic
*
* @package ElggGroups
* @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
* @author Curverider <info@elgg.com>
* @copyright Curverider Ltd 2008-2010
* @link http://elgg.org/
*/
// Make sure we're logged in and have a CSRF token
gatekeeper();
// Get input
$topic_guid = (int) get_input('topic_guid');
$group_guid = (int) get_input('group_guid');
$post = get_input('topic_post');
// make sure we have text in the post
if (!$post) {
register_error(elgg_echo("grouppost:nopost"));
forward($_SERVER['HTTP_REFERER']);
}
// Check that user is a group member
$group = get_entity($group_guid);
$user = get_loggedin_user();
if (!$group->isMember($user)) {
register_error(elgg_echo("groups:notmember"));
forward($_SERVER['HTTP_REFERER']);
}
// Let's see if we can get an form topic with the specified GUID, and that it's a group forum topic
$topic = get_entity($topic_guid);
if (!$topic || $topic->getSubtype() != "groupforumtopic") {
register_error(elgg_echo("grouptopic:notfound"));
forward($_SERVER['HTTP_REFERER']);
}
// add the post to the forum topic
$post_id = $topic->annotate('group_topic_post', $post, $topic->access_id, $user->guid);
if ($post_id == false) {
system_message(elgg_echo("groupspost:failure"));
forward($_SERVER['HTTP_REFERER']);
}
// add to river
add_to_river('river/forum/create', 'create', $user->guid, $topic_guid, "", 0, $post_id);
system_message(elgg_echo("groupspost:success"));
forward($_SERVER['HTTP_REFERER']);
|