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
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
<?php
/*
Question2Answer by Gideon Greenspan and contributors
http://www.question2answer.org/
Description: Controller for private messaging page
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
More about this license: http://www.question2answer.org/license.php
*/
if (!defined('QA_VERSION')) { // don't allow this page to be requested directly from browser
header('Location: ../../');
exit;
}
require_once QA_INCLUDE_DIR . 'db/selects.php';
require_once QA_INCLUDE_DIR . 'app/users.php';
require_once QA_INCLUDE_DIR . 'app/format.php';
require_once QA_INCLUDE_DIR . 'app/limits.php';
$handle = qa_request_part(1);
$loginuserid = qa_get_logged_in_userid();
$fromhandle = qa_get_logged_in_handle();
$qa_content = qa_content_prepare();
// Check we have a handle, we're not using Q2A's single-sign on integration and that we're logged in
if (QA_FINAL_EXTERNAL_USERS)
qa_fatal_error('User accounts are handled by external code');
if (!strlen($handle))
qa_redirect('users');
if (!isset($loginuserid)) {
$qa_content['error'] = qa_insert_login_links(qa_lang_html('misc/message_must_login'), qa_request());
return $qa_content;
}
if ($handle === $fromhandle) {
// prevent users sending messages to themselves
$qa_content['error'] = qa_lang_html('users/no_permission');
return $qa_content;
}
// Find the user profile and their recent private messages
list($toaccount, $torecent, $fromrecent) = qa_db_select_with_pending(
qa_db_user_account_selectspec($handle, false),
qa_db_recent_messages_selectspec($loginuserid, true, $handle, false),
qa_db_recent_messages_selectspec($handle, false, $loginuserid, true)
);
// Check the user exists and work out what can and can't be set (if not using single sign-on)
if (!qa_opt('allow_private_messages') || !is_array($toaccount))
return include QA_INCLUDE_DIR . 'qa-page-not-found.php';
// Check the target user has enabled private messages and inform the current user in case they haven't
if ($toaccount['flags'] & QA_USER_FLAGS_NO_MESSAGES) {
$qa_content['error'] = qa_lang_html_sub(
'profile/user_x_disabled_pms',
sprintf('<a href="%s">%s</a>', qa_path_html('user/' . $handle), qa_html($handle))
);
return $qa_content;
}
// Check that we have permission and haven't reached the limit, but don't quit just yet
switch (qa_user_permit_error(null, QA_LIMIT_MESSAGES)) {
case 'limit':
$pageerror = qa_lang_html('misc/message_limit');
break;
case false:
break;
default:
$pageerror = qa_lang_html('users/no_permission');
break;
}
// Process sending a message to user
// check for messages or errors
$state = qa_get_state();
$messagesent = $state == 'message-sent';
if ($state == 'email-error')
$pageerror = qa_lang_html('main/email_error');
if (qa_post_text('domessage')) {
$inmessage = qa_post_text('message');
if (isset($pageerror)) {
// not permitted to post, so quit here
$qa_content['error'] = $pageerror;
return $qa_content;
}
if (!qa_check_form_security_code('message-' . $handle, qa_post_text('code')))
$pageerror = qa_lang_html('misc/form_security_again');
else {
if (empty($inmessage))
$errors['message'] = qa_lang('misc/message_empty');
if (empty($errors)) {
require_once QA_INCLUDE_DIR . 'db/messages.php';
require_once QA_INCLUDE_DIR . 'app/emails.php';
if (qa_opt('show_message_history'))
$messageid = qa_db_message_create($loginuserid, $toaccount['userid'], $inmessage, '', false);
else
$messageid = null;
$canreply = !(qa_get_logged_in_flags() & QA_USER_FLAGS_NO_MESSAGES);
$more = strtr(qa_lang($canreply ? 'emails/private_message_reply' : 'emails/private_message_info'), array(
'^f_handle' => $fromhandle,
'^url' => qa_path_absolute($canreply ? ('message/' . $fromhandle) : ('user/' . $fromhandle)),
));
$subs = array(
'^message' => $inmessage,
'^f_handle' => $fromhandle,
'^f_url' => qa_path_absolute('user/' . $fromhandle),
'^more' => $more,
'^a_url' => qa_path_absolute('account'),
);
if (qa_send_notification($toaccount['userid'], $toaccount['email'], $toaccount['handle'],
qa_lang('emails/private_message_subject'), qa_lang('emails/private_message_body'), $subs))
$messagesent = true;
qa_report_event('u_message', $loginuserid, qa_get_logged_in_handle(), qa_cookie_get(), array(
'userid' => $toaccount['userid'],
'handle' => $toaccount['handle'],
'messageid' => $messageid,
'message' => $inmessage,
));
// show message as part of general history
if (qa_opt('show_message_history'))
qa_redirect(qa_request(), array('state' => ($messagesent ? 'message-sent' : 'email-error')));
}
}
}
// Prepare content for theme
$hideForm = !empty($pageerror) || $messagesent;
$qa_content['title'] = qa_lang_html('misc/private_message_title');
$qa_content['error'] = @$pageerror;
$qa_content['form_message'] = array(
'tags' => 'method="post" action="' . qa_self_html() . '"',
'style' => 'tall',
'ok' => $messagesent ? qa_lang_html('misc/message_sent') : null,
'fields' => array(
'message' => array(
'type' => $hideForm ? 'static' : '',
'label' => qa_lang_html_sub('misc/message_for_x', qa_get_one_user_html($handle, false)),
'tags' => 'name="message" id="message"',
'value' => qa_html(@$inmessage, $messagesent),
'rows' => 8,
'note' => qa_lang_html_sub('misc/message_explanation', qa_html(qa_opt('site_title'))),
'error' => qa_html(@$errors['message']),
),
),
'buttons' => array(
'send' => array(
'tags' => 'onclick="qa_show_waiting_after(this, false);"',
'label' => qa_lang_html('main/send_button'),
),
),
'hidden' => array(
'domessage' => '1',
'code' => qa_get_form_security_code('message-' . $handle),
),
);
$qa_content['focusid'] = 'message';
if ($hideForm) {
unset($qa_content['form_message']['buttons']);
if (qa_opt('show_message_history'))
unset($qa_content['form_message']['fields']['message']);
else {
unset($qa_content['form_message']['fields']['message']['note']);
unset($qa_content['form_message']['fields']['message']['label']);
}
}
// If relevant, show recent message history
if (qa_opt('show_message_history')) {
$recent = array_merge($torecent, $fromrecent);
qa_sort_by($recent, 'created');
$showmessages = array_slice(array_reverse($recent, true), 0, QA_DB_RETRIEVE_MESSAGES);
if (count($showmessages)) {
$qa_content['message_list'] = array(
'title' => qa_lang_html_sub('misc/message_recent_history', qa_html($toaccount['handle'])),
);
$options = qa_message_html_defaults();
foreach ($showmessages as $message)
$qa_content['message_list']['messages'][] = qa_message_html_fields($message, $options);
}
$qa_content['navigation']['sub'] = qa_user_sub_navigation($fromhandle, 'messages', true);
}
$qa_content['raw']['account'] = $toaccount; // for plugin layers to access
return $qa_content;