]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - modules/Documents/Document.php
Release 6.2.0
[Github/sugarcrm.git] / modules / Documents / Document.php
1 <?php
2 if(!defined('sugarEntry') || !sugarEntry)
3         die('Not A Valid Entry Point');
4 /*********************************************************************************
5  * SugarCRM Community Edition is a customer relationship management program developed by
6  * SugarCRM, Inc. Copyright (C) 2004-2011 SugarCRM Inc.
7  * 
8  * This program is free software; you can redistribute it and/or modify it under
9  * the terms of the GNU Affero General Public License version 3 as published by the
10  * Free Software Foundation with the addition of the following permission added
11  * to Section 15 as permitted in Section 7(a): FOR ANY PART OF THE COVERED WORK
12  * IN WHICH THE COPYRIGHT IS OWNED BY SUGARCRM, SUGARCRM DISCLAIMS THE WARRANTY
13  * OF NON INFRINGEMENT OF THIRD PARTY RIGHTS.
14  * 
15  * This program is distributed in the hope that it will be useful, but WITHOUT
16  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
17  * FOR A PARTICULAR PURPOSE.  See the GNU Affero General Public License for more
18  * details.
19  * 
20  * You should have received a copy of the GNU Affero General Public License along with
21  * this program; if not, see http://www.gnu.org/licenses or write to the Free
22  * Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
23  * 02110-1301 USA.
24  * 
25  * You can contact SugarCRM, Inc. headquarters at 10050 North Wolfe Road,
26  * SW2-130, Cupertino, CA 95014, USA. or at email address contact@sugarcrm.com.
27  * 
28  * The interactive user interfaces in modified source and object code versions
29  * of this program must display Appropriate Legal Notices, as required under
30  * Section 5 of the GNU Affero General Public License version 3.
31  * 
32  * In accordance with Section 7(b) of the GNU Affero General Public License version 3,
33  * these Appropriate Legal Notices must retain the display of the "Powered by
34  * SugarCRM" logo. If the display of the logo is not reasonably feasible for
35  * technical reasons, the Appropriate Legal Notices must display the words
36  * "Powered by SugarCRM".
37  ********************************************************************************/
38
39 require_once ('include/upload_file.php');
40
41
42 // User is used to store Forecast information.
43 class Document extends SugarBean {
44
45         var $id;
46         var $document_name;
47         var $description;
48         var $category_id;
49         var $subcategory_id;
50         var $status_id;
51         var $status;
52         var $created_by;
53         var $date_entered;
54         var $date_modified;
55         var $modified_user_id;
56     var $assigned_user_id;
57         var $active_date;
58         var $exp_date;
59         var $document_revision_id;
60         var $filename;
61         var $doc_type;
62
63         var $img_name;
64         var $img_name_bare;
65         var $related_doc_id;
66         var $related_doc_name;
67         var $related_doc_rev_id;
68         var $related_doc_rev_number;
69         var $is_template;
70         var $template_type;
71
72         //additional fields.
73         var $revision;
74         var $last_rev_create_date;
75         var $last_rev_created_by;
76         var $last_rev_created_name;
77         var $file_url;
78         var $file_url_noimage;
79
80         var $table_name = "documents";
81         var $object_name = "Document";
82         var $user_preferences;
83
84         var $encodeFields = Array ();
85
86         // This is used to retrieve related fields from form posts.
87         var $additional_column_fields = Array ('revision');
88         
89         var $new_schema = true;
90         var $module_dir = 'Documents';
91         
92         var $save_file;
93
94         var $relationship_fields = Array(
95                 'contract_id'=>'contracts',
96          );
97           
98
99         function Document() {
100                 parent :: SugarBean();
101                 $this->setupCustomFields('Documents'); //parameter is module name
102                 $this->disable_row_level_security = false;
103         }
104
105         function save($check_notify = false) {
106
107         if (empty($this->doc_type)) {
108                         $this->doc_type = 'Sugar';
109                 }
110         if (empty($this->id) || $this->new_with_id)
111                 {
112             if (empty($this->id)) { 
113                 $this->id = create_guid();
114                 $this->new_with_id = true;
115             }
116
117             if ( isset($_REQUEST) && isset($_REQUEST['duplicateSave']) && $_REQUEST['duplicateSave'] == true && isset($_REQUEST['filename_old_doctype']) ) {
118                 $this->doc_type = $_REQUEST['filename_old_doctype'];
119                 $isDuplicate = true;
120             } else {
121                 $isDuplicate = false;
122             }
123
124             $Revision = new DocumentRevision();
125             //save revision.
126             $Revision->in_workflow = true;
127             $Revision->not_use_rel_in_req = true;
128             $Revision->new_rel_id = $this->id;
129             $Revision->new_rel_relname = 'Documents';
130             $Revision->change_log = translate('DEF_CREATE_LOG','Documents');
131             $Revision->revision = $this->revision;
132             $Revision->document_id = $this->id;
133             $Revision->filename = $this->filename;
134
135             if(isset($this->file_ext))
136             {
137                 $Revision->file_ext = $this->file_ext;
138             }
139             
140             if(isset($this->file_mime_type))
141             {
142                 $Revision->file_mime_type = $this->file_mime_type;
143             }
144             
145             $Revision->doc_type = $this->doc_type;
146             if ( isset($this->doc_id) ) {
147                 $Revision->doc_id = $this->doc_id;
148             }
149             if ( isset($this->doc_url) ) {
150                 $Revision->doc_url = $this->doc_url;
151             }
152             
153             $Revision->id = create_guid();
154             $Revision->new_with_id = true;
155
156             $createRevision = false;
157             //Move file saved during populatefrompost to match the revision id rather than document id
158             if (!empty($_FILES['filename_file'])) {
159                 rename(UploadFile :: get_url($this->filename, $this->id), UploadFile :: get_url($this->filename, $Revision->id));
160                 $createRevision = true;
161             } else if ( $isDuplicate && ( empty($this->doc_type) || $this->doc_type == 'Sugar' ) ) {
162                 // Looks like we need to duplicate a file, this is tricky
163                 $oldDocument = new Document();
164                 $oldDocument->retrieve($_REQUEST['duplicateId']);
165                 $GLOBALS['log']->debug('Attempting to copy from '.UploadFile :: get_url($this->filename, $oldDocument->document_revision_id).' to '.UploadFile :: get_url($this->filename, $Revision->id));
166                 copy(UploadFile :: get_url($this->filename, $oldDocument->document_revision_id), UploadFile :: get_url($this->filename, $Revision->id));
167                 $createRevision = true;
168             }
169
170             // For external documents, we just need to make sure we have a doc_id
171             if ( !empty($this->doc_id) && $this->doc_type != 'Sugar' ) {
172                 $createRevision = true;
173             }
174
175             if ( $createRevision ) {
176                 $Revision->save();
177                 //update document with latest revision id
178                 $this->process_save_dates=false; //make sure that conversion does not happen again.
179                 $this->document_revision_id = $Revision->id;    
180             }
181
182
183             //set relationship field values if contract_id is passed (via subpanel create)
184             if (!empty($_POST['contract_id'])) {
185                 $save_revision['document_revision_id']=$this->document_revision_id;     
186                 $this->load_relationship('contracts');
187                 $this->contracts->add($_POST['contract_id'],$save_revision);
188             }
189             
190             if ((isset($_POST['load_signed_id']) and !empty($_POST['load_signed_id']))) {
191                 $query="update linked_documents set deleted=1 where id='".$_POST['load_signed_id']."'";
192                 $this->db->query($query);
193             }
194         }
195         
196                 return parent :: save($check_notify);
197         }
198         function get_summary_text() {
199                 return "$this->document_name";
200         }
201
202         function is_authenticated() {
203                 return $this->authenticated;
204         }
205
206         function fill_in_additional_list_fields() {
207                 $this->fill_in_additional_detail_fields();
208         }
209
210         function fill_in_additional_detail_fields() {
211                 global $theme;
212                 global $current_language;
213                 global $timedate;
214                 global $locale;
215
216                 parent::fill_in_additional_detail_fields();
217                 
218                 $mod_strings = return_module_language($current_language, 'Documents');
219
220         if (!empty($this->document_revision_id)) {
221             $query = "SELECT users.first_name AS first_name, users.last_name AS last_name, document_revisions.date_entered AS rev_date, document_revisions.filename AS filename, document_revisions.revision AS revision, document_revisions.file_ext AS file_ext FROM users, document_revisions WHERE users.id = document_revisions.created_by AND document_revisions.id = '$this->document_revision_id'";
222             $result = $this->db->query($query);
223             $row = $this->db->fetchByAssoc($result);
224
225             //popuplate filename
226             if(isset($row['filename']))$this->filename = $row['filename'];
227             //$this->latest_revision = $row['revision'];
228             if(isset($row['revision']))$this->revision = $row['revision'];
229         
230             //populate the file url. 
231             //image is selected based on the extension name <ext>_icon_inline, extension is stored in document_revisions.
232             //if file is not found then default image file will be used.
233             global $img_name;
234             global $img_name_bare;
235             if (!empty ($row['file_ext'])) {
236                 $img_name = SugarThemeRegistry::current()->getImageURL(strtolower($row['file_ext'])."_image_inline.gif");
237                 $img_name_bare = strtolower($row['file_ext'])."_image_inline";
238             }
239         }
240
241                 //set default file name.
242                 if (!empty ($img_name) && file_exists($img_name)) {
243                         $img_name = $img_name_bare;
244                 } else {
245                         $img_name = "def_image_inline"; //todo change the default image.                                                
246                 }
247                 if($this->ACLAccess('DetailView')){
248                         $file_url = "<a href='index.php?entryPoint=download&id=".basename(UploadFile :: get_url($this->filename, $this->document_revision_id))."&type=Documents' target='_blank'>".SugarThemeRegistry::current()->getImage($img_name, 'alt="'.$mod_strings['LBL_LIST_VIEW_DOCUMENT'].'"  border="0"')."</a>";
249
250                         if(!empty($this->doc_type) && $this->doc_type != 'Sugar' && !empty($this->doc_url))
251                 $file_url= "<a href='".$this->doc_url."' target='_blank'>".SugarThemeRegistry::current()->getImage($this->doc_type.'_image_inline', 'alt="'.$mod_strings['LBL_LIST_VIEW_DOCUMENT'].'"  border="0"',null,null,'.png')."</a>";
252                 $this->file_url = $file_url;
253                 $this->file_url_noimage = basename(UploadFile :: get_url($this->filename, $this->document_revision_id));
254                 }else{
255             $this->file_url = "";
256             $this->file_url_noimage = "";
257                 }
258                 
259                 //get last_rev_by user name.
260                 if (!empty ($row)) {
261                         $this->last_rev_created_name = $locale->getLocaleFormattedName($row['first_name'], $row['last_name']);
262
263                         $this->last_rev_create_date = $timedate->to_display_date_time($row['rev_date']);
264                 }
265                 
266                 global $app_list_strings;
267             if(!empty($this->status_id)) {
268                //_pp($this->status_id);
269                $this->status = $app_list_strings['document_status_dom'][$this->status_id];
270             }
271         if (!empty($this->related_doc_id)) {
272             $this->related_doc_name = Document::get_document_name($this->related_doc_id);
273             $this->related_doc_rev_number = DocumentRevision::get_document_revision_name($this->related_doc_rev_id);
274         }
275         $this->save_file = basename($this->file_url_noimage);
276         
277         }
278
279         function list_view_parse_additional_sections(& $list_form, $xTemplateSection) {
280                 return $list_form;
281         }
282
283     function create_export_query(&$order_by, &$where, $relate_link_join='')
284     {
285         $custom_join = $this->custom_fields->getJOIN(true, true,$where);
286                 if($custom_join)
287                                 $custom_join['join'] .= $relate_link_join;
288                 $query = "SELECT
289                                                 documents.*";
290                 if($custom_join){
291                         $query .=  $custom_join['select'];
292                 }
293                 $query .= " FROM documents ";
294                 if($custom_join){
295                         $query .=  $custom_join['join'];
296                 }
297
298                 $where_auto = " documents.deleted = 0";
299
300                 if ($where != "")
301                         $query .= " WHERE $where AND ".$where_auto;
302                 else
303                         $query .= " WHERE ".$where_auto;
304
305                 if ($order_by != "")
306                         $query .= " ORDER BY $order_by";
307                 else
308                         $query .= " ORDER BY documents.document_name";
309
310                 return $query;
311         }
312
313         function get_list_view_data() {
314                 global $current_language;
315                 $app_list_strings = return_app_list_strings_language($current_language);
316
317                 $document_fields = $this->get_list_view_array();
318
319         $this->fill_in_additional_list_fields();
320
321
322                 $document_fields['FILENAME'] = $this->filename;
323                 $document_fields['FILE_URL'] = $this->file_url;
324                 $document_fields['FILE_URL_NOIMAGE'] = $this->file_url_noimage;
325                 $document_fields['LAST_REV_CREATED_BY'] = $this->last_rev_created_name;
326                 $document_fields['CATEGORY_ID'] = empty ($this->category_id) ? "" : $app_list_strings['document_category_dom'][$this->category_id];
327                 $document_fields['SUBCATEGORY_ID'] = empty ($this->subcategory_id) ? "" : $app_list_strings['document_subcategory_dom'][$this->subcategory_id];
328         $document_fields['NAME'] = $this->document_name;
329                 $document_fields['DOCUMENT_NAME_JAVASCRIPT'] = $GLOBALS['db']->helper->escape_quote($document_fields['DOCUMENT_NAME']);
330                 return $document_fields;
331         }
332         function mark_relationships_deleted($id) {
333                 //do nothing, this call is here to avoid default delete processing since  
334                 //delete.php handles deletion of document revisions.
335         }
336
337         function bean_implements($interface) {
338                 switch ($interface) {
339                         case 'ACL' :
340                                 return true;
341                 }
342                 return false;
343         }
344         
345         //static function.
346         function get_document_name($doc_id){
347                 if (empty($doc_id)) return null;
348                 
349                 $db = DBManagerFactory::getInstance();                          
350                 $query="select document_name from documents where id='$doc_id'";
351                 $result=$db->query($query);
352                 if (!empty($result)) {
353                         $row=$db->fetchByAssoc($result);
354                         if (!empty($row)) {
355                                 return $row['document_name'];
356                         }
357                 }
358                 return null;
359         }
360 }
361
362 require_once('modules/Documents/DocumentExternalApiDropDown.php');
363