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 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263
|
<?php
/**********************************************************************
Copyright (C) FrontAccounting, LLC.
Released under the terms of the GNU General Public License, GPL,
as published by the Free Software Foundation, either version 3
of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
See the License here <http://www.gnu.org/licenses/gpl-3.0.html>.
***********************************************************************/
$path_to_root="..";
$page_security = 'SA_ATTACHDOCUMENT';
include_once($path_to_root . "/includes/session.inc");
include_once($path_to_root . "/includes/date_functions.inc");
include_once($path_to_root . "/includes/ui.inc");
include_once($path_to_root . "/includes/data_checks.inc");
if (isset($_GET['vw']))
$view_id = $_GET['vw'];
else
$view_id = find_submit('view');
if ($view_id != -1)
{
$row = get_attachment($view_id);
if ($row['filename'] != "")
{
if(in_ajax()) {
$Ajax->popup($_SERVER['PHP_SELF'].'?vw='.$view_id);
} else {
$type = ($row['filetype']) ? $row['filetype'] : 'application/octet-stream';
header("Content-type: ".$type);
header('Content-Length: '.$row['filesize']);
if ($type == 'application/octet-stream')
header('Content-Disposition: attachment; filename='.$row['filename']);
else
header("Content-Disposition: inline");
echo file_get_contents($comp_path."/".user_company(). "/attachments/".$row['unique_name']);
exit();
}
}
}
if (isset($_GET['dl']))
$download_id = $_GET['dl'];
else
$download_id = find_submit('download');
if ($download_id != -1)
{
$row = get_attachment($download_id);
if ($row['filename'] != "")
{
if(in_ajax()) {
$Ajax->redirect($_SERVER['PHP_SELF'].'?dl='.$download_id);
} else {
$type = ($row['filetype']) ? $row['filetype'] : 'application/octet-stream';
header("Content-type: ".$type);
header('Content-Length: '.$row['filesize']);
header('Content-Disposition: attachment; filename='.$row['filename']);
echo file_get_contents($comp_path."/".user_company(). "/attachments/".$row['unique_name']);
exit();
}
}
}
$js = "";
if ($use_popup_windows)
$js .= get_js_open_window(800, 500);
page(_($help_context = "Attach Documents"), false, false, "", $js);
simple_page_mode(true);
//----------------------------------------------------------------------------------------
if (isset($_GET['filterType'])) // catch up external links
$_POST['filterType'] = $_GET['filterType'];
if (isset($_GET['trans_no']))
$_POST['trans_no'] = $_GET['trans_no'];
if ($Mode == 'ADD_ITEM' || $Mode == 'UPDATE_ITEM')
{
if (isset($_FILES['filename']) && $_FILES['filename']['size'] > 0)
{
//$content = base64_encode(file_get_contents($_FILES['filename']['tmp_name']));
$tmpname = $_FILES['filename']['tmp_name'];
$dir = $comp_path."/".user_company(). "/attachments";
if (!file_exists($dir))
{
mkdir ($dir,0777);
$index_file = "<?php\nheader(\"Location: ../index.php\");\n?>";
$fp = fopen($dir."/index.php", "w");
fwrite($fp, $index_file);
fclose($fp);
}
if ($Mode == 'UPDATE_ITEM' && file_exists($dir."/".$_POST['unique_name']))
unlink($dir."/".$_POST['unique_name']);
$unique_name = uniqid('');
move_uploaded_file($tmpname, $dir."/".$unique_name);
//save the file
$filename = $_FILES['filename']['name'];
$filesize = $_FILES['filename']['size'];
$filetype = $_FILES['filename']['type'];
}
else
{
$unique_name = $filename = $filetype = "";
$filesize = 0;
}
$date = date2sql(Today());
if ($Mode == 'ADD_ITEM')
{
$sql = "INSERT INTO ".TB_PREF."attachments (type_no, trans_no, description, filename, unique_name,
filesize, filetype, tran_date) VALUES (".db_escape($_POST['filterType']).","
.db_escape($_POST['trans_no']).",".db_escape($_POST['description']).", "
.db_escape($filename).", ".db_escape($unique_name).", ".db_escape($filesize)
.", ".db_escape($filetype).", '$date')";
db_query($sql, "Attachment could not be inserted");
display_notification(_("Attachment has been inserted."));
}
else
{
$sql = "UPDATE ".TB_PREF."attachments SET
type_no=".db_escape($_POST['filterType']).",
trans_no=".db_escape($_POST['trans_no']).",
description=".db_escape($_POST['description']).", ";
if ($filename != "")
{
$sql .= "filename=".db_escape($filename).",
unique_name=".db_escape($unique_name).",
filesize=".db_escape($filesize).",
filetype=".db_escape($filetype);
}
$sql .= "tran_date='$date' WHERE id=".db_escape($selected_id);
db_query($sql, "Attachment could not be updated");
display_notification(_("Attachment has been updated."));
}
$Mode = 'RESET';
}
if ($Mode == 'Delete')
{
$row = get_attachment($selected_id);
$dir = $comp_path."/".user_company(). "/attachments";
if (file_exists($dir."/".$row['unique_name']))
unlink($dir."/".$row['unique_name']);
$sql = "DELETE FROM ".TB_PREF."attachments WHERE id = ".db_escape($selected_id);
db_query($sql, "Could not delete attachment");
display_notification(_("Attachment has been deleted."));
$Mode = 'RESET';
}
if ($Mode == 'RESET')
{
unset($_POST['trans_no']);
unset($_POST['description']);
$selected_id = -1;
}
function viewing_controls()
{
start_form();
start_table("class='tablestyle_noborder'");
systypes_list_row(_("Type:"), 'filterType', null, true);
end_table(1);
end_form();
}
//----------------------------------------------------------------------------------------
function get_attached_documents($type)
{
$sql = "SELECT * FROM ".TB_PREF."attachments WHERE type_no=".db_escape($type)
." ORDER BY trans_no";
return db_query($sql, "Could not retrieve attachments");
}
function get_attachment($id)
{
$sql = "SELECT * FROM ".TB_PREF."attachments WHERE id=".db_escape($id);
$result = db_query($sql, "Could not retrieve attachments");
return db_fetch($result);
}
function display_rows($type)
{
global $table_style;
$rows = get_attached_documents($type);
$th = array(_("#"), _("Description"), _("Filename"), _("Size"), _("Filetype"), _("Date Uploaded"), "", "", "", "");
div_start('transactions');
start_form();
start_table($table_style);
table_header($th);
$k = 0;
while ($row = db_fetch($rows))
{
alt_table_row_color($k);
label_cell(get_trans_view_str($type, $row['trans_no']));
label_cell($row['description']);
label_cell($row['filename']);
label_cell($row['filesize']);
label_cell($row['filetype']);
label_cell(sql2date($row['tran_date']));
edit_button_cell("Edit".$row['id'], _("Edit"));
button_cell("view".$row['id'], _("View"), false, ICON_VIEW);
button_cell("download".$row['id'], _("Download"), false, ICON_DOWN);
delete_button_cell("Delete".$row['id'], _("Delete"));
end_row();
}
end_table(1);
hidden('filterType', $type);
end_form();
div_end();
}
//----------------------------------------------------------------------------------------
viewing_controls();
if (isset($_POST['filterType']))
display_rows($_POST['filterType']);
start_form(true);
start_table($table_style2);
if ($selected_id != -1)
{
if ($Mode == 'Edit')
{
$row = get_attachment($selected_id);
$_POST['trans_no'] = $row["trans_no"];
$_POST['description'] = $row["description"];
hidden('trans_no', $row['trans_no']);
hidden('unique_name', $row['unique_name']);
label_row(_("Transaction #"), $row['trans_no']);
}
hidden('selected_id', $selected_id);
}
else
text_row_ex(_("Transaction #").':', 'trans_no', 10);
text_row_ex(_("Description").':', 'description', 40);
file_row(_("Attached File") . ":", 'filename', 'filename');
end_table(1);
if (isset($_POST['filterType']))
hidden('filterType', $_POST['filterType']);
submit_add_or_update_center($selected_id == -1, '', 'both');
end_form();
end_page();
?>
|