forked from osTicket/osTicket
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ajax.content.php
226 lines (191 loc) · 9.47 KB
/
ajax.content.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
<?php
/*********************************************************************
ajax.content.php
AJAX interface for content fetching...allowed methods.
Peter Rotich <[email protected]>
Copyright (c) 2006-2013 osTicket
http://www.osticket.com
Released under the GNU General Public License WITHOUT ANY WARRANTY.
See LICENSE.TXT for details.
vim: expandtab sw=4 ts=4 sts=4:
**********************************************************************/
if(!defined('INCLUDE_DIR')) die('!');
require_once INCLUDE_DIR.'class.ajax.php';
class ContentAjaxAPI extends AjaxController {
function log($id) {
if($id && ($log=Log::lookup($id))) {
$content=sprintf('<div
style="width:500px;"> <strong>%s</strong><br><p
style="white-space:pre-line;">%s</p>
<hr><strong>%s:</strong> <em>%s</em> <strong>%s:</strong> <em>%s</em></div>',
$log->getTitle(),
Format::display(str_replace(',',', ',$log->getText())),
__('Log Date'),
Format::daydatetime($log->getCreateDate()),
__('IP Address'),
$log->getIP());
}else {
$content='<div style="width:295px;"> <strong>'.__('Error').':</strong>'.
sprintf(__('%s: Unknown or invalid ID.'), __('log entry')).'</div>';
}
return $content;
}
function ticket_variables() {
$content='
<div style="width:680px;">
<h2>'.__('Ticket Variables').'</h2>
'.__('Please note that non-base variables depend on the context of use. Visit osTicket Wiki for up to date documentation.').'
<br/>
<table width="100%" border="0" cellspacing=1 cellpadding=2>
<tr><td width="55%" valign="top"><b>'.__('Base Variables').'</b></td><td><b>'.__('Other Variables').'</b></td></tr>
<tr>
<td width="55%" valign="top">
<table width="100%" border="0" cellspacing=1 cellpadding=1>
<tr><td width="130">%{ticket.id}</td><td>'.__('Ticket ID').' ('.__('internal ID').')</td></tr>
<tr><td>%{ticket.number}</td><td>'.__('Ticket Number').' ('.__('external ID').')</td></tr>
<tr><td>%{ticket.email}</td><td>'.__('Email Address').'</td></tr>
<tr><td>%{ticket.name}</td><td>'.__('Full Name').' —
<em>'.__('see name expansion').'</em></td></tr>
<tr><td>%{ticket.subject}</td><td>'.__('Subject').'</td></tr>
<tr><td>%{ticket.phone}</td><td>'.__('Phone number | ext').'</td></tr>
<tr><td>%{ticket.status}</td><td>'.__('Status').'</td></tr>
<tr><td>%{ticket.priority}</td><td>'.__('Priority').'</td></tr>
<tr><td>%{ticket.assigned}</td><td>'.__('Assigned Agent / Team').'</td></tr>
<tr><td>%{ticket.create_date}</td><td>'.__('Date Created').'</td></tr>
<tr><td>%{ticket.due_date}</td><td>'.__('Due Date').'</td></tr>
<tr><td>%{ticket.close_date}</td><td>'.__('Date Closed').'</td></tr>
<tr><td>%{ticket.recipients}</td><td>'.__('List of all recipient names').'</td></tr>
<tr><td nowrap>%{recipient.ticket_link}</td><td>'.__('Auth. token used for auto-login').'<br/>
'.__('Agent\'s ticket view link').'</td></tr>
<tr><td colspan="2" style="padding:5px 0 5px 0;"><em><b>'.__('Expandable Variables').'</b></em></td></tr>
<tr><td>%{ticket.topic}</td><td>'.__('Help Topic').'</td></tr>
<tr><td>%{ticket.dept}</td><td>'.__('Department').'</td></tr>
<tr><td>%{ticket.staff}</td><td>'.__('Assigned/closing agent').'</td></tr>
<tr><td>%{ticket.team}</td><td>'.__('Assigned/closing team').'</td></tr>
<tr><td>%{ticket.thread}</td><td>'.__('Ticket Thread').'</td></tr>
</table>
</td>
<td valign="top">
<table width="100%" border="0" cellspacing=1 cellpadding=1>
<tr><td width="100">%{message}</td><td>'.__('Incoming message').'</td></tr>
<tr><td>%{response}</td><td>'.__('Outgoing response').'</td></tr>
<tr><td>%{comments}</td><td>'.__('Assign/transfer comments').'</td></tr>
<tr><td>%{note}</td><td>'.__('Internal note <em>(expandable)</em>').'</td></tr>
<tr><td>%{assignee}</td><td>'.__('Assigned Agent / Team').'</td></tr>
<tr><td>%{assigner}</td><td>'.__('Agent assigning the ticket').'</td></tr>
<tr><td>%{url}</td><td>'.__('osTicket\'s base url (FQDN)').'</td></tr>
<tr><td>%{reset_link}</td>
<td>'.__('Reset link used by the password reset feature').'</td></tr>
</table>
<table width="100%" border="0" cellspacing=1 cellpadding=1>
<tr><td colspan="2"><b>'.__('Name Expansion').'</b></td></tr>
<tr><td>.first</td><td>'.__('First Name').'</td></tr>
<tr><td>.last</td><td>'.__('Last Name').'</td></tr>
<tr><td>.full</td><td>'.__('First Last').'</td></tr>
<tr><td>.short</td><td>'.__('First L.').'</td></tr>
<tr><td>.shortformal</td><td>'.__('F. Last').'</td></tr>
<tr><td>.lastfirst</td><td>'.__('Last, First').'</td></tr>
<tr><td colspan="2" style="padding:5px 0 5px 0;"><em><b>'.__('Ticket Thread expansions').'</b></em></td></tr>
<tr><td>.original</td><td>'.__('Original Message').'</td></tr>
<tr><td>.lastmessage</td><td>'.__('Last Message').'</td></tr>
<tr><td colspan="2" style="padding:5px 0 5px 0;"><em><b>'.__('Thread Entry expansions').'</b></em></td></tr>
<tr><td>.poster</td><td>'.__('Poster').'</td></tr>
<tr><td>.create_date</td><td>'.__('Date Created').'</td></tr>
</table>
</td>
</tr>
</table>
</div>';
return $content;
}
function getSignature($type, $id=null) {
global $thisstaff;
if (!$thisstaff)
Http::response(403, 'Login Required');
switch ($type) {
case 'none':
break;
case 'agent':
if (!($staff = Staff::lookup($id)))
Http::response(404, 'No such staff member');
echo Format::viewableImages($staff->getSignature());
break;
case 'mine':
echo Format::viewableImages($thisstaff->getSignature());
break;
case 'dept':
if (!($dept = Dept::lookup($id)))
Http::response(404, 'No such department');
echo Format::viewableImages($dept->getSignature());
break;
default:
Http::response(400, 'Unknown signature type');
break;
}
}
function manageContent($id, $lang=false) {
global $thisstaff, $cfg;
if (!$thisstaff)
Http::response(403, 'Login Required');
$content = Page::lookup($id, $lang);
$langs = Internationalization::getConfiguredSystemLanguages();
$translations = $content->getAllTranslations();
$info = array(
'title' => $content->getName(),
'body' => $content->getBody(),
);
foreach ($translations as $t) {
if (!($data = $t->getComplex()))
continue;
$info['trans'][$t->lang] = array(
'title' => $data['name'],
'body' => $data['body'],
);
}
include STAFFINC_DIR . 'templates/content-manage.tmpl.php';
}
function manageNamedContent($type, $lang=false) {
global $thisstaff, $cfg;
if (!$thisstaff)
Http::response(403, 'Login Required');
$langs = $cfg->getSecondaryLanguages();
$content = Page::lookupByType($type, $lang);
$info = $content->getHashtable();
include STAFFINC_DIR . 'templates/content-manage.tmpl.php';
}
function updateContent($id) {
global $thisstaff;
if (!$thisstaff)
Http::response(403, 'Login Required');
elseif (!($content = Page::lookup($id)))
Http::response(404, 'No such content');
if (!isset($_POST['body']))
$_POST['body'] = '';
$vars = array_merge($content->getHashtable(), $_POST);
$errors = array();
// Allow empty content for the staff banner
if ($content->update($vars, $errors,
$content->getType() == 'banner-staff')
) {
Http::response(201, 'Have a great day!');
}
if (!$errors['err'])
$errors['err'] = __('Correct any errors below and try again.');
$info = $_POST;
$errors = Format::htmlchars($errors);
include STAFFINC_DIR . 'templates/content-manage.tmpl.php';
}
function context() {
global $thisstaff;
if (!$thisstaff)
Http::response(403, 'Login Required');
if (!$_GET['root'])
Http::response(400, '`root` is required parameter');
$items = VariableReplacer::getContextForRoot($_GET['root']);
if (!$items)
Http::response(422, 'No such context');
header('Content-Type: application/json');
return $this->encode($items);
}
}
?>