messages.php 4.06 KB
Newer Older
Scott committed
1 2
<?php
/*
3
	Question2Answer by Gideon Greenspan and contributors
Scott committed
4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
	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
*/

Scott committed
22
if (!defined('QA_VERSION')) { // don't allow this page to be requested directly from browser
23
	header('Location: ../../');
Scott committed
24 25
	exit;
}
Scott committed
26

Scott committed
27 28 29 30
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';
Scott committed
31

Scott committed
32 33
$loginUserId = qa_get_logged_in_userid();
$loginUserHandle = qa_get_logged_in_handle();
Scott committed
34 35


Scott committed
36
// Check which box we're showing (inbox/sent), we're not using Q2A's single-sign on integration and that we're logged in
Scott committed
37

Scott committed
38 39 40 41 42 43 44
$req = qa_request_part(1);
if ($req === null)
	$showOutbox = false;
elseif ($req === 'sent')
	$showOutbox = true;
else
	return include QA_INCLUDE_DIR . 'qa-page-not-found.php';
Scott committed
45

Scott committed
46 47
if (QA_FINAL_EXTERNAL_USERS)
	qa_fatal_error('User accounts are handled by external code');
Scott committed
48

Scott committed
49 50 51 52 53
if (!isset($loginUserId)) {
	$qa_content = qa_content_prepare();
	$qa_content['error'] = qa_insert_login_links(qa_lang_html('misc/message_must_login'), qa_request());
	return $qa_content;
}
Scott committed
54

Scott committed
55 56
if (!qa_opt('allow_private_messages') || !qa_opt('show_message_history'))
	return include QA_INCLUDE_DIR . 'qa-page-not-found.php';
Scott committed
57 58


Scott committed
59
// Find the messages for this user
Scott committed
60

Scott committed
61 62
$start = qa_get_start();
$pagesize = qa_opt('page_size_pms');
Scott committed
63

Scott committed
64 65 66 67
// get number of messages then actual messages for this page
$func = $showOutbox ? 'qa_db_messages_outbox_selectspec' : 'qa_db_messages_inbox_selectspec';
$pmSpecCount = qa_db_selectspec_count($func('private', $loginUserId, true));
$pmSpec = $func('private', $loginUserId, true, $start, $pagesize);
Scott committed
68

Scott committed
69 70
list($numMessages, $userMessages) = qa_db_select_with_pending($pmSpecCount, $pmSpec);
$count = $numMessages['count'];
Scott committed
71 72


Scott committed
73
// Prepare content for theme
Scott committed
74

Scott committed
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
$qa_content = qa_content_prepare();
$qa_content['title'] = qa_lang_html($showOutbox ? 'misc/pm_outbox_title' : 'misc/pm_inbox_title');

$qa_content['message_list'] = array(
	'tags' => 'id="privatemessages"',
	'messages' => array(),
	'form' => array(
		'tags' => 'name="pmessage" method="post" action="' . qa_self_html() . '"',
		'style' => 'tall',
		'hidden' => array(
			'qa_click' => '', // for simulating clicks in Javascript
			'handle' => qa_html($loginUserHandle),
			'start' => qa_html($start),
			'code' => qa_get_form_security_code('pm-' . $loginUserHandle),
		),
	),
);

$htmlDefaults = qa_message_html_defaults();
if ($showOutbox)
	$htmlDefaults['towhomview'] = true;

foreach ($userMessages as $message) {
	$msgFormat = qa_message_html_fields($message, $htmlDefaults);
	$replyHandle = $showOutbox ? $message['tohandle'] : $message['fromhandle'];

	$msgFormat['form'] = array(
		'style' => 'light',
		'buttons' => array(
			'reply' => array(
				'tags' => 'onclick="window.location.href=\'' . qa_path_html('message/' . $replyHandle) . '\';return false"',
				'label' => qa_lang_html('question/reply_button'),
			),
			'delete' => array(
				'tags' => 'name="m' . qa_html($message['messageid']) . '_dodelete" onclick="return qa_pm_click(' . qa_js($message['messageid']) . ', this, ' . qa_js($showOutbox ? 'outbox' : 'inbox') . ');"',
				'label' => qa_lang_html('question/delete_button'),
				'popup' => qa_lang_html('profile/delete_pm_popup'),
Scott committed
112 113 114 115
			),
		),
	);

Scott committed
116 117
	$qa_content['message_list']['messages'][] = $msgFormat;
}
Scott committed
118

Scott committed
119
$qa_content['page_links'] = qa_html_page_links(qa_request(), $start, $pagesize, $count, qa_opt('pages_prev_next'));
Scott committed
120

Scott committed
121
$qa_content['navigation']['sub'] = qa_messages_sub_navigation($showOutbox ? 'outbox' : 'inbox');
Scott committed
122

Scott committed
123
return $qa_content;