1ee3df126d4e94848bb1ab895fc81fd858096b6d
[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
135                 label_row(_($id_word), $_POST['trans_no']);     
136                 date_row(_("Date"), 'tran_date');
137                 text_row_ex(_("Doc Title").':', 'description', 40);
138                 if ($this->selected_id)
139                         label_row(_("File:"), sprintf(_("%s [%s bytes]"), $row['filename'], $row['filesize']));
140                 file_row( ($this->selected_id ? _("File change") : _("Select file")) . ":", 'file_attachment_name', 'file_attachment_name');
141                 hidden('type_no', $_GET['type_no']);
142                 end_outer_table(1);     
143                 div_end();
144         }
145
146         function _bottom_controls()     {
147                 $title=false;
148                 $async='both';
149                 $base=$this->name;
150
151                 $cancel = $async;
152
153                 if ($async === 'both') {
154                         $async = 'default'; $cancel = 'cancel';
155                 } 
156                 else if ($async === 'default')
157                         $cancel = true;
158                 else if ($async === 'cancel')
159                         $async = true;
160                 echo "<center>";
161
162                 if ($this->Mode == '' || $this->Mode == 'RESET')
163                         submit("{$base}NEW", _("Add new"), true, $title, $async);
164                 else {
165                         if ($this->Mode == 'NEW' || $this->selected_id==$this->_none)
166                                 
167                                 submit("{$base}ADD", _("Add"), true, $title, $async);
168                         else {
169                                 submit("{$base}UPDATE[{$this->selected_id}]", _("Update"), true, _("Submit changes"), $async);                          
170                         }
171                         submit("{$base}RESET", _("Cancel"), true, _("Cancel edition"), $cancel);
172                 }
173                 echo "</center>";
174         }
175         
176         function db_insert() {
177                 $dat = $this->data;             
178                 if(!isset($max_image_size))
179                 $max_image_size = 5000;
180                 $upload_file = "";
181                 if (isset($_FILES['file_attachment_name']) && $_FILES['file_attachment_name']['name'] <> '') {
182                         
183                         $result = $_FILES['file_attachment_name']['error'];
184                         $upload_file = 'Yes'; 
185                         $attr_dir = company_path().'/attachments' ; 
186                         if (!file_exists($attr_dir)){                   
187                                 mkdir($attr_dir);
188                         }
189                         $attach_dir = $attr_dir;
190                         if (!file_exists($attach_dir)){
191                                 mkdir($attach_dir);
192                         }       
193                         
194                         if(isset($_POST['unique_name']) && $_POST['unique_name'] <> '')
195                                 $attachment_file_name = $_POST['unique_name'];                  
196                         else
197                                 $attachment_file_name = uniqid(); 
198                                 
199                         $filesize = $_FILES['file_attachment_name']['size'];
200                         $filetype = $_FILES['file_attachment_name']['type'];
201
202                         $filename = $attach_dir."/".$attachment_file_name; 
203                         
204                         if (file_exists($filename)){
205                                 $result = unlink($filename);
206                                 if (!$result)   {
207                                         display_error(_('The existing Docs could not be removed'));
208                                         $upload_file ='No';
209                                 }
210                         }       
211                         if ($upload_file == 'Yes'){
212                                 $actual_file_nam = $_FILES['file_attachment_name']['name'];
213                                 $result  =  move_uploaded_file($_FILES['file_attachment_name']['tmp_name'], $filename);
214                                 $sql = "INSERT INTO ".TB_PREF."attachments (trans_no, type_no, `description`, `filename`, unique_name, tran_date, `filesize`, `filetype`) VALUES ("
215                                            . db_escape($this->entity) . ","
216                                            . db_escape($dat['type_no']) . ","
217                                            . db_escape($_POST['description']) . ","
218                                            . db_escape($actual_file_nam) . ","
219                                            . db_escape($attachment_file_name) . ","
220                                            . db_escape(date2sql($_POST['tran_date'])) . ","
221                                            . db_escape($filesize) . ","
222                                            . db_escape($filetype) . ")";
223                                 if(db_query($sql, 'Could not add Attachment'))
224                                         display_notification(_("A New Attachment Added Successfully"));
225                         }
226                 }
227         }
228
229         function db_update() {
230                 $dat = $this->data;
231                 if(!isset($max_image_size))
232                         $max_image_size = 5000;
233                 $upload_file = "";
234                 if (isset($_FILES['file_attachment_name']) && $_FILES['file_attachment_name']['name'] != '') {
235                         
236                         $result = $_FILES['file_attachment_name']['error'];
237                         $upload_file = 'Yes'; 
238                         $attr_dir = company_path().'/attachments' ; 
239                         if (!file_exists($attr_dir)){
240                                 mkdir($attr_dir);
241                         }
242                         $attach_dir = $attr_dir;
243                         if (!file_exists($attach_dir)){
244                                 mkdir($attach_dir);
245                         }       
246                         
247                         if(isset($_POST['unique_name']) && $_POST['unique_name'] == '')
248                                 $attachment_file_name = uniqid();
249                         else
250                                 $attachment_file_name = $_POST['unique_name']; 
251                                 
252                         $filesize = $_FILES['file_attachment_name']['size'];
253                         $filetype = $_FILES['file_attachment_name']['type'];
254
255                         $filename = $attach_dir."/".$attachment_file_name; 
256                         if (file_exists($filename)){
257                                 $result = unlink($filename);
258                                 if (!$result)   {
259                                         display_error(_('The existing Docs could not be removed'));
260                                         $upload_file ='No';
261                                 }
262                         }
263                         if ($upload_file == 'Yes'){
264                                 $actual_file_nam = $_FILES['file_attachment_name']['name'];
265                                 $result  =  move_uploaded_file($_FILES['file_attachment_name']['tmp_name'], $filename);
266                         }
267                 }
268                         $sql = "UPDATE ".TB_PREF."attachments SET "
269                                       . "trans_no = " . db_escape($this->entity) . ","
270                                            . "type_no = " . db_escape($dat['type_no']) . ","
271                              . "`description` = " . db_escape($_POST['description']) . ","
272                                      . "tran_date = " . db_escape(date2sql($_POST['tran_date']));
273                         if ($upload_file == 'Yes')
274                                 $sql .=  ", unique_name = " . db_escape($attachment_file_name) . ","
275                                         . "`filename` = " . db_escape($actual_file_nam) . ","
276                                         . "`filesize` = " . db_escape($filesize) . ","
277                                         . "`filetype` = " . db_escape($filetype);
278                         $sql .=  " WHERE id = " . db_escape($this->selected_id);
279                                 if(db_query($sql, "Could not Update Attachment $this->selected_id"))
280                                         display_notification(_("The Selected Attachment $this->selected_id Updated Successfully"));
281         }
282
283         function insert_check() {
284                 if (strlen($_POST['description']) == 0) {
285                         display_error(_("Description cannot be empty."));
286                         set_focus('description');
287                         return false;
288                 }
289                 return true; 
290         }
291
292         function db_read() {
293                 $sql = "SELECT * FROM ".TB_PREF."attachments WHERE id=".db_escape($this->selected_id);
294                 $result = db_query($sql, "Could not get all data from ".TB_PREF."attachments table");
295                 $attachments = Array();
296                 return db_fetch_assoc($result);
297         }
298
299         function delete_check() {
300                 return true;
301         }
302         //
303         //      Delete all attachments for Customer / Supplier in current class/entity
304         //
305         function db_delete() {
306                 $sql = "SELECT * FROM ".TB_PREF."attachments WHERE id = ".db_escape($this->selected_id);
307                 $row = db_fetch(db_query($sql), "Cannot retrieve attachment $this->selected_id");
308
309                 $dir =  company_path()."/attachments";
310                 if ($row['unique_name'] && file_exists($dir."/".$row['unique_name']))
311                         unlink($dir."/".$row['unique_name']);
312
313                 $sql = "DELETE FROM ".TB_PREF."attachments WHERE id = ".db_escape($this->selected_id);
314                 if(db_query($sql, "Could not Delete Attachment $this->selected_id"))
315                         display_notification(_("The Selected Attachment is Deleted Successfully"));
316                 return false;
317         }
318 }
319