messages.php 4.09 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 22
	http://www.question2answer.org/

	File: qa-include/qa-page-message.php
	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
23 24 25 26
if (!defined('QA_VERSION')) { // don't allow this page to be requested directly from browser
	header('Location: ../');
	exit;
}
Scott committed
27

Scott committed
28 29 30 31
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
32

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


Scott committed
37
// 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
38

Scott committed
39 40 41 42 43 44 45
$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
46

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

Scott committed
50 51 52 53 54
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
55

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


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

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

Scott committed
65 66 67 68
// 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
69

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


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

Scott committed
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
$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
113 114 115 116
			),
		),
	);

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

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

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

Scott committed
124
return $qa_content;