Stable merged into unstable again (due to failure on binary file during previous...
[fa-stable.git] / admin / attachments.php
1 <?php
2 /**********************************************************************
3     Copyright (C) FrontAccounting, LLC.
4         Released under the terms of the GNU General Public License, GPL, 
5         as published by the Free Software Foundation, either version 3 
6         of the License, or (at your option) any later version.
7     This program is distributed in the hope that it will be useful,
8     but WITHOUT ANY WARRANTY; without even the implied warranty of
9     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  
10     See the License here <http://www.gnu.org/licenses/gpl-3.0.html>.
11 ***********************************************************************/
12 $path_to_root="..";
13 $page_security = 'SA_ATTACHDOCUMENT';
14
15 include_once($path_to_root . "/includes/session.inc");
16
17 include_once($path_to_root . "/includes/date_functions.inc");
18 include_once($path_to_root . "/includes/ui.inc");
19 include_once($path_to_root . "/includes/data_checks.inc");
20 include_once($path_to_root . "/admin/db/attachments_db.inc");
21
22 if (isset($_GET['vw']))
23         $view_id = $_GET['vw'];
24 else
25         $view_id = find_submit('view');
26 if ($view_id != -1)
27 {
28         $row = get_attachment($view_id);
29         if ($row['filename'] != "")
30         {
31                 if(in_ajax()) {
32                         $Ajax->popup($_SERVER['PHP_SELF'].'?vw='.$view_id);
33                 } else {
34                         $type = ($row['filetype']) ? $row['filetype'] : 'application/octet-stream';     
35                 header("Content-type: ".$type);
36                 header('Content-Length: '.$row['filesize']);
37                 //if ($type == 'application/octet-stream')
38                 //      header('Content-Disposition: attachment; filename='.$row['filename']);
39                 //else
40                                 header("Content-Disposition: inline");
41                 echo file_get_contents(company_path(). "/attachments/".$row['unique_name']);
42                 exit();
43                 }
44         }       
45 }
46 if (isset($_GET['dl']))
47         $download_id = $_GET['dl'];
48 else
49         $download_id = find_submit('download');
50
51 if ($download_id != -1)
52 {
53         $row = get_attachment($download_id);
54         if ($row['filename'] != "")
55         {
56                 if(in_ajax()) {
57                         $Ajax->redirect($_SERVER['PHP_SELF'].'?dl='.$download_id);
58                 } else {
59                         $type = ($row['filetype']) ? $row['filetype'] : 'application/octet-stream';     
60                 header("Content-type: ".$type);
61                 header('Content-Length: '.$row['filesize']);
62                 header('Content-Disposition: attachment; filename='.$row['filename']);
63                 echo file_get_contents(company_path()."/attachments/".$row['unique_name']);
64                 exit();
65                 }
66         }       
67 }
68
69 $js = "";
70 if ($use_popup_windows)
71         $js .= get_js_open_window(800, 500);
72 page(_($help_context = "Attach Documents"), false, false, "", $js);
73
74 simple_page_mode(true);
75 //----------------------------------------------------------------------------------------
76 if (isset($_GET['filterType'])) // catch up external links
77         $_POST['filterType'] = $_GET['filterType'];
78 if (isset($_GET['trans_no']))
79         $_POST['trans_no'] = $_GET['trans_no'];
80         
81 if ($Mode == 'ADD_ITEM' || $Mode == 'UPDATE_ITEM')
82 {
83         if (isset($_FILES['filename']) && $_FILES['filename']['size'] > 0)
84         {
85                 //$content = base64_encode(file_get_contents($_FILES['filename']['tmp_name']));
86                 $tmpname = $_FILES['filename']['tmp_name'];
87
88                 $dir =  company_path()."/attachments";
89                 if (!file_exists($dir))
90                 {
91                         mkdir ($dir,0777);
92                         $index_file = "<?php\nheader(\"Location: ../index.php\");\n?>";
93                         $fp = fopen($dir."/index.php", "w");
94                         fwrite($fp, $index_file);
95                         fclose($fp);
96                 }
97                 // file name compatible with POSIX
98                 // protect against directory traversal
99                 if ($Mode == 'UPDATE_ITEM')
100                 {
101                         $unique_name = preg_replace('/[^a-zA-Z0-9.\-_]/', '', $_POST['unique_name']);
102                         if ($Mode == 'UPDATE_ITEM' && file_exists($dir."/".$unique_name))
103                                 unlink($dir."/".$unique_name);
104                 }
105                 else
106                         $unique_name = uniqid('');
107                 move_uploaded_file($tmpname, $dir."/".$unique_name);
108
109                 //save the file
110                 $filename = basename($_FILES['filename']['name']);
111                 $filesize = $_FILES['filename']['size'];
112                 $filetype = $_FILES['filename']['type'];
113         }
114         else
115         {
116                 $unique_name = $filename = $filetype = "";
117                 $filesize = 0;
118         }
119         if ($Mode == 'ADD_ITEM')
120         {
121                 add_attachment($_POST['filterType'], $_POST['trans_no'], $_POST['description'],
122                         $filename, $unique_name, $filesize, $filetype);
123                 display_notification(_("Attachment has been inserted.")); 
124         }
125         else
126         {
127                 update_attachment($selected_id, $_POST['filterType'], $_POST['trans_no'], $_POST['description'],
128                         $filename, $unique_name, $filesize, $filetype); 
129                 display_notification(_("Attachment has been updated.")); 
130         }
131         $Mode = 'RESET';
132 }               
133
134 if ($Mode == 'Delete')
135 {
136         $row = get_attachment($selected_id);
137         $dir =  company_path()."/attachments";
138         if (file_exists($dir."/".$row['unique_name']))
139                 unlink($dir."/".$row['unique_name']);
140         delete_attachment($selected_id);        
141         display_notification(_("Attachment has been deleted.")); 
142         $Mode = 'RESET';
143 }
144
145 if ($Mode == 'RESET')
146 {
147         unset($_POST['trans_no']);
148         unset($_POST['description']);
149         $selected_id = -1;
150 }
151
152 function viewing_controls()
153 {
154         global $selected_id;
155         
156     start_table(TABLESTYLE_NOBORDER);
157
158         start_row();
159         systypes_list_cells(_("Type:"), 'filterType', null, true);
160         if (list_updated('filterType'))
161                 $selected_id = -1;;
162
163         end_row();
164     end_table(1);
165
166 }
167
168 function display_rows($type)
169 {
170         $rows = get_attached_documents($type);
171         $th = array(_("#"), _("Description"), _("Filename"), _("Size"), _("Filetype"), _("Date Uploaded"), "", "", "", "");
172         
173         start_table(TABLESTYLE);
174         table_header($th);
175         $k = 0;
176         while ($row = db_fetch($rows))
177         {
178                 alt_table_row_color($k);
179                 
180                 label_cell(get_trans_view_str($type, $row['trans_no']));
181                 label_cell($row['description']);
182                 label_cell($row['filename']);
183                 label_cell($row['filesize']);
184                 label_cell($row['filetype']);
185                 label_cell(sql2date($row['tran_date']));
186                 edit_button_cell("Edit".$row['id'], _("Edit"));
187                 button_cell("view".$row['id'], _("View"), false, ICON_VIEW);
188                 button_cell("download".$row['id'], _("Download"), false, ICON_DOWN);
189                 delete_button_cell("Delete".$row['id'], _("Delete"));
190         end_row();
191         }       
192         end_table(1);
193 }
194
195 //----------------------------------------------------------------------------------------
196
197 start_form(true);
198
199 viewing_controls();
200
201 display_rows($_POST['filterType']);
202
203
204 start_table(TABLESTYLE2);
205
206 if ($selected_id != -1)
207 {
208         if ($Mode == 'Edit')
209         {
210                 $row = get_attachment($selected_id);
211                 $_POST['trans_no']  = $row["trans_no"];
212                 $_POST['description']  = $row["description"];
213                 hidden('trans_no', $row['trans_no']);
214                 hidden('unique_name', $row['unique_name']);
215                 label_row(_("Transaction #"), $row['trans_no']);
216         }       
217         hidden('selected_id', $selected_id);
218 }
219 else
220         text_row_ex(_("Transaction #").':', 'trans_no', 10);
221 text_row_ex(_("Description").':', 'description', 40);
222 file_row(_("Attached File") . ":", 'filename', 'filename');
223
224 end_table(1);
225
226 submit_add_or_update_center($selected_id == -1, '', 'both');
227
228 end_form();
229
230 end_page();
231
232 ?>