Gazelle/sections/staffpm/viewconv.php

232 lines
7.1 KiB
PHP
Raw Normal View History

<?
include(SERVER_ROOT.'/classes/class_text.php');
$Text = new TEXT;
if ($ConvID = (int)$_GET['id']) {
// Get conversation info
$DB->query("SELECT Subject, UserID, Level, AssignedToUser, Unread, Status FROM staff_pm_conversations WHERE ID=$ConvID");
list($Subject, $UserID, $Level, $AssignedToUser, $Unread, $Status) = $DB->next_record();
2012-01-26 08:00:25 +00:00
$DB->query("SELECT Subject, UserID, Level, AssignedToUser, Unread, Status FROM staff_pm_conversations WHERE ID=$ConvID");
list($Subject, $UserID, $Level, $AssignedToUser, $Unread, $Status) = $DB->next_record();
2012-03-28 08:00:20 +00:00
if (!(($UserID == $LoggedUser['ID']) || ($AssignedToUser == $LoggedUser['ID']) || (($Level > 0 && $Level <= $LoggedUser['EffectiveClass']) || ($Level == 0 && $IsFLS)))) {
2011-11-18 08:00:16 +00:00
// User is trying to view someone else's conversation
error(403);
}
// User is trying to view their own unread conversation, set it to read
if ($UserID == $LoggedUser['ID'] && $Unread) {
$DB->query("UPDATE staff_pm_conversations SET Unread=false WHERE ID=$ConvID");
// Clear cache for user
$Cache->delete_value('staff_pm_new_'.$LoggedUser['ID']);
}
2011-11-18 08:00:16 +00:00
show_header('Staff PM', 'staffpm,bbcode');
2012-04-12 08:00:21 +00:00
$UserInfo = user_info($UserID);
2012-03-28 08:00:20 +00:00
$UserStr = format_username($UserID, true, true, true, true);
2012-03-04 08:00:21 +00:00
$OwnerID = $UserID;
$OwnerName = $UserInfo['Username'];
?>
<div id="thin">
<h2>Staff PM - <?=display_str($Subject)?></h2>
<div class="linkbox">
<?
2011-11-18 08:00:16 +00:00
// Staff only
if ($IsStaff) {
?>
2011-11-18 08:00:16 +00:00
<a href="staffpm.php">[My unanswered]</a>
<?
2011-11-18 08:00:16 +00:00
}
2011-11-18 08:00:16 +00:00
// FLS/Staff
if ($IsFLS) {
?>
<a href="staffpm.php?view=unanswered">[All unanswered]</a>
<a href="staffpm.php?view=open">[Open]</a>
<a href="staffpm.php?view=resolved">[Resolved]</a>
<?
// User
2011-11-18 08:00:16 +00:00
} else {
?>
<a href="staffpm.php">[Back to inbox]</a>
<?
2011-11-18 08:00:16 +00:00
}
?>
<br />
<br />
</div>
<div id="inbox">
<?
2011-11-18 08:00:16 +00:00
// Get messages
2012-03-04 08:00:21 +00:00
$StaffPMs = $DB->query("SELECT UserID, SentDate, Message, ID FROM staff_pm_messages WHERE ConvID=$ConvID");
2011-11-18 08:00:16 +00:00
2012-03-04 08:00:21 +00:00
while(list($UserID, $SentDate, $Message, $MessageID) = $DB->next_record()) {
2011-11-18 08:00:16 +00:00
// Set user string
if ($UserID == $OwnerID) {
// User, use prepared string
$UserString = $UserStr;
2012-03-04 08:00:21 +00:00
$Username = $OwnerName;
2011-11-18 08:00:16 +00:00
} else {
// Staff/FLS
$UserInfo = user_info($UserID);
2012-03-28 08:00:20 +00:00
$UserString = format_username($UserID, true, true, true, true);
2012-03-04 08:00:21 +00:00
$Username = $UserInfo['Username'];
2011-11-18 08:00:16 +00:00
}
?>
<div class="box vertical_space">
<div class="head">
<strong>
<?=$UserString?>
</strong>
<?=time_diff($SentDate, 2, true)?>
2012-03-04 08:00:21 +00:00
<? if ($Status != 'Resolved') { ?>
- <a href="#quickpost" onclick="Quote('<?=$MessageID?>','<?=$Username?>');">[Quote]</a>
<? } ?>
</div>
<div class="body"><?=$Text->full_format($Message)?></div>
</div>
<div align="center" style="display: none"></div>
<?
2011-11-18 08:00:16 +00:00
$DB->set_query_id($StaffPMs);
}
2011-11-18 08:00:16 +00:00
// Common responses
if ($IsFLS && $Status != 'Resolved') {
?>
<div id="common_answers" class="hidden">
<div class="box vertical_space">
<div class="head">
<strong>Preview</strong>
</div>
<div id="common_answers_body" class="body">Select an answer from the dropdown to view it.</div>
</div>
<br />
<div class="center">
<select id="common_answers_select" onChange="UpdateMessage();">
<option id="first_common_response">Select a message</option>
<?
2011-11-18 08:00:16 +00:00
// List common responses
$DB->query("SELECT ID, Name FROM staff_pm_responses");
while(list($ID, $Name) = $DB->next_record()) {
?>
<option value="<?=$ID?>"><?=$Name?></option>
2011-11-18 08:00:16 +00:00
<? } ?>
</select>
<input type="button" value="Set message" onClick="SetMessage();" />
<input type="button" value="Create new / Edit" onClick="location.href='staffpm.php?action=responses&convid=<?=$ConvID?>'" />
</div>
</div>
2011-11-18 08:00:16 +00:00
<? }
2011-11-18 08:00:16 +00:00
// Ajax assign response div
if ($IsStaff) { ?>
<div id="ajax_message" class="hidden center alertbar"></div>
2011-11-18 08:00:16 +00:00
<? }
2011-11-18 08:00:16 +00:00
// Replybox and buttons
?>
<h3>Reply</h3>
<div class="box pad">
<div id="preview" class="hidden"></div>
<div id="buttons" class="center">
<form action="staffpm.php" method="post" id="messageform">
<input type="hidden" name="action" value="takepost" />
<input type="hidden" name="convid" value="<?=$ConvID?>" id="convid" />
<textarea id="quickpost" name="message" cols="90" rows="10"></textarea> <br />
<?
2011-11-18 08:00:16 +00:00
// Assign to
if ($IsStaff) {
// Staff assign dropdown
?>
<select id="assign_to" name="assign">
<optgroup label="User classes">
2011-11-18 08:00:16 +00:00
<? // FLS "class"
$Selected = (!$AssignedToUser && $Level == 0) ? ' selected="selected"' : '';
?>
<option value="class_0"<?=$Selected?>>First Line Support</option>
2011-11-18 08:00:16 +00:00
<? // Staff classes
foreach ($ClassLevels as $Class) {
// Create one <option> for each staff user class
if ($Class['Level'] >= 650) {
$Selected = (!$AssignedToUser && ($Level == $Class['Level'])) ? ' selected="selected"' : '';
?>
<option value="class_<?=$Class['Level']?>"<?=$Selected?>><?=$Class['Name']?></option>
2011-11-18 08:00:16 +00:00
<? }
} ?>
</optgroup>
<optgroup label="Staff">
2011-11-18 08:00:16 +00:00
<? // Staff members
$DB->query("
SELECT
m.ID,
m.Username
FROM permissions as p
JOIN users_main as m ON m.PermissionID=p.ID
WHERE p.DisplayStaff='1'
ORDER BY p.Level DESC, m.Username ASC"
);
while(list($ID, $Name) = $DB->next_record()) {
// Create one <option> for each staff member
$Selected = ($AssignedToUser == $ID) ? ' selected="selected"' : '';
?>
<option value="user_<?=$ID?>"<?=$Selected?>><?=$Name?></option>
2011-11-18 08:00:16 +00:00
<? } ?>
</optgroup>
<optgroup label="First Line Support">
<?
2011-11-18 08:00:16 +00:00
// FLS users
$DB->query("
SELECT
m.ID,
m.Username
FROM users_info as i
JOIN users_main as m ON m.ID=i.UserID
JOIN permissions as p ON p.ID=m.PermissionID
WHERE p.DisplayStaff!='1' AND i.SupportFor!=''
ORDER BY m.Username ASC
");
while(list($ID, $Name) = $DB->next_record()) {
// Create one <option> for each FLS user
$Selected = ($AssignedToUser == $ID) ? ' selected="selected"' : '';
?>
<option value="user_<?=$ID?>"<?=$Selected?>><?=$Name?></option>
2011-11-18 08:00:16 +00:00
<? } ?>
</optgroup>
</select>
<input type="button" onClick="Assign();" value="Assign" />
2011-11-18 08:00:16 +00:00
<? } elseif ($IsFLS) { // FLS assign button ?>
<input type="button" value="Assign to staff" onClick="location.href='staffpm.php?action=assign&to=staff&convid=<?=$ConvID?>';" />
<input type="button" value="Assign to forum staff" onClick="location.href='staffpm.php?action=assign&to=forum&convid=<?=$ConvID?>';" />
2011-11-18 08:00:16 +00:00
<? }
2011-12-06 08:00:14 +00:00
if ($Status != 'Resolved') { ?>
<input type="button" value="Resolve" onClick="location.href='staffpm.php?action=resolve&id=<?=$ConvID?>';" />
<? if ($IsFLS) { //Moved by request ?>
<input type="button" value="Common answers" onClick="$('#common_answers').toggle();" />
2012-02-06 08:00:21 +00:00
<input type="button" id="previewbtn" value="Preview" onclick="PreviewMessage();" />
2011-11-18 08:00:16 +00:00
<? } ?>
<input type="submit" value="Send message" />
2011-11-18 08:00:16 +00:00
<? } else { ?>
<input type="button" value="Unresolve" onClick="location.href='staffpm.php?action=unresolve&id=<?=$ConvID?>';" />
2012-01-26 08:00:25 +00:00
<? }
if (check_perms('users_give_donor')) { ?>
<br />
<input type="button" value="Make Donor" onClick="location.href='staffpm.php?action=make_donor&id=<?=$ConvID?>';" />
2011-11-18 08:00:16 +00:00
<? } ?>
</form>
</div>
</div>
</div>
</div>
<?
show_footer();
} else {
// No id
header('Location: staffpm.php');
}