xref: /webtrees/app/Module/UserMessagesModule.php (revision 0e62c4b8d0ec6901bfaffd1dc763db37489518a4)
18c2e8227SGreg Roach<?php
2*0e62c4b8SGreg Roachnamespace Fisharebest\Webtrees\Module;
38c2e8227SGreg Roach
48c2e8227SGreg Roach/**
58c2e8227SGreg Roach * webtrees: online genealogy
68c2e8227SGreg Roach * Copyright (C) 2015 webtrees development team
78c2e8227SGreg Roach * This program is free software: you can redistribute it and/or modify
88c2e8227SGreg Roach * it under the terms of the GNU General Public License as published by
98c2e8227SGreg Roach * the Free Software Foundation, either version 3 of the License, or
108c2e8227SGreg Roach * (at your option) any later version.
118c2e8227SGreg Roach * This program is distributed in the hope that it will be useful,
128c2e8227SGreg Roach * but WITHOUT ANY WARRANTY; without even the implied warranty of
138c2e8227SGreg Roach * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
148c2e8227SGreg Roach * GNU General Public License for more details.
158c2e8227SGreg Roach * You should have received a copy of the GNU General Public License
168c2e8227SGreg Roach * along with this program. If not, see <http://www.gnu.org/licenses/>.
178c2e8227SGreg Roach */
18*0e62c4b8SGreg Roachuse Fisharebest\Webtrees\Auth;
19*0e62c4b8SGreg Roachuse Fisharebest\Webtrees\Database;
20*0e62c4b8SGreg Roachuse Fisharebest\Webtrees\Filter;
21*0e62c4b8SGreg Roachuse Fisharebest\Webtrees\I18N;
22*0e62c4b8SGreg Roachuse Fisharebest\Webtrees\Theme;
23*0e62c4b8SGreg Roachuse Fisharebest\Webtrees\User;
248c2e8227SGreg Roach
258c2e8227SGreg Roach/**
268c2e8227SGreg Roach * Class UserMessagesModule
278c2e8227SGreg Roach */
28e2a378d3SGreg Roachclass UserMessagesModule extends AbstractModule implements ModuleBlockInterface {
298c2e8227SGreg Roach	/** {@inheritdoc} */
308c2e8227SGreg Roach	public function getTitle() {
318c2e8227SGreg Roach		return /* I18N: Name of a module */ I18N::translate('Messages');
328c2e8227SGreg Roach	}
338c2e8227SGreg Roach
348c2e8227SGreg Roach	/** {@inheritdoc} */
358c2e8227SGreg Roach	public function getDescription() {
368c2e8227SGreg Roach		return /* I18N: Description of the “Messages” module */ I18N::translate('Communicate directly with other users, using private messages.');
378c2e8227SGreg Roach	}
388c2e8227SGreg Roach
398c2e8227SGreg Roach	/** {@inheritdoc} */
408c2e8227SGreg Roach	public function getBlock($block_id, $template = true, $cfg = null) {
418c2e8227SGreg Roach		// Block actions
428c2e8227SGreg Roach		$action      = Filter::post('action');
438c2e8227SGreg Roach		$message_ids = Filter::postArray('message_id');
448c2e8227SGreg Roach		if ($action === 'deletemessage') {
458c2e8227SGreg Roach			foreach ($message_ids as $message_id) {
468c2e8227SGreg Roach				Database::prepare("DELETE FROM `##message` WHERE message_id=?")->execute(array($message_id));
478c2e8227SGreg Roach			}
488c2e8227SGreg Roach		}
49e2a378d3SGreg Roach		$block = $this->getBlockSetting($block_id, 'block', '1');
508c2e8227SGreg Roach		if ($cfg) {
518c2e8227SGreg Roach			foreach (array('block') as $name) {
528c2e8227SGreg Roach				if (array_key_exists($name, $cfg)) {
538c2e8227SGreg Roach					$$name = $cfg[$name];
548c2e8227SGreg Roach				}
558c2e8227SGreg Roach			}
568c2e8227SGreg Roach		}
578c2e8227SGreg Roach		$messages = Database::prepare("SELECT message_id, sender, subject, body, UNIX_TIMESTAMP(created) AS created FROM `##message` WHERE user_id=? ORDER BY message_id DESC")
588c2e8227SGreg Roach			->execute(array(Auth::id()))
598c2e8227SGreg Roach			->fetchAll();
608c2e8227SGreg Roach
618c2e8227SGreg Roach		$count = count($messages);
628c2e8227SGreg Roach		$id    = $this->getName() . $block_id;
638c2e8227SGreg Roach		$class = $this->getName() . '_block';
648c2e8227SGreg Roach		$title = I18N::plural('%s message', '%s messages', $count, I18N::number($count));
658c2e8227SGreg Roach		$users = array_filter(User::all(), function (User $user) {
668c2e8227SGreg Roach			return $user->getUserId() !== Auth::id() && $user->getPreference('verified_by_admin') && $user->getPreference('contactmethod') !== 'none';
678c2e8227SGreg Roach		});
688c2e8227SGreg Roach
698c2e8227SGreg Roach		$content = '<form name="messageform" method="post" onsubmit="return confirm(\'' . I18N::translate('Are you sure you want to delete this message?  It cannot be retrieved later.') . '\');">';
708c2e8227SGreg Roach		if ($users) {
718c2e8227SGreg Roach			$content .= '<label for="touser">' . I18N::translate('Send a message') . '</label>';
728c2e8227SGreg Roach			$content .= '<select id="touser" name="touser">';
738c2e8227SGreg Roach			$content .= '<option value="">' . I18N::translate('&lt;select&gt;') . '</option>';
748c2e8227SGreg Roach			foreach ($users as $user) {
758c2e8227SGreg Roach				$content .= sprintf('<option value="%1$s">%2$s - %1$s</option>', Filter::escapeHtml($user->getUserName()), Filter::escapeHtml($user->getRealName()));
768c2e8227SGreg Roach			}
778c2e8227SGreg Roach			$content .= '</select>';
788c2e8227SGreg Roach			$content .= '<input type="button" value="' . I18N::translate('Send') . '" onclick="message(document.messageform.touser.options[document.messageform.touser.selectedIndex].value, \'messaging2\', \'\'); return false;"><br><br>';
798c2e8227SGreg Roach		}
808c2e8227SGreg Roach		if ($messages) {
818c2e8227SGreg Roach			$content .= '<input type="hidden" name="action" value="deletemessage">';
828c2e8227SGreg Roach			$content .= '<table class="list_table"><tr>';
838c2e8227SGreg Roach			$content .= '<th class="list_label">' . I18N::translate('Delete') . '<br><a href="#" onclick="jQuery(\'#' . $this->getName() . $block_id . ' :checkbox\').prop(\'checked\', true); return false;">' . I18N::translate('All') . '</a></th>';
84e284b8e1SGreg Roach			$content .= '<th class="list_label">' . I18N::translate('Subject') . '</th>';
85e284b8e1SGreg Roach			$content .= '<th class="list_label">' . I18N::translate('Date sent') . '</th>';
86e284b8e1SGreg Roach			$content .= '<th class="list_label">' . I18N::translate('Email address') . '</th>';
878c2e8227SGreg Roach			$content .= '</tr>';
888c2e8227SGreg Roach			foreach ($messages as $message) {
898c2e8227SGreg Roach				$content .= '<tr>';
908c2e8227SGreg Roach				$content .= '<td class="list_value_wrap"><input type="checkbox" id="cb_message' . $message->message_id . '" name="message_id[]" value="' . $message->message_id . '"></td>';
918c2e8227SGreg Roach				$content .= '<td class="list_value_wrap"><a href="#" onclick="return expand_layer(\'message' . $message->message_id . '\');"><i id="message' . $message->message_id . '_img" class="icon-plus"></i> <b dir="auto">' . Filter::escapeHtml($message->subject) . '</b></a></td>';
92309092efSGreg Roach				$content .= '<td class="list_value_wrap">' . format_timestamp($message->created + WT_TIMESTAMP_OFFSET) . '</td>';
938c2e8227SGreg Roach				$content .= '<td class="list_value_wrap">';
948c2e8227SGreg Roach				$user = User::findByIdentifier($message->sender);
958c2e8227SGreg Roach				if ($user) {
96524c0fabSGreg Roach					$content .= $user->getRealNameHtml();
978c2e8227SGreg Roach					$content .= '  - <span dir="auto">' . $user->getEmail() . '</span>';
988c2e8227SGreg Roach				} else {
998c2e8227SGreg Roach					$content .= '<a href="mailto:' . Filter::escapeHtml($message->sender) . '">' . Filter::escapeHtml($message->sender) . '</a>';
1008c2e8227SGreg Roach				}
1018c2e8227SGreg Roach				$content .= '</td>';
1028c2e8227SGreg Roach				$content .= '</tr>';
1038c2e8227SGreg Roach				$content .= '<tr><td class="list_value_wrap" colspan="4"><div id="message' . $message->message_id . '" style="display:none;">';
1048c2e8227SGreg Roach				$content .= '<div dir="auto" style="white-space: pre-wrap;">' . Filter::expandUrls($message->body) . '</div><br>';
1058c2e8227SGreg Roach				if (strpos($message->subject, /* I18N: When replying to an email, the subject becomes “RE: <subject>” */ I18N::translate('RE: ')) !== 0) {
1068c2e8227SGreg Roach					$message->subject = I18N::translate('RE: ') . $message->subject;
1078c2e8227SGreg Roach				}
1088c2e8227SGreg Roach				if ($user) {
1098c2e8227SGreg Roach					$content .= '<a href="#" onclick="reply(\'' . Filter::escapeJs($message->sender) . '\', \'' . Filter::escapeJs($message->subject) . '\'); return false;">' . I18N::translate('Reply') . '</a> | ';
1108c2e8227SGreg Roach				}
1118c2e8227SGreg Roach				$content .= '<a href="index.php?action=deletemessage&amp;message_id%5B%5D=' . $message->message_id . '" onclick="return confirm(\'' . I18N::translate('Are you sure you want to delete this message?  It cannot be retrieved later.') . '\');">' . I18N::translate('Delete') . '</a></div></td></tr>';
1128c2e8227SGreg Roach			}
1138c2e8227SGreg Roach			$content .= '</table>';
1148c2e8227SGreg Roach			$content .= '<input type="submit" value="' . I18N::translate('Delete selected messages') . '"><br>';
1158c2e8227SGreg Roach		}
1168c2e8227SGreg Roach		$content .= '</form>';
1178c2e8227SGreg Roach
1188c2e8227SGreg Roach		if ($template) {
1198c2e8227SGreg Roach			if ($block) {
1208c2e8227SGreg Roach				$class .= ' small_inner_block';
1218c2e8227SGreg Roach			}
122cbc1590aSGreg Roach
1238c2e8227SGreg Roach			return Theme::theme()->formatBlock($id, $title, $class, $content);
1248c2e8227SGreg Roach		} else {
1258c2e8227SGreg Roach			return $content;
1268c2e8227SGreg Roach		}
1278c2e8227SGreg Roach	}
1288c2e8227SGreg Roach
1298c2e8227SGreg Roach	/** {@inheritdoc} */
1308c2e8227SGreg Roach	public function loadAjax() {
1318c2e8227SGreg Roach		return false;
1328c2e8227SGreg Roach	}
1338c2e8227SGreg Roach
1348c2e8227SGreg Roach	/** {@inheritdoc} */
1358c2e8227SGreg Roach	public function isUserBlock() {
1368c2e8227SGreg Roach		return true;
1378c2e8227SGreg Roach	}
1388c2e8227SGreg Roach
1398c2e8227SGreg Roach	/** {@inheritdoc} */
1408c2e8227SGreg Roach	public function isGedcomBlock() {
1418c2e8227SGreg Roach		return false;
1428c2e8227SGreg Roach	}
1438c2e8227SGreg Roach
1448c2e8227SGreg Roach	/** {@inheritdoc} */
1458c2e8227SGreg Roach	public function configureBlock($block_id) {
1468c2e8227SGreg Roach		if (Filter::postBool('save') && Filter::checkCsrf()) {
147e2a378d3SGreg Roach			$this->setBlockSetting($block_id, 'block', Filter::postBool('block'));
1488c2e8227SGreg Roach		}
1498c2e8227SGreg Roach
150e2a378d3SGreg Roach		$block = $this->getBlockSetting($block_id, 'block', '1');
1518c2e8227SGreg Roach		echo '<tr><td class="descriptionbox wrap width33">';
1528c2e8227SGreg Roach		echo /* I18N: label for a yes/no option */ I18N::translate('Add a scrollbar when block contents grow');
1538c2e8227SGreg Roach		echo '</td><td class="optionbox">';
1548c2e8227SGreg Roach		echo edit_field_yes_no('block', $block);
1558c2e8227SGreg Roach		echo '</td></tr>';
1568c2e8227SGreg Roach	}
1578c2e8227SGreg Roach}
158