'. t('The private messaging module allows users to send messages to each other without having to share email addresses. An inbox link will appear in the navigation menu. The "write to author" links are included in posts, allowing users to write a private message instead of commenting openly. Allowing users to communicate directly is an important part of building the strength of the community.') .'
';
$output .= '
'. t('The contacts list contains only users that you have previously messaged. To contact users not in your list, you need to know their local user name. Administrators can set messaging options such as frequency of emails, message status display, and number of messages to display per page. They can also configure \'Write to Author\' options.') .'
'. t('For more information please read the configuration and customization handbook Privatemsg page.', array('!privatemsg' => 'http://drupal.org/handbook/modules/privatemsg/')) .'
';
return $output;
}
}
/**
* Implementation of hook_menu().
*/
function privatemsg_menu($may_cache) {
global $user;
$items = array();
$access = user_access('access private messages');
if ($may_cache) {
$items[] = array(
'path' => 'admin/settings/privatemsg',
'title' => t('Privatemsg'),
'description' => t('Configure Privatemsg settings.'),
'callback' => 'drupal_get_form',
'callback arguments' => array('privatemsg_configure'),
'access' => user_access('administer private messages'),
);
$items[] = array(
'path' => 'privatemsg',
'title' => t('Private messages'),
'callback' => 'privatemsg_list',
'access' => !$user->uid || $access,
'type' => MENU_SUGGESTED_ITEM,
);
$items[] = array(
'path' => 'privatemsg/list',
'title' => t('List'),
'callback' => 'privatemsg_list',
'callback arguments' => array(NULL),
'access' => !$user->uid || $access,
'type' => MENU_DEFAULT_LOCAL_TASK,
'weight' => -10,
);
$items[] = array(
'path' => 'privatemsg/new',
'title' => t('Compose'),
'callback' => 'drupal_get_form',
'callback arguments' => array('privatemsg_new_form'),
'access' => $access,
'type' => MENU_LOCAL_TASK,
'weight' => -5,
);
$items[] = array(
'path' => 'privatemsg/contacts',
'title' => t('Contacts'),
'callback' => 'drupal_get_form',
'callback arguments' => array('privatemsg_contacts_form'),
'access' => $access,
'type' => MENU_LOCAL_TASK,
'weight' => 0,
);
$items[] = array(
'path' => 'privatemsg/folders',
'title' => t('Manage folders'),
'callback' => 'privatemsg_manage_folders',
'access' => user_access('create new folder') && $user->uid,
'type' => MENU_LOCAL_TASK,
'weight' => 5,
);
$items[] = array(
'path' => 'privatemsg/folders/movetonew',
'title' => t('Move to new folder'),
'callback' => 'drupal_get_form',
'callback arguments' => array('privatemsg_new_folder_form'),
'access' => user_access('create new folder') && $user->uid,
'type' => MENU_CALLBACK,
);
$items[] = array(
'path' => 'privatemsg/autocomplete',
'title' => t('Privatemsg autocomplete'),
'callback' => 'privatemsg_autocomplete',
'access' => $access,
'type' => MENU_CALLBACK,
);
$items[] = array(
'path' => 'privatemsg/delete',
'callback' => 'privatemsg_delete',
'access' => $access && $user->uid, // No guest access
'type' => MENU_CALLBACK
);
}
else {
if (!isset($user->privatemsg_allow)) {
_privatemsg_user_add_defaults($user);
}
if (arg(0) == 'privatemsg' && arg(1) == 'view' && intval(arg(2)) > 0) {
$items[] = array(
'path' => 'privatemsg/view/'. arg(2),
'title' => t('Read message'),
'callback' => 'privatemsg_view',
'callback arguments' => array(intval(arg(2)), FALSE),
'access' => $access && $user->uid, // Check access/redirect in callback
'type' => MENU_CALLBACK,
'weight' => -10,
);
$items[] = array(
'path' => 'privatemsg/view/'. arg(2) .'/read',
'title' => t('Read message'),
'access' => $access && $user->uid, // Check access/redirect in callback
'type' => MENU_DEFAULT_LOCAL_TASK,
'weight' => -10,
);
$items[] = array(
'path' => 'privatemsg/view/'. arg(2) .'/back',
'title' => t('Back to list'),
'callback' => 'privatemsg_back_to_list',
'callback arguments' => array(intval(arg(2))),
'access' => TRUE, // Check access/redirect in callback
'type' => MENU_LOCAL_TASK,
'weight' => 0,
);
}
if (arg(0) == 'privatemsg' && arg(1) == 'reply' && intval(arg(2)) > 0) {
$items[] = array(
'path' => 'privatemsg/reply/'. arg(2),
'title' => t('Write a reply'),
'callback' => 'drupal_get_form',
'callback arguments' => array('privatemsg_new_form'),
'access' => $access,
'type' => MENU_CALLBACK,
);
}
if (arg(0) == 'privatemsg' && arg(1) == 'new' && intval(arg(2)) > 0) {
$items[] = array(
'path' => 'privatemsg/new/'. arg(2),
'title' => t('Write a new message'),
'callback' => 'drupal_get_form',
'callback arguments' => array('privatemsg_new_form'),
'access' => $access,
'type' => MENU_CALLBACK,
);
}
if ($user-> uid != arg(2) && arg(0) == 'privatemsg' && arg(1) == 'block' && ($account = user_load(array('uid' => arg(2))))) {
$blocked = privatemsg_user_blocked($account->uid);
$title_args = array('@user' => $account->name);
$items[] = array(
'path' => 'privatemsg/block/'. arg(2),
'title' => $blocked ? t('Unblock @user', $title_args) : t('Block @user', $title_args),
'callback' => 'drupal_get_form',
'callback arguments' => array($blocked ? 'privatemsg_unblock_user_form' : 'privatemsg_block_user_form', $account),
'type' => MENU_CALLBACK,
);
}
$new = _privatemsg_get_new_messages();
$items[] = array(
'path' => 'privatemsg/inbox',
'title' => variable_get('privatemsg_menu_link', t('My inbox')) . ($new ? ' ('. $new .')' : ''),
'callback' => 'drupal_goto',
'callback arguments' => array('privatemsg'),
'type' => $user->uid && $user->privatemsg_allow ? MENU_DYNAMIC_ITEM : MENU_CALLBACK,
);
if ($new && strncmp($_GET['q'], 'privatemsg', 10) && $user->privatemsg_setmessage_notify && user_access('access private messages')) {
$m = drupal_set_message();
if (empty($m)) {
drupal_set_message(strtr(format_plural($new, 'You have a new private message.', 'You have @count new private messages.'), array('!url' => url('privatemsg'))));
}
}
if (arg(0) == 'privatemsg' && arg(1) == 'folders' && intval(arg(2)) > 1) {
$modify_folder = privatemsg_folder_access($user->uid, arg(2));
if (!$modify_folder) {
drupal_goto('privatemsg/folders');
}
$items[] = array(
'path' => 'privatemsg/folders/'. arg(2) .'/rename',
'title' => t('Rename folder'),
'callback' => 'drupal_get_form',
'callback arguments' => array('privatemsg_rename_folder_form', arg(2)),
'access' => $access,
'type' => MENU_CALLBACK,
);
$items[] = array(
'path' => 'privatemsg/folders/'. arg(2) .'/empty',
'title' => t('Empty folder?'),
'callback' => 'drupal_get_form',
'callback arguments' => array('privatemsg_empty_folder_form', arg(2)),
'access' => $access,
'type' => MENU_CALLBACK,
);
$items[] = array(
'path' => 'privatemsg/folders/'. arg(2) .'/delete',
'title' => t('Delete folder?'),
'callback' => 'drupal_get_form',
'callback arguments' => array('privatemsg_delete_folder_form', arg(2)),
'access' => $access,
'type' => MENU_CALLBACK,
);
}
if (is_numeric(arg(1)) && (arg(0) == 'privatemsg' || arg(0) == 'user') && ($user->uid == arg(1) || user_access('administer private messages'))) {
if (arg(0) == 'user' && arg(2) == 'privatemsg') {
$account = $user->uid == arg(1) ? $user : user_load(array('uid' => arg(1)));
$items[] = array(
'path' => 'user/'. arg(1) .'/privatemsg',
'title' => t('Privatemsg'),
'callback' => 'privatemsg_list',
'callback arguments' => array(arg(1)),
'access' => $account->privatemsg_allow,
'type' => MENU_LOCAL_TASK,
);
}
if (arg(0) == 'privatemsg') {
if ($user->uid == arg(1)) {
$account = $user;
$title = t('Private messages');
}
else {
$account = user_load(array('uid' => arg(1)));
$title = t('Private messages for @name', array('@name' => $account->name));
}
$items[] = array(
'path' => 'privatemsg/'. arg(1),
'title' => $title,
'callback' => 'privatemsg_list',
'callback arguments' => array(arg(1)),
'access' => $account->privatemsg_allow,
'type' => MENU_CALLBACK,
);
}
}
drupal_add_css('./'. drupal_get_path('module', 'privatemsg') .'/privatemsg.css');
}
return $items;
}
/**
* Implementation of hook_perm().
*/
function privatemsg_perm() {
return array('access private messages', 'administer private messages', 'create new folder');
}
/**
* Implementation of hook_cron().
*/
function privatemsg_cron() {
// Perform these actions just once per day.
if (variable_get('privatemsg_last_cron', 0) < (time() - 3600*24)) {
_privatemsg_prune();
variable_set('privatemsg_last_cron', time());
}
}
/**
* Implementation of hook_link().
*/
function privatemsg_link($type, $node = NULL, $teaser = FALSE) {
global $user;
static $access = array();
$links = array();
$uid = $node->uid;
if ($type == 'comment' && $node->nid) {
$node = node_load($node->nid);
}
if (user_access('access private messages') && in_array($teaser ? 'teaser' : $type, variable_get('privatemsg_link_'. $node->type, array())) && $uid != $user->uid && $user->privatemsg_allow) {
if (!isset($access[$uid])) {
$author = user_load(array('uid' => $uid));
$access[$uid] = user_access('access private messages', $author) && $author->uid && $author->privatemsg_allow;
}
if ($access[$uid]) {
$links['privatemsg_write_to_author'] = array(
'title' => t('Write to author'),
'href' => 'privatemsg/new/'. $uid,
);
}
}
return $links;
}
/**
* Implementation of hook_user().
*/
function privatemsg_user($type, &$edit, &$account, $category = NULL) {
global $user;
switch ($type) {
case 'load':
_privatemsg_user_add_defaults($account);
break;
case 'view':
if (user_access('access private messages')) {
if (privatemsg_message_allowed($account->uid)) {
$return[t('Private messages')][] = array(
'value' => l(t('Write private message'), 'privatemsg/new/'. $account->uid, array(
'title' => t('Send private message to @name', array('@name' => $account->name)))),
'class' => 'send-message');
}
if ($account->uid != $user->uid) {
if (!privatemsg_user_blocked($account->uid) ) {
$return[t('Private messages')][] = array(
'value' => l(t('Block messages'), 'privatemsg/block/'. $account->uid, array(
'title' => t('Block private messages from @name', array('@name' => $account->name)))),
'class' => 'block-message'
);
}
else {
$return[t('Private messages')][] = array(
'value' => l(t('Unblock messages'), 'privatemsg/block/'. $account->uid, array(
'title' => t('Unblock private messages from @name', array('@name' => $account->name)))),
'class' => 'unblock-message');
}
}
return $return;
}
elseif ($user->uid) {
return;
}
elseif ($account->privatemsg_allow) {
if (variable_get('user_register', 1)) {
return array(t('Private messages') => array(array(
'value' => t('login or register to send private messages to this user', array('!login' => url('user/login'), '!register' => url('user/register'))),
'class' => 'need-login')));
}
else {
return array(t('Private messages') => array(array(
'value' => t('login to send private messages to this user', array('!login' => url('user/login'))),
'class' => 'need-login')));
}
}
break;
case 'form':
if (user_access('access private messages') && $category == 'account') {
$form = array();
$form['privatemsg_settings'] = array(
'#type' => 'fieldset',
'#title' => t('Private message settings'),
'#weight' => 4,
'#collapsible' => TRUE
);
$form['privatemsg_settings']['privatemsg_allow'] = array(
'#type' => 'checkbox',
'#title' => t('Allow private messages'),
'#default_value' => isset($edit['privatemsg_allow']) ? $edit['privatemsg_allow'] : 1,
'#description' => t('Check this box to allow users to send you private messages.')
);
$form['privatemsg_settings']['privatemsg_setmessage_notify'] = array(
'#type' => 'checkbox',
'#title' => t('Aggressive notification of new messages'),
'#default_value' => isset($edit['privatemsg_setmessage_notify']) ? $edit['privatemsg_setmessage_notify'] : 1,
'#description' => t('Show status message on every page until new messages are read.')
);
return $form;
}
break;
case 'insert':
if ($welcome_message = trim(variable_get('privatemsg_welcome_message', ''))) {
$subject = variable_get('privatemsg_welcome_subject', t('Welcome'));
$format = variable_get('privatemsg_welcome_format', FILTER_FORMAT_DEFAULT);
$sender = user_load(array('uid' => variable_get('privatemsg_welcome_sender', 1)));
if ($sender->uid) {
_privatemsg_send($sender, $account, $subject, $welcome_message, $format);
}
}
break;
case 'delete':
db_query('DELETE FROM {privatemsg} WHERE recipient = %d', $account->uid);
db_query('DELETE FROM {privatemsg_archive} WHERE recipient = %d', $account->uid);
db_query('DELETE FROM {privatemsg_folder} WHERE uid = %d', $account->uid);
db_query('UPDATE {privatemsg} SET author = 0 WHERE author = %d', $account->uid);
db_query('UPDATE {privatemsg_archive} SET author = 0 WHERE author = %d', $account->uid);
break;
}
}
/**
* Implementation of hook_form_alter().
*/
function privatemsg_form_alter($form_id, &$form) {
switch ($form_id) {
case 'node_type_form':
$link = variable_get('privatemsg_link_'. $form['#node_type']->type, array());
$form['workflow']['privatemsg_link'] = array(
'#type' => 'checkboxes',
'#title' => t('Private message "Write to author" links'),
'#weight' => 30,
'node' => array(
'#type' => 'checkbox',
'#title' => t('Link on node'),
'#default_value' => in_array('node', $link),
),
'teaser' => array(
'#type' => 'checkbox',
'#title' => t('Link on teaser'),
'#default_value' => in_array('teaser', $link),
),
'comment' => array(
'#type' => module_exists('comment') ? 'checkbox' : 'hidden',
'#title' => t('Link on comments'),
'#default_value' => in_array('comment', $link),
),
);
break;
}
}
/**
* Implementation of hook_block().
*/
function privatemsg_block($op = 'list', $delta = 0, $edit = array()) {
if ($op == 'list') {
$blocks[0]['info'] = t('Private messages');
return $blocks;
}
else if ($op == 'view') {
switch ($delta) {
case 0:
return _privatemsg_block_inbox();
}
}
}
/**
* Implementation of hook privatemsg_alter().
*/
function privatemsg_privatemsg_alter($sender = NULL, $recipient = NULL, $subject = NULL, $body = NULL, $format = NULL, $thread = NULL, $type = NULL) {
$key = _privatemsg_get_type_key($type);
// use isset() and ! here to determine if the user has actually set the preference to FALSE
// explicitly - allow message otherwise (if the user has specified no preference)
if (isset($recipient->$key) && !$recipient->$key) {
return FALSE;
}
return TRUE;
}
function privatemsg_message_allowed($recipient, $author = NULL) {
global $user;
$author = $author ? $author : $user->uid;
$account = user_load(array('uid' => $recipient));
if (privatemsg_user_blocked($author, $recipient)) {
return FALSE;
}
if (isset($account->privatemsg_allow) && !$account->privatemsg_allow) {
return FALSE;
}
return TRUE;
}
function privatemsg_user_blocked($author, $recipient = NULL) {
global $user;
$recipient = ($recipient) ? $recipient : $user->uid;
return db_result(db_query("SELECT COUNT(*) FROM {privatemsg_block_user} WHERE author = %d AND recipient = %d", $author, $recipient));
}
function privatemsg_block_user($author, $recipient = NULL) {
global $user;
$recipient = ($recipient) ? $recipient : $user->uid;
if (!privatemsg_user_blocked($author, $recipient)) {
db_query("INSERT INTO {privatemsg_block_user} (author, recipient) VALUES (%d, %d)", $author, $recipient);
drupal_set_message(t('User has been blocked'));
}
}
function privatemsg_unblock_user($author, $recipient = NULL) {
global $user;
$recipient = ($recipient) ? $recipient : $user->uid;
if (privatemsg_user_blocked($author, $recipient)) {
db_query("DELETE FROM {privatemsg_block_user} WHERE author = %d AND recipient = %d", $author, $recipient);
drupal_set_message(t('User has been unblocked'));
}
}
function privatemsg_block_user_form($account) {
$form = array();
$form['uid'] = array('#type' => 'value', '#value' => $account->uid);
return confirm_form($form, t('Are you sure you want to block !user from sending you any more messages?', array('!user' => $account->name)), 'user/'. $account->uid, '');
}
function privatemsg_block_user_form_submit($form_id, $form_values) {
privatemsg_block_user($form_values['uid']);
return 'user/'. $form_values['uid'];
}
function privatemsg_unblock_user_form($account) {
$form = array();
$form['uid'] = array('#type' => 'value', '#value' => $account->uid);
return confirm_form($form, t('Are you sure you want to allow !user to send you messages?', array('!user' => $account->name)), 'user/'. $account->uid, '');
}
function privatemsg_unblock_user_form_submit($form_id, $form_values) {
privatemsg_unblock_user($form_values['uid']);
return 'user/'. $form_values['uid'];
}
function _privatemsg_block_inbox() {
global $user;
if ($user->uid && user_access('access private messages') && $user->privatemsg_allow) {
$new = _privatemsg_get_new_messages();
$block = theme('privatemsg_block_inbox', $new);
return $block;
}
}
function privatemsg_configure() {
$form['privatemsg_max_rate'] = array(
'#type' => 'select',
'#title' => t('Private messaging max rate'),
'#default_value' => variable_get('privatemsg_max_rate', 15),
'#options' => drupal_map_assoc(array(5, 10, 15, 20, 30, 60), 'format_interval'),
'#description' => t('Max submit rate for private messaging. To prevent abuse.'),
);
$form['privatemsg_sent_status'] = array(
'#type' => 'select',
'#title' => t('Sent message status'),
'#default_value' => variable_get('privatemsg_sent_status', 1),
'#options' => array(t('Disabled'), t('Enabled')),
'#description' => t('If enabled users can see whether a message has been read or not.'),
);
$form['privatemsg_per_page'] = array(
'#type' => 'select',
'#title' => t('Messages per page'),
'#default_value' => variable_get('privatemsg_per_page', 10),
'#options' => drupal_map_assoc(array(5, 10, 15, 20, 25, 30, 35, 40, 50, 60, 80, 100)),
'#description' => t('The maximum number of messages displayed per page; links to browse messages automatically appear.'),
);
$form['privatemsg_online_status'] = array(
'#type' => 'select',
'#title' => t('Show Online Status'),
'#default_value' => variable_get('privatemsg_online_status', 1),
'#options' => array('No', 'Yes'),
'#description' => t('Whether to allow users to see if message author was recently online'),
);
$form['privatemsg_menu_link'] = array(
'#type' => 'textfield',
'#title' => t('Menu link'),
'#default_value' => variable_get('privatemsg_menu_link', t('My inbox')),
'#description' => t("Text shown in link to user's inbox."),
);
$options = array(
'1' => t('Above the message'),
'2' => t('Below the message'),
'3' => t('Above and below the message'),
'4' => t('Neither (show the old links)'),
);
$form['privatemsg_view_actions'] = array(
'#type' => 'radios',
'#title' => t('Display action form on view screens'),
'#description' => t('Choose where to display the actions form on the view message screen.'),
'#options' => $options,
'#default_value' => variable_get('privatemsg_view_actions', '3'),
);
$options = array(
'1' => t('Before other buttons'),
'2' => t('After other buttons'),
);
$form['privatemsg_actions_loc'] = array(
'#type' => 'radios',
'#title' => t('Display delete button'),
'#description' => t('Choose where to display the actions select on the folder view.'),
'#options' => $options,
'#default_value' => variable_get('privatemsg_actions_loc', '1'),
);
$form['privatemsg_threaded_view'] = array(
'#type' => 'radios',
'#title' => t('How messages are displayed on the detail screen'),
'#description' => t('You can choose between displaying a thread of messages (like for example on facebook) or just a single message.'),
'#options' => array(t('Single message'), t('Full thread')),
'#default_value' => variable_get('privatemsg_threaded_view', 0),
);
$form['links'] = array(
'#type' => 'fieldset',
'#title' => t('"Write to author" links'),
'#description' => t('Edit content types to select where these links are displayed.', array('!settings-url' => url('admin/content/types'))),
);
$form['welcome'] = array(
'#type' => 'fieldset',
'#title' => t('Welcome message for new users'),
);
$form['welcome']['privatemsg_welcome_subject'] = array(
'#type' => 'textfield',
'#title' => t('Subject'),
'#default_value' => variable_get('privatemsg_welcome_subject', t('Welcome')),
'#size' => 50,
'#maxlength' => 64,
);
$form['welcome']['privatemsg_welcome_message'] = array(
'#type' => 'textarea',
'#title' => t('Message'),
'#default_value' => variable_get('privatemsg_welcome_message', ''),
'#cols' => 80,
'#rows' => 5,
'#description' => t('Leave blank to disable this feature.'),
);
$form['welcome']['filterform'] = filter_form(variable_get('privatemsg_welcome_format', FILTER_FORMAT_DEFAULT));
$sender = user_load(array('uid' => variable_get('privatemsg_welcome_sender', 1)));
$form['welcome']['privatemsg_welcome_sender'] = array(
'#type' => 'textfield',
'#title' => t('Sender'),
'#default_value' => $sender->name,
'#autocomplete_path' => 'privatemsg/autocomplete',
'#size' => 50,
'#maxlength' => 64,
'#required' => TRUE,
);
$form['admin_default'] = array(
'#type' => 'fieldset',
'#title' => t('Default user settings'),
'#description' => 'Set the default values for user settings. These can be changed by each user.',
'#collapsible' => TRUE,
);
$form['admin_default']['privatemsg_default_allow'] = array(
'#type' => 'checkbox',
'#title' => t("'Allow private messages' default"),
'#default_value' => variable_get('privatemsg_default_allow', 1),
'#description' => t("Check this box to set the default value of the 'Allow private messages' user setting."),
);
$form['admin_default']['privatemsg_default_setmessage_notify'] = array(
'#type' => 'checkbox',
'#title' => t("'Aggressive notification of new messages' default"),
'#default_value' => variable_get('privatemsg_default_setmessage_notify', 1),
'#description' => t("Check this box to set the default value of the 'Aggressive notification of new messages' user setting."),
);
return system_settings_form($form);
}
function privatemsg_configure_validate($form_id, $form_values, $form) {
if (!empty($form_values['privatemsg_welcome_sender'])) {
$sender = user_load(array('name' => $form_values['privatemsg_welcome_sender']));
if ($sender->uid) {
form_set_value($form['welcome']['privatemsg_welcome_sender'], $sender->uid);
}
else {
form_set_error('privatemsg_welcome_sender', t('The Sender does not exist.'));
}
}
}
function privatemsg_list($uid = NULL) {
global $user;
if (!empty($uid) && is_numeric($uid) && user_access('administer private messages')) {
$account = user_load(array('uid' => $uid));
}
else {
$account = $user;
}
// Notification emails link here, but the user may not be logged in yet.
if ($account && !$account->uid) {
drupal_goto('user/login', 'destination=privatemsg');
}
// wha? Disallow users who have set their pref to "don't contact me" from
// seeing their inbox? Surely not: privatemsg_allow only determines whether a
// user receives direct private messages, there are still other types of
// messages that arrive in a user's inbox.
if (!user_access('access private messages')) {// || !$account->privatemsg_allow) {
return drupal_access_denied();
}
$args = array($account->uid);
if (isset($_SESSION['privatemsg_type'])) {
$type = " AND type = '%s'";
$args[] = $_SESSION['privatemsg_type'];
}
else {
$type = '';
}
$current_folder = intval(arg(2));
$folder_name = _privatemsg_folder_map($current_folder, $account->uid);
$count_query = NULL;
if ($current_folder == PRIVATEMSG_FOLDER_SENT) {
$where_field = 'author';
$join_field = 'recipient';
}
else {
$where_field = 'recipient';
$join_field = 'author';
}
$sql1 = "SELECT id, subject, p.timestamp, u.uid, u.name, newmsg, type FROM {privatemsg} p INNER JOIN {users} u ON ";
$sql = $sql1 ."p.$join_field = u.uid WHERE p.$where_field = %d $type AND p.{$where_field}_del = %d";
if ($current_folder == PRIVATEMSG_FOLDER_RECYCLE_BIN) {
$args[] = 1;
$sql .= " UNION $sql1 p.recipient = u.uid WHERE p.author = %d $type AND p.author_del = %d";
$args = array_merge($args, $args);
$count_query = "SELECT (SELECT COUNT(*) FROM {privatemsg} p INNER JOIN {users} u ON p.author = u.uid WHERE p.recipient = %d AND p.recipient_del = %d) + (SELECT COUNT(*) FROM {privatemsg} p INNER JOIN {users} u ON p.recipient = u.uid WHERE p.author = %d AND p.author_del = %d)";
}
else {
$args[] = 0;
if ($current_folder != PRIVATEMSG_FOLDER_SENT) {
$args[] = $current_folder;
$sql .= " AND folder = %d";
}
}
$header = _privatemsg_list_header($current_folder);
$ts = tablesort_init($header);
$_SESSION['privatemsg_list_sql'] = array(
'sql' => $sql,
'args' => $args,
'field' => db_escape_string($ts['sql']),
'sort' => drupal_strtoupper(db_escape_string($ts['sort'])),
);
$result = pager_query($sql . tablesort_sql($header), variable_get('privatemsg_per_page', 10), 0, $count_query, $args);
$messages = array();
while ($message = db_fetch_object($result)) {
if ($current_folder == PRIVATEMSG_FOLDER_SENT) {
$message->newmsg = 0;
}
$messages[] = $message;
}
$folders = privatemsg_load_folders($account->uid);
$output = drupal_get_form('privatemsg_cur_folder_form', $folders, $current_folder);
$output .= drupal_get_form('privatemsg_list_form', $messages, $folders, $current_folder, $account);
return $output;
}
function _privatemsg_folder_map($fid = NULL, $uid = NULL) {
$map = array(
PRIVATEMSG_FOLDER_SENT => t('Sent messages'),
PRIVATEMSG_FOLDER_INBOX => t('Inbox'),
PRIVATEMSG_FOLDER_RECYCLE_BIN => t('Recycle bin'),
);
if (!isset($fid)) {
return $map;
}
return isset($map[$fid]) ? $map[$fid] : db_result(db_query('SELECT name FROM {privatemsg_folder} WHERE fid = %d AND uid = %d', $current_folder, $uid));
}
function _privatemsg_list_header($current_folder) {
return array(
array(),
array('data' => ($current_folder == 1) ? t('To') : t('From'), 'field' => 'name'),
array('data' => t('Subject'), 'field' => 'subject'),
array('data' => t('Date'), 'field' => 'timestamp', 'sort' => 'desc'),
);
}
function privatemsg_cur_folder_form($folders, $current_folder) {
global $user;
foreach ($folders as $folder) {
$options[$folder['fid']] = $folder['name'];
}
$form['header'] = array(
'#type' => 'fieldset',
'#prefix' => '
',
);
return $form;
}
function privatemsg_rename_folder_form_validate($form_id, $form_values) {
global $user;
if (!empty($form_values['new_name']) &&
$form_values['new_name'] != $form_values['old_name'] &&
db_result(db_query("SELECT name FROM {privatemsg_folder} WHERE name = '%s' AND uid = %d", $form_values['new_name'], $user->uid))) {
form_set_error('new_name', t('A folder with this name already exists.'));
}
if (empty($form_values['new_name'])) {
form_set_error('new_name', t('You must specify a name for the new folder.'));
}
}
function privatemsg_rename_folder_form_submit($form_id, $form_values) {
if ($form_values['new_name'] != $form_values['old_name']) {
db_query("UPDATE {privatemsg_folder} SET name = '%s' WHERE fid = %d", $form_values['new_name'], intval(arg(2)));
drupal_set_message(t('Folder name changed from %old_name to %new_name.',
array('%old_name' => $form_values['old_name'],
'%new_name' => $form_values['new_name'])));
}
else {
drupal_set_message(t('Folder name left the same.'));
}
drupal_goto('privatemsg/folders');
}
/**
* Prompt to delete all the messages in a folder.
*/
function privatemsg_empty_folder_form($fid) {
$folder = db_result(db_query("SELECT name FROM {privatemsg_folder} WHERE fid = %d", $fid));
if (empty($folder)) {
drupal_set_message(t('Folder does not exist.'));
drupal_goto('privatemsg/folders');
}
$message = t('Are you sure you want to delete every message in %folder?', array('%folder' => $folder));
$form = confirm_form(array(), t('Empty folder?'), 'privatemsg/folders',
$message, t('Empty'), t('Cancel'), 'empty');
return $form;
}
function privatemsg_empty_folder_form_submit($form_id, $form_values) {
global $user;
$fid = intval(arg(2));
if ($fid == 0 || $form_values['empty'] != 1) {
drupal_goto('privatemsg/folders');
}
if ($fid == 1) {
db_query("UPDATE {privatemsg} SET author_del = 1 WHERE author = %d", $user->uid);
}
else if ($fid > 1 && !db_result(db_query('SELECT fid FROM {privatemsg_folder} WHERE fid = %d AND uid = %d', $fid, $user->uid))) {
watchdog('privatemsg', t('Attempted use of unauthorized folder'), WATCHDOG_WARNING);
return drupal_access_denied();
}
else {
db_query("UPDATE {privatemsg} SET recipient_del = 1 WHERE folder = %d AND recipient = %d", $fid, $user->uid);
}
drupal_set_message(t('Folder emptied.'));
drupal_goto('privatemsg/folders');
}
/**
* Prompt to delete a folder and all its messages.
*/
function privatemsg_delete_folder_form($fid) {
$folder = db_result(db_query("SELECT name FROM {privatemsg_folder} WHERE fid = %d", $fid));
if (empty($folder)) {
drupal_set_message(t('Folder does not exist.'));
drupal_goto('privatemsg/folders');
}
$message = t('Are you sure you wish to delete %folder and all its messages?', array('%folder' => $folder));
$form = confirm_form(array(), t('Delete folder?'), 'privatemsg/folders',
$message, t('Delete'), t('Cancel'), 'delete');
return $form;
}
function privatemsg_delete_folder_form_submit($form_id, $form_values) {
global $user;
$fid = intval(arg(2));
if ($fid == 0 || $form_values['delete'] != 1) {
drupal_goto('privatemsg/folders');
}
if (!db_result(db_query("SELECT fid FROM {privatemsg_folder} WHERE fid = %d AND uid = %d", $fid, $user->uid))) {
watchdog('privatemsg', t('Attempted use of unauthorized folder'), WATCHDOG_WARNING);
return drupal_access_denied();
}
db_query("DELETE FROM {privatemsg_folder} WHERE fid = %d", $fid);
db_query("UPDATE {privatemsg} SET recipient_del = 1 WHERE folder = %d", $fid);
drupal_set_message(t('Folder deleted.'));
drupal_goto('privatemsg/folders');
}
/**
* Provides a form to write a private message.
*/
function privatemsg_new_form($message = NULL) {
global $user;
if (!isset($message)) {
$message = 0;
$op = arg(1);
if ($op == 'reply') {
$message = arg(2);
}
else if (($uid = arg(2)) && ($msg->recipient = db_result(db_query('SELECT name FROM {users} WHERE uid = %d', $uid)))) {
if (!privatemsg_message_allowed($uid, $user->uid)) {
drupal_set_message(t('You cannot contact %recipient', array('%recipient' => $msg->recipient)));
drupal_goto("user/$uid");
}
$message = $msg;
}
}
if ($message && !is_object($message)) {
// This is a reply to another message
$message = db_fetch_object(db_query('SELECT thread, subject, message, u.name AS recipient FROM {privatemsg} p INNER JOIN {users} u ON u.uid = p.author WHERE id = %d AND recipient = %d', $message, $user->uid));
if (!stristr($message->subject, t('Re:'))) {
$message->subject = t('Re: ') . $message->subject;
}
// quoting; [quote] if default input format uses bbcode or quote, else > quoting
foreach (filter_list_format(filter_resolve_format(FILTER_FORMAT_DEFAULT)) as $filter) {
if ($filter->module == 'bbcode' || $filter->module == 'quote') {
$bbcode = TRUE;
break;
}
}
if (isset($bbcode)) {
$message->message = "\n\n[quote=". $message->recipient .']'. $message->message .'[/quote]';
}
else {
$message->message = "\n\n\n". str_replace("\n", "\n> ", "\n". $message->message);
}
}
if (!is_object($message)) {
$message = new stdClass();
}
// The first if can provide a partial message, so we fill it in to avoid
// notices. Also we remove the message if it's a reply in a threaded view,
// the original message will be seen anyways.
if (!isset($message->subject) || variable_get('privatemsg_threaded_view', 0)) {
$message->message = '';
}
if (isset($_SESSION['recipients'])) {
$recipient = implode(', ', $_SESSION['recipients']);
unset($_SESSION['recipients']);
}
$form['thread'] = array('#type' => 'value', '#value' => isset($message->thread) ? $message->thread : 0);
$form['header']['#theme'] = 'privatemsg_new_msg_header';
$form['header']['recipient'] = array(
'#type' => 'textfield',
'#title' => t('To'),
'#description' => t('Separate multiple names with commas.'),
'#default_value' => isset($recipient) ? $recipient : $message->recipient,
'#autocomplete_path' => 'privatemsg/autocomplete',
'#size' => 50,
'#maxlength' => 1000,
'#required' => TRUE,
);
$form['header']['subject'] = array(
'#type' => 'textfield',
'#title' => t('Subject'),
'#default_value' => $message->subject,
'#size' => 50,
'#maxlength' => 64,
'#required' => TRUE,
);
$form['privatemsgbody'] = array(
'#type' => 'textarea',
'#title' => empty($message->thread) ? t('Message') : t('Reply'),
'#default_value' => $message->message,
'#cols' => 80,
'#rows' => 6,
);
$form['filter_form'] = filter_form($message->format);
$form['preview'] = array(
'#type' => 'submit',
'#value' => t('Preview'),
'#prefix' => '
');
drupal_set_title(t('Preview message'));
}
}
return $form;
}
function privatemsg_new_form_validate($form_id, $form_values) {
if (!empty($form_values['recipient'])) {
$recipients = explode(',', $form_values['recipient']);
foreach ($recipients as $recipient) {
$account = user_load(array('name' => trim($recipient)));
if (!$account) {
form_set_error('recipient', t('The recipient %name does not exist.', array('%name' => $recipient)));
}
else if (!$account->status || !$account->privatemsg_allow) {
form_set_error('recipient', t('%name does not accept private messages.', array('%name' => $account->name)));
}
}
}
if (!isset($form_values['format']) || !filter_access($form_values['format'])) {
form_set_error('format', t('The supplied input format is invalid.'));
}
if (empty($form_values['privatemsgbody'])) {
form_set_error('privatemsgbody', t('Message field is required.'));
}
}
function privatemsg_new_form_submit($form_id, $form_values) {
global $user;
static $seen = array();
if ($form_values['op'] != t('Send private message')) {
return FALSE;
}
$recipients = explode(',', $form_values['recipient']);
$sent = FALSE;
foreach ($recipients as $recipient) {
$recipient = trim($recipient);
if (isset($seen[$recipient])) {
continue;
}
$seen[$recipient] = TRUE;
$recipient = user_load(array('name' => $recipient));
$message_id = _privatemsg_send($user, $recipient, $form_values['subject'], $form_values['privatemsgbody'], $form_values['format'], $form_values['thread']);
if ($message_id) {
// Load the message for consistency.
$message = privatemsg_load($message_id);
// Tell the other modules a new private message has been sent.
privatemsg_invoke_privatemsg($message, 'sent');
$sent = TRUE;
}
}
if ($sent) {
drupal_set_message(t('Message sent.'));
}
drupal_goto($user->uid ? 'privatemsg' : '');
}
/**
* Send private message. Sender is the current user.
*
* @param $recipient
* A user object containing the recipient.
* @param $subject
* The subject of the message.
* @param $body
* The body of the message.
* @param $format
* Format of the message.
* @param $thread
* The thread this message belongs to (take care to preserve on replies).
* @param $type
* Type of the message as defined on admin/build/privatemsg .
* @param $variables
* If this message is a subscriptions mail, the variables used to compose the
* message.
**/
function privatemsg_send_privatemsg($recipient, $subject, $body, $format = FILTER_FORMAT_DEFAULT, $thread = 0, $type = 'private-message', $variables = array()) {
global $user;
return _privatemsg_send($user, $recipient, $subject, $body, $format, $thread, $type, $variables);
}
function _privatemsg_send($sender, $recipient, $subject, $body, $format, $thread = 0, $type = 'private-message', $original_variables = array()) {
if (!privatemsg_message_allowed($recipient->uid, $sender->uid)) {
drupal_set_message(t('You cannot contact %recipient', array('%recipient' => $recipient->name)));
return;
}
// Hook to allow other modules to alter any aspect of a privatemsg by
// accepting these params by reference. Any module can cancel a privatemsg by
// returning false here
foreach (module_implements('privatemsg_alter') as $name) {
$function = $name .'_privatemsg_alter';
if (!$function($sender, $recipient, $subject, $body, $format, $thread, $type)) {
return FALSE;
}
}
$message_id = db_next_id('{privatemsg}_id');
if (!$thread) {
$thread = db_next_id('{privatemsg}_thread');
}
$variables = array();
foreach ($original_variables as $name => $value) {
$variables[str_replace('!', '!original_', $name)] = $value;
}
$result = db_query("INSERT INTO {privatemsg} (id, author, recipient, subject, message, timestamp, newmsg, hostname, format, thread, type, variables) VALUES (%d, %d, %d, '%s', '%s', %d, %d, '%s', %d, %d, '%s', '%s')", $message_id, $sender->uid, $recipient->uid, $subject, $body, time(), 1, getenv('REMOTE_ADDR'), $format, $thread, $type, serialize($variables));
if ($points = variable_get('privatemsg_userpoints', 0)) {
module_invoke('userpoints', 'userpointsapi', 'points', $points, $sender->uid, 'privatemsg');
}
module_invoke('pm_subscriptions', 'subscriptions_handle', privatemsg_load($message_id));
return $result ? $message_id : $result;
}
/**
* Return a version of type that can be used as an object property key
* (change whitespace to _)
*/
function _privatemsg_get_type_key($type) {
return 'privatemsg_allow_'. preg_replace('/\s+/', '_', $type);
}
/**
* Display a user's contacts list and let them write a PM to multiple contacts.
*/
function privatemsg_contacts_form() {
$contacts = array();
global $user;
// Add people who have messaged the user to the contact list.
$result = db_query("SELECT DISTINCT u.name, u.uid FROM {privatemsg} AS p "
."LEFT JOIN {users} AS u ON p.author = u.uid WHERE "
."p.recipient = %d AND p.author != %d AND p.timestamp > "
."(UNIX_TIMESTAMP(NOW()) - (3600 * 24 * 30)) ORDER BY "
."u.name", $user->uid, $user->uid);
while ($author = db_fetch_object($result)) {
$contacts[check_plain($author->name)] = $author->uid;
}
// Add people the user has messaged to the contact list.
$result = db_query("SELECT DISTINCT u.name, u.uid FROM {privatemsg} AS p "
."LEFT JOIN {users} AS u ON p.recipient = u.uid WHERE "
."p.author = %d AND p.timestamp > "
."(UNIX_TIMESTAMP(NOW()) - (3600 * 24 * 30)) ORDER BY "
."u.name", $user->uid, $user->uid);
while ($author = db_fetch_object($result)) {
$contacts[check_plain($author->name)] = $author->uid;
}
if (module_exists('buddylist')) {
$result = db_query("SELECT u.name, u.uid FROM {buddylist} AS b LEFT JOIN "
."{users} AS u ON b.buddy = u.uid WHERE b.uid = %d", $user->uid);
while ($buddy = db_fetch_object($result)) {
$contacts[check_plain($buddy->name)] = $buddy->uid;
}
}
ksort($contacts);
$form['contacts'] = array(
'#theme' => 'privatemsg_contacts_table',
'#tree' => TRUE
);
foreach ($contacts as $name => $uid) {
$form['contacts'][$uid]['selected'] = array(
'#type' => 'checkbox',
);
$form['contacts'][$uid]['name'] = array(
'#type' => 'value',
'#value' => $name,
);
$form['contacts'][$uid]['contact'] = array(
'#type' => 'value',
'#value' => theme('privatemsg_username', (object) array('uid' => $uid, 'name' => $name)),
);
$form['contacts'][$uid]['operations'] = array(
'#type' => 'value',
'#value' => l(t('Write private message'), 'privatemsg/new/'. $uid),
);
}
if (count($contacts) > 0) {
$form['selected'] = array(
'#type' => 'fieldset',
'#collapsible' => FALSE,
'#collapsed' => FALSE,
'#prefix' => '