forked from tikiorg/tiki
-
Notifications
You must be signed in to change notification settings - Fork 0
/
messu-broadcast.php
162 lines (154 loc) · 5.39 KB
/
messu-broadcast.php
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
<?php
/**
* @package tikiwiki
*/
// (c) Copyright 2002-2016 by authors of the Tiki Wiki CMS Groupware Project
//
// All Rights Reserved. See copyright.txt for details and a complete list of authors.
// Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See license.txt for details.
// $Id$
$section = 'user_messages';
$inputConfiguration = [[
'staticKeyFilters' => [
'body' => 'text',
'groupbr' => 'groupname',
'priority' => 'digits',
'replyto_hash' => 'alnumdash',
'preview' => 'alphaspace',
'send' => 'alphaspace',
'subject' => 'text',
],
'catchAllUnset' => null,
]];
require_once('tiki-setup.php');
$messulib = TikiLib::lib('message');
$access->check_user($user);
$access->check_feature('feature_messages');
$access->checkAuthenticity();
$auto_query_args = ['subject', 'body', 'priority', 'replyto_hash', 'groupbr'];
if (! isset($_POST['subject'])) {
$_POST['subject'] = '';
}
if (! isset($_POST['body'])) {
$_POST['body'] = '';
}
if (! isset($_POST['priority'])) {
$_POST['priority'] = 3;
}
if (! isset($_POST['replyto_hash'])) {
$_POST['replyto_hash'] = '';
}
$smarty->assign('subject', $_POST['subject']);
$smarty->assign('body', $_POST['body']);
$smarty->assign('priority', $_POST['priority']);
$smarty->assign('replyto_hash', $_POST['replyto_hash']);
$smarty->assign('mid', 'messu-broadcast.tpl');
$smarty->assign('sent', 0);
perm_broadcast_check($access, $userlib);
$groups = $userlib->get_user_groups($user);
if (in_array('Admins', $groups)) {
//admins can write to members of all groups
$groups = $userlib->list_all_groups();
$groups = array_diff($groups, ['Registered', 'Anonymous']);
} else {
//registered users can write to members of groups they belong to
$groups = array_diff($groups, ['Registered', 'Anonymous']);
}
$smarty->assign('groups', $groups);
if ((isset($_POST['send']) || isset($_POST['preview'])) && $access->ticketMatch()) {
$message = '';
// Validation:
// must have a subject or body non-empty (or both)
if (empty($_POST['subject']) && empty($_POST['body'])) {
Feedback::error(tra('The message must have either a subject or a body.'));
} else {
// Remove invalid users from the to, cc and bcc fields
if (isset($_POST['groupbr'])) {
if ($_POST['groupbr'] == 'all' && $tiki_p_broadcast_all == 'y') {
$a_all_users = $userlib->get_users(0, -1, 'login_desc', '');
$all_users = [];
foreach ($a_all_users['data'] as $a_user) {
$all_users[] = $a_user['user'];
}
} elseif (in_array($_POST['groupbr'], $groups)) {
$all_users = $userlib->get_group_users($_POST['groupbr']);
} else {
$access->display_error('', tra("You do not have permission to use this feature") . ": " . $permission, '403', false);
}
$smarty->assign('groupbr', $_POST['groupbr']);
}
$users = [];
asort($all_users);
foreach ($all_users as $a_user) {
if (! empty($a_user)) {
if ($userlib->user_exists($a_user)) {
if (! $userlib->user_has_permission($a_user, 'tiki_p_messages')) {
$message .= sprintf(tra('User %s does not have the permission'), htmlspecialchars($a_user)) . "<br />" ;
} elseif ($tikilib->get_user_preference($a_user, 'allowMsgs', 'y') == 'y') {
$users[] = $a_user;
} else {
$message .= sprintf(tra("User %s does not want to receive messages"), htmlspecialchars($a_user)) . "<br />" ;
}
} else {
$message .= tra("Invalid user") . "$a_user<br />";
}
}
}
$users = array_unique($users);
// Validation: either to, cc or bcc must have a valid user
if (count($users) > 0) {
$users_formatted = [];
foreach ($users as $rawuser) {
$users_formatted[] = htmlspecialchars($rawuser);
}
if (isset($_POST['send'])) {
$message .= tra('The message has been sent to:') . ' ';
} else {
$message .= tra('The message will be sent to:') . ' ';
}
$message .= implode(',', $users_formatted) . "<br />";
if (isset($_POST['send'])) {
$smarty->assign('sent', 1);
// Insert the message in the inboxes of each user
foreach ($users as $a_user) {
$messulib->post_message($a_user, $user, $a_user, '', $_POST['subject'], $_POST['body'], $_POST['priority']);
// if this is a reply flag the original messages replied to
if ($_POST['replyto_hash'] <> '') {
$messulib->mark_replied($a_user, $_POST['replyto_hash']);
}
}
// Insert a copy of the message in the sent box of the sender
$messulib->save_sent_message($user, $user, $_POST['groupbr'], null, $_POST['subject'], $_POST['body'], $_POST['priority'], $_POST['replyto_hash']);
$smarty->assign('message', $message);
if ($prefs['feature_actionlog'] == 'y') {
$logslib->add_action('Posted', '', 'message', 'add=' . strlen($_POST['body']));
}
} else {
$smarty->assign('preview', 1);
}
} else {
Feedback::error(tra('No valid users to send the message to.'));
}
}
$smarty->assign('message', $message);
}
include_once('tiki-section_options.php');
include_once('tiki-mytiki_shared.php');
$smarty->display("tiki.tpl");
function perm_broadcast_check($access, $userlib)
{
//check permissions
$groups_perm = $userlib->list_all_groups();
$groups_perm = array_diff($groups_perm, ['Anonymous']);
$groups_perm = array_filter(
$groups_perm,
function ($groupName) {
$perms = Perms::get('group', $groupName);
return $perms->broadcast;
}
);
if (empty($groups_perm)) {
$access->display_error('', tra("You do not have permission to use this feature") . ": " . $permission, '403', false);
exit;
}
}