Helpdesk da PluGzOne, baseado no osTicket
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

198 lines
8.7 KiB

<?php
/*********************************************************************
canned.php
Canned Responses aka Premade Responses.
Peter Rotich <peter@osticket.com>
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:
**********************************************************************/
require('staff.inc.php');
include_once(INCLUDE_DIR.'class.canned.php');
if ($thisstaff && $roles = $thisstaff->getRoles()) {
$cannedManage = array();
foreach ($roles as $r) {
if ($r->hasPerm(Canned::PERM_MANAGE, false))
$cannedManage[] = 1;
}
}
/* check permission */
if(!$thisstaff
|| !in_array(1, $cannedManage)
|| !$cfg->isCannedResponseEnabled()) {
header('Location: kb.php');
exit;
}
//TODO: Support attachments!
$canned=null;
if($_REQUEST['id'] && !($canned=Canned::lookup($_REQUEST['id'])))
$errors['err']=sprintf(__('%s: Unknown or invalid ID.'), __('Canned Response'));
$canned_form = new SimpleForm(array(
'attachments' => new FileUploadField(array('id'=>'attach',
'configuration'=>array('extensions'=>false,
'size'=>$cfg->getMaxFileSize())
)),
));
// Set fields' attachments so exsting files stay put
if ($canned
&& $canned->attachments
&& ($attachments = $canned_form->getField('attachments'))) {
$attachments->setAttachments($canned->attachments);
}
if ($_POST) {
switch(strtolower($_POST['do'])) {
case 'update':
if(!$canned) {
$errors['err']=sprintf(__('%s: Unknown or invalid'), __('canned response'));
} elseif($canned->update($_POST, $errors)) {
$msg=sprintf(__('Successfully updated %s.'),
__('this canned response'));
$type = array('type' => 'edited');
Signal::send('object.edited', $canned, $type);
//Delete removed attachments.
//XXX: files[] shouldn't be changed under any circumstances.
// Upload NEW attachments IF ANY - TODO: validate attachment types??
$keepers = $canned_form->getField('attachments')->getClean();
$canned->attachments->keepOnlyFileIds($keepers, false);
// Attach inline attachments from the editor
if (isset($_POST['draft_id'])
&& ($draft = Draft::lookup($_POST['draft_id']))) {
$images = $draft->getAttachmentIds($_POST['response']);
$canned->attachments->keepOnlyFileIds($images, true);
}
// XXX: Handle nicely notifying a user that the draft was
// deleted | OR | show the draft for the user on the name
// page refresh or a nice bar popup immediately with
// something like "This page is out-of-date", and allow the
// user to voluntarily delete their draft
//
// Delete drafts for all users for this canned response
Draft::deleteForNamespace('canned.'.$canned->getId());
} elseif(!$errors['err']) {
$errors['err'] = sprintf('%s %s',
sprintf(__('Unable to update %s.'), __('this canned response')),
__('Correct any errors below and try again.'));
}
break;
case 'create':
$premade = Canned::create();
if ($premade->update($_POST,$errors)) {
$msg=sprintf(__('Successfully added %s.'), Format::htmlchars($_POST['title']));
$type = array('type' => 'created');
Signal::send('object.created', $premade, $type);
$_REQUEST['a']=null;
//Upload attachments
$keepers = $canned_form->getField('attachments')->getClean();
if ($keepers)
$premade->attachments->upload($keepers);
// Attach inline attachments from the editor
if (isset($_POST['draft_id'])
&& ($draft = Draft::lookup($_POST['draft_id'])))
$premade->attachments->upload(
$draft->getAttachmentIds($_POST['response']), true);
// Delete this user's drafts for new canned-responses
Draft::deleteForNamespace('canned', $thisstaff->getId());
} elseif(!$errors['err']) {
$errors['err']=sprintf('%s %s',
sprintf(__('Unable to add %s.'), __('this canned response')),
__('Correct any errors below and try again.'));
}
break;
case 'mass_process':
if(!$_POST['ids'] || !is_array($_POST['ids']) || !count($_POST['ids'])) {
$errors['err']=sprintf(__('You must select at least %s.'), __('one canned response'));
} else {
$count=count($_POST['ids']);
switch(strtolower($_POST['a'])) {
case 'enable':
$sql='UPDATE '.CANNED_TABLE.' SET isenabled=1 '
.' WHERE canned_id IN ('.implode(',', db_input($_POST['ids'])).')';
if(db_query($sql) && ($num=db_affected_rows())) {
if($num==$count)
$msg = sprintf(__('Successfully enabled %s'),
_N('selected canned response', 'selected canned responses', $count));
else
$warn = sprintf(__('%1$d of %2$d %3$s enabled'), $num, $count,
_N('selected canned response', 'selected canned responses', $count));
} else {
$errors['err'] = sprintf(__('Unable to enable %s'),
_N('selected canned response', 'selected canned responses', $count));
}
break;
case 'disable':
$sql='UPDATE '.CANNED_TABLE.' SET isenabled=0 '
.' WHERE canned_id IN ('.implode(',', db_input($_POST['ids'])).')';
if(db_query($sql) && ($num=db_affected_rows())) {
if($num==$count)
$msg = sprintf(__('Successfully disabled %s'),
_N('selected canned response', 'selected canned responses', $count));
else
$warn = sprintf(__('%1$d of %2$d %3$s disabled'), $num, $count,
_N('selected canned response', 'selected canned responses', $count));
} else {
$errors['err'] = sprintf(__('Unable to disable %s'),
_N('selected canned response', 'selected canned responses', $count));
}
break;
case 'delete':
$i=0;
foreach($_POST['ids'] as $k=>$v) {
if(($c=Canned::lookup($v)) && $c->delete())
$i++;
}
if($i==$count)
$msg = sprintf(__('Successfully deleted %s.'),
_N('selected canned response', 'selected canned responses', $count));
elseif($i>0)
$warn=sprintf(__('%1$d of %2$d %3$s deleted'), $i, $count,
_N('selected canned response', 'selected canned responses', $count));
elseif(!$errors['err'])
$errors['err'] = sprintf(__('Unable to delete %s.'),
_N('selected canned response', 'selected canned responses', $count));
break;
default:
$errors['err']=__('Unknown action');
}
}
break;
default:
$errors['err']=__('Unknown action');
break;
}
}
$page='cannedresponses.inc.php';
$tip_namespace = 'knowledgebase.canned_response';
if($canned || ($_REQUEST['a'] && !strcasecmp($_REQUEST['a'],'add'))) {
$page='cannedresponse.inc.php';
}
$nav->setTabActive('kbase');
$ost->addExtraHeader('<meta name="tip-namespace" content="' . $tip_namespace . '" />',
"$('#content').data('tipNamespace', '".$tip_namespace."');");
require(STAFFINC_DIR.'header.inc.php');
require(STAFFINC_DIR.$page);
print $canned_form->getMedia();
include(STAFFINC_DIR.'footer.inc.php');
?>