This repository has been archived on 2024-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
khosb/modules/ticket_attachment/ticket_attachment.inc.php
2008-11-26 14:50:40 -08:00

56 lines
1.6 KiB
PHP

<?php
/**
* AgileBill - Open Billing Software
*
* This body of work is free software; you can redistribute it and/or
* modify it under the terms of the Open AgileBill License
* License as published at http://www.agileco.com/agilebill/license1-4.txt
*
* For questions, help, comments, discussion, etc., please join the
* Agileco community forums at http://forum.agileco.com/
*
* @link http://www.agileco.com/
* @copyright 2004-2008 Agileco, LLC.
* @license http://www.agileco.com/agilebill/license1-4.txt
* @author Tony Landis <tony@agileco.com>
* @package AgileBill
* @version 1.4.93
*/
class ticket_attachment
{
function download($VAR) {
if(empty($VAR['id'])) return false;
$id=$VAR['id'];
// get ticket id
$db=&DB();
$rs=$db->Execute(sqlSelect($db, Array("ticket_attachment","ticket"), "A.ticket_id,B.department_id,B.account_id","A.id=::$id:: AND A.ticket_id=B.id"));
if(!$rs || $rs->RecordCount()==0) return false;
// is this an admin?
global $C_auth;
if($C_auth->auth_method_by_name("ticket","view")) {
// get the data & type
$rs=$db->Execute(sqlSelect($db, "ticket_attachment", "*", "id=::$id::"));
// set the header
require_once(PATH_CORE.'file_extensions.inc.php');
$ft = new file_extensions;
$type = $ft->set_headers_ext($rs->fields['type'], $rs->fields['name']);
if (empty($type)) {
echo imap_qprint($rs->fields['content']);
} elseif(eregi("^text", $type)) {
echo imap_base64($rs->fields['content']);
} else {
echo imap_base64($rs->fields['content']);
}
exit;
}
}
}
?>