3ecf0ad0339ae6d8b72262054802eeb52e200bf9
[fa-stable.git] / includes / ui / attachment.inc
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 include_once($path_to_root. '/includes/ui/simple_crud_class.inc');
13
14 /*
15         View/Edit class for attachments
16 */
17 class attachments extends simple_crud {
18         var $selected_id;
19         var $entity;
20         var $sub_class;
21         var $class;
22         
23         function __construct($name, $id, $class, $subclass=null) {
24                 $fields = array('type_no', 'trans_no','description','filename','tran_date' => 'date');
25                 parent::__construct($name, $fields);
26                 $this->class = $class;
27                 $this->subclass = $subclass;
28                 $this->entity = $id;
29                 
30         }
31
32         function list_view() {
33                 global $Ajax, $path_to_root, $session_debtor_no, $session_supplier_id;
34                 br();
35                 if(isset($_POST['attachmentDownload'])){
36                         $keys =  array_keys($_POST['attachmentDownload']);
37                         $sql = "SELECT * FROM ".TB_PREF."attachments WHERE id = ".db_escape($keys[0]);
38                         $row = db_fetch(db_query($sql), "Cannot retrieve attachment $keys[0]");
39
40                         
41                         if ($row['unique_name'] != ""){
42                                 if(in_ajax()) {
43                                         $Ajax->redirect($path_to_root.'/admin/attachments.php?dl='.$keys[0]);
44                                 } else {                                        
45                                 Header("Content-type: 'application/octet-stream' ");
46                                 //header('Content-Length: '.$row['filesize']);
47                                 header('Content-Disposition: attachment; filename="'.$row['filename'].'"');
48                                 echo file_get_contents(company_path()."/attachments/".$row['unique_name']);
49                                 exit();
50                                 }
51                         }
52                 }
53                 if(isset($_POST['attachmentView'])){
54                         $keys =  array_keys($_POST['attachmentView']);
55                         $sql = "SELECT * FROM ".TB_PREF."attachments WHERE id = ".db_escape($keys[0]);
56                         $row = db_fetch(db_query($sql), "Cannot retrieve attachment $keys[0]");
57                         
58                         if ($row['unique_name'] != ""){
59
60                                 $Ajax->redirect($path_to_root.'/admin/attachments.php?vw='.$keys[0]);   
61                                 /*if(in_ajax()) {
62                                         
63                                 } else {                                        
64                                 $type_no = ($row['filetype']) ? $row['filetype'] : 'application/octet-stream';  
65                                 header("Content-type: ".$type_no);
66                                         header("Content-Disposition: inline");
67                                 echo file_get_contents(company_path(). "/attachments/".$row['unique_name']);
68                                 exit();
69                                 }*/
70                         }
71                 }
72                 $filters = array('trans_no' => $this->entity, 'type_no' => (isset($_GET['type_no']) ? $_GET['type_no'] : ST_CUSTOMER)); // default ST_CUSTOMER
73
74                 if($session_debtor_no || $session_supplier_id)
75                         $filters['visible'] = 1;
76
77                 $sql = "SELECT * FROM ".TB_PREF."attachments WHERE trans_no=".db_escape($this->entity)." AND type_no = ".db_escape(isset($_GET['type_no']) ? $_GET['type_no'] : ST_CUSTOMER);
78                 $result = db_query($sql, "Could not get data from ".TB_PREF."attachments table");
79                 $attachments = Array();
80                 while($row = db_fetch_assoc($result))
81                         $attachments[] = $row;
82
83                 start_table(TABLESTYLE, "width=80%");
84                 $th = array(_("ID"), _("Doc Title"), _("Filename"), _("Size"), _("Filetype"), _("Doc Date"),  "",  "", "", ""); 
85                 table_header($th);      
86                 if($attachments){       
87                         foreach($attachments as $de) {
88                                 label_cell($de['id']);
89                                 label_cell($de['description']);
90                                 label_cell($de['filename']);
91                                 label_cell($de['filesize']);
92                                 label_cell($de['filetype']);
93                                 label_cell(sql2date($de['tran_date']));
94                                 edit_button_cell("{$this->name}Edit[{$de['id']}]", _("Edit"));
95                                 label_cell('<a target="_blank" class="viewlink" href="'.$path_to_root.'/admin/attachments.php?vw='.$de['id'].'" onclick="javascript:openWindow(this.href,this.target); return false;" accesskey="V"><img src="'.$path_to_root.'/themes/default/images/view.gif" style="vertical-align:middle;width:12px;height:12px;border:0;"></a>', 'style="text-align: center;" ');
96                                 button_cell("{$this->name}Download[{$de['id']}]", _("Download"), false, ICON_DOWN);
97                                 
98                                 delete_button_cell("{$this->name}Delete[{$de['id']}]", _("Delete"));
99                                 end_row();      
100                         }
101                 }
102                 end_table(1);
103         }
104         
105         function editor_view(){
106                 //global $Ajax;
107                 br();
108                 div_start('Attachment_Details');
109                 start_outer_table(TABLESTYLE);
110         
111                 table_section(1);
112                 table_section_title(_("Attachment Detail"));
113                 
114                 if($this->selected_id != null && $this->selected_id != "") {
115                         $sql = "SELECT * FROM ".TB_PREF."attachments WHERE id = ".db_escape($this->selected_id);
116                         $row = db_fetch(db_query($sql), "Cannot retrieve attachment $this->selected_id");
117                         hidden('unique_name', $row['unique_name']);
118                         $_POST['tran_date'] = sql2date($row['tran_date']);
119                         $_POST['title'] = $row['description'];
120                         $_POST['trans_no'] = $row['trans_no'];
121                 } else {
122                         $_POST['trans_no'] = $this->entity;
123                         $_POST['tran_date'] = Today();
124                         hidden('unique_name', '');
125                 }
126
127                 $type_no= $_GET['type_no'];
128
129                 
130                 if($type_no==ST_CUSTOMER) // 5
131                         $id_word = _("Customer ID");
132                 elseif($type_no==ST_SUPPLIER) // 6
133                         $id_word = _("Supplier ID");
134                 elseif($type_no==ST_ITEM) 
135                         $id_word = _("Item ID");
136                 elseif($type_no==ST_FIXEDASSET) 
137                         $id_word = _("Fixed Asset ID");
138
139                 label_row(_($id_word), $_POST['trans_no']);     
140                 date_row(_("Date"), 'tran_date');
141                 text_row_ex(_("Doc Title").':', 'description', 40);
142                 if ($this->selected_id)
143                         label_row(_("File:"), sprintf(_("%s [%s bytes]"), $row['filename'], $row['filesize']));
144                 file_row( ($this->selected_id ? _("File change") : _("Select file")) . ":", 'file_attachment_name', 'file_attachment_name');
145                 hidden('type_no', $_GET['type_no']);
146                 end_outer_table(1);     
147                 div_end();
148         }
149
150         function _bottom_controls()     {
151                 $title=false;
152                 $async='both';
153                 $base=$this->name;
154
155                 $cancel = $async;
156
157                 if ($async === 'both') {
158                         $async = 'default'; $cancel = 'cancel';
159                 } 
160                 else if ($async === 'default')
161                         $cancel = true;
162                 else if ($async === 'cancel')
163                         $async = true;
164                 echo "<center>";
165
166                 if ($this->Mode == '' || $this->Mode == 'RESET')
167                         submit("{$base}NEW", _("Add new"), true, $title, $async);
168                 else {
169                         if ($this->Mode == 'NEW' || $this->selected_id==$this->_none)
170                                 
171                                 submit("{$base}ADD", _("Add"), true, $title, $async);
172                         else {
173                                 submit("{$base}UPDATE[{$this->selected_id}]", _("Update"), true, _("Submit changes"), $async);                          
174                         }
175                         submit("{$base}RESET", _("Cancel"), true, _("Cancel edition"), $cancel);
176                 }
177                 echo "</center>";
178         }
179         
180         function db_insert() {
181                 $dat = $this->data;             
182                 if(!isset($max_image_size))
183                 $max_image_size = 5000;
184                 $upload_file = "";
185                 if (isset($_FILES['file_attachment_name']) && $_FILES['file_attachment_name']['name'] <> '') {
186                         
187                         $result = $_FILES['file_attachment_name']['error'];
188                         $upload_file = 'Yes'; 
189                         $attr_dir = company_path().'/attachments' ; 
190                         if (!file_exists($attr_dir)){                   
191                                 mkdir($attr_dir);
192                         }
193                         $attach_dir = $attr_dir;
194                         if (!file_exists($attach_dir)){
195                                 mkdir($attach_dir);
196                         }       
197                         
198                         if(isset($_POST['unique_name']) && $_POST['unique_name'] <> '')
199                                 $attachment_file_name = $_POST['unique_name'];                  
200                         else
201                                 $attachment_file_name = uniqid(); 
202                                 
203                         $filesize = $_FILES['file_attachment_name']['size'];
204                         $filetype = $_FILES['file_attachment_name']['type'];
205
206                         $filename = $attach_dir."/".$attachment_file_name; 
207                         
208                         if (file_exists($filename)){
209                                 $result = unlink($filename);
210                                 if (!$result)   {
211                                         display_error(_('The existing Docs could not be removed'));
212                                         $upload_file ='No';
213                                 }
214                         }       
215                         if ($upload_file == 'Yes'){
216                                 $actual_file_nam = $_FILES['file_attachment_name']['name'];
217                                 $result  =  move_uploaded_file($_FILES['file_attachment_name']['tmp_name'], $filename);
218                                 $sql = "INSERT INTO ".TB_PREF."attachments (trans_no, type_no, `description`, `filename`, unique_name, tran_date, `filesize`, `filetype`) VALUES ("
219                                            . db_escape($this->entity) . ","
220                                            . db_escape($dat['type_no']) . ","
221                                            . db_escape($_POST['description']) . ","
222                                            . db_escape($actual_file_nam) . ","
223                                            . db_escape($attachment_file_name) . ","
224                                            . db_escape(date2sql($_POST['tran_date'])) . ","
225                                            . db_escape($filesize) . ","
226                                            . db_escape($filetype) . ")";
227                                 if(db_query($sql, 'Could not add Attachment'))
228                                         display_notification(_("A New Attachment Added Successfully"));
229                         }
230                 }
231         }
232
233         function db_update() {
234                 $dat = $this->data;
235                 if(!isset($max_image_size))
236                         $max_image_size = 5000;
237                 $upload_file = "";
238                 if (isset($_FILES['file_attachment_name']) && $_FILES['file_attachment_name']['name'] != '') {
239                         
240                         $result = $_FILES['file_attachment_name']['error'];
241                         $upload_file = 'Yes'; 
242                         $attr_dir = company_path().'/attachments' ; 
243                         if (!file_exists($attr_dir)){
244                                 mkdir($attr_dir);
245                         }
246                         $attach_dir = $attr_dir;
247                         if (!file_exists($attach_dir)){
248                                 mkdir($attach_dir);
249                         }       
250                         
251                         if(isset($_POST['unique_name']) && $_POST['unique_name'] == '')
252                                 $attachment_file_name = uniqid();
253                         else
254                                 $attachment_file_name = $_POST['unique_name']; 
255                                 
256                         $filesize = $_FILES['file_attachment_name']['size'];
257                         $filetype = $_FILES['file_attachment_name']['type'];
258
259                         $filename = $attach_dir."/".$attachment_file_name; 
260                         if (file_exists($filename)){
261                                 $result = unlink($filename);
262                                 if (!$result)   {
263                                         display_error(_('The existing Docs could not be removed'));
264                                         $upload_file ='No';
265                                 }
266                         }
267                         if ($upload_file == 'Yes'){
268                                 $actual_file_nam = $_FILES['file_attachment_name']['name'];
269                                 $result  =  move_uploaded_file($_FILES['file_attachment_name']['tmp_name'], $filename);
270                         }
271                 }
272                         $sql = "UPDATE ".TB_PREF."attachments SET "
273                                       . "trans_no = " . db_escape($this->entity) . ","
274                                            . "type_no = " . db_escape($dat['type_no']) . ","
275                              . "`description` = " . db_escape($_POST['description']) . ","
276                                      . "tran_date = " . db_escape(date2sql($_POST['tran_date']));
277                         if ($upload_file == 'Yes')
278                                 $sql .=  ", unique_name = " . db_escape($attachment_file_name) . ","
279                                         . "`filename` = " . db_escape($actual_file_nam) . ","
280                                         . "`filesize` = " . db_escape($filesize) . ","
281                                         . "`filetype` = " . db_escape($filetype);
282                         $sql .=  " WHERE id = " . db_escape($this->selected_id);
283                                 if(db_query($sql, "Could not Update Attachment $this->selected_id"))
284                                         display_notification(_("The Selected Attachment $this->selected_id Updated Successfully"));
285         }
286
287         function insert_check() {
288                 if (strlen($_POST['description']) == 0) {
289                         display_error(_("Description cannot be empty."));
290                         set_focus('description');
291                         return false;
292                 }
293                 return true; 
294         }
295
296         function db_read() {
297                 $sql = "SELECT * FROM ".TB_PREF."attachments WHERE id=".db_escape($this->selected_id);
298                 $result = db_query($sql, "Could not get all data from ".TB_PREF."attachments table");
299                 $attachments = Array();
300                 return db_fetch_assoc($result);
301         }
302
303         function delete_check() {
304                 return true;
305         }
306         //
307         //      Delete all attachments for Customer / Supplier in current class/entity
308         //
309         function db_delete() {
310                 $sql = "SELECT * FROM ".TB_PREF."attachments WHERE id = ".db_escape($this->selected_id);
311                 $row = db_fetch(db_query($sql), "Cannot retrieve attachment $this->selected_id");
312
313                 $dir =  company_path()."/attachments";
314                 if ($row['unique_name'] && file_exists($dir."/".$row['unique_name']))
315                         unlink($dir."/".$row['unique_name']);
316
317                 $sql = "DELETE FROM ".TB_PREF."attachments WHERE id = ".db_escape($this->selected_id);
318                 if(db_query($sql, "Could not Delete Attachment $this->selected_id"))
319                         display_notification(_("The Selected Attachment is Deleted Successfully"));
320                 return false;
321         }
322 }
323