]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - include/SugarFields/Fields/File/SugarFieldFile.php
Release 6.2.0
[Github/sugarcrm.git] / include / SugarFields / Fields / File / SugarFieldFile.php
1 <?php
2 /*********************************************************************************
3  * SugarCRM Community Edition is a customer relationship management program developed by
4  * SugarCRM, Inc. Copyright (C) 2004-2011 SugarCRM Inc.
5  * 
6  * This program is free software; you can redistribute it and/or modify it under
7  * the terms of the GNU Affero General Public License version 3 as published by the
8  * Free Software Foundation with the addition of the following permission added
9  * to Section 15 as permitted in Section 7(a): FOR ANY PART OF THE COVERED WORK
10  * IN WHICH THE COPYRIGHT IS OWNED BY SUGARCRM, SUGARCRM DISCLAIMS THE WARRANTY
11  * OF NON INFRINGEMENT OF THIRD PARTY RIGHTS.
12  * 
13  * This program is distributed in the hope that it will be useful, but WITHOUT
14  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
15  * FOR A PARTICULAR PURPOSE.  See the GNU Affero General Public License for more
16  * details.
17  * 
18  * You should have received a copy of the GNU Affero General Public License along with
19  * this program; if not, see http://www.gnu.org/licenses or write to the Free
20  * Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
21  * 02110-1301 USA.
22  * 
23  * You can contact SugarCRM, Inc. headquarters at 10050 North Wolfe Road,
24  * SW2-130, Cupertino, CA 95014, USA. or at email address contact@sugarcrm.com.
25  * 
26  * The interactive user interfaces in modified source and object code versions
27  * of this program must display Appropriate Legal Notices, as required under
28  * Section 5 of the GNU Affero General Public License version 3.
29  * 
30  * In accordance with Section 7(b) of the GNU Affero General Public License version 3,
31  * these Appropriate Legal Notices must retain the display of the "Powered by
32  * SugarCRM" logo. If the display of the logo is not reasonably feasible for
33  * technical reasons, the Appropriate Legal Notices must display the words
34  * "Powered by SugarCRM".
35  ********************************************************************************/
36
37 require_once('include/SugarFields/Fields/Base/SugarFieldBase.php');
38
39 class SugarFieldFile extends SugarFieldBase {
40     private function fillInOptions(&$vardef,&$displayParams) {
41         if ( isset($vardef['allowEapm']) && $vardef['allowEapm'] == true ) {
42             if ( empty($vardef['docType']) ) {
43                 $vardef['docType'] = 'doc_type';
44             }
45             if ( empty($vardef['docId']) ) {
46                 $vardef['docId'] = 'doc_id';
47             }
48             if ( empty($vardef['docUrl']) ) {
49                 $vardef['docUrl'] = 'doc_url';
50             }
51         } else {
52             $vardef['allowEapm'] = false;
53         }
54
55         // Override the default module
56         if ( isset($vardef['linkModuleOverride']) ) {
57             $vardef['linkModule'] = $vardef['linkModuleOverride'];
58         } else {
59             $vardef['linkModule'] = '{$module}';
60         }
61
62         // This is needed because these aren't always filled out in the edit/detailview defs
63         if ( !isset($vardef['fileId']) ) {
64             if ( isset($displayParams['id']) ) {
65                 $vardef['fileId'] = $displayParams['id'];
66             } else {
67                 $vardef['fileId'] = 'id';
68             }
69         }
70     }
71
72
73         function getDetailViewSmarty($parentFieldArray, $vardef, $displayParams, $tabindex) {
74         $this->fillInOptions($vardef,$displayParams);
75         return parent::getDetailViewSmarty($parentFieldArray, $vardef, $displayParams, $tabindex);
76     }
77     
78         function getEditViewSmarty($parentFieldArray, $vardef, $displayParams, $tabindex) {
79         $this->fillInOptions($vardef,$displayParams);
80         return parent::getEditViewSmarty($parentFieldArray, $vardef, $displayParams, $tabindex);
81     }
82     
83         public function save(&$bean, $params, $field, $vardef, $prefix = ''){
84         $fakeDisplayParams = array();
85         $this->fillInOptions($vardef,$fakeDisplayParams);
86
87                 require_once('include/upload_file.php');
88                 $upload_file = new UploadFile($prefix . $field . '_file');
89
90                 //remove file
91                 if (isset($_REQUEST['remove_file_' . $field]) && $params['remove_file_' . $field] == 1)
92                 {
93                         $upload_file->unlink_file($bean->$field);
94                         $bean->$field="";
95                 }
96                 
97                 $move=false;
98                 if (isset($_FILES[$prefix . $field . '_file']) && $upload_file->confirm_upload())
99                 {
100                 $bean->$field = $upload_file->get_stored_file_name();
101                 $bean->file_mime_type = $upload_file->mime_type;
102                         $bean->file_ext = $upload_file->file_ext;
103                         $move=true;
104                 }
105
106         if (isset($params['isDuplicate']) && $params['isDuplicate'] == true && $params['isDuplicate'] != 'false' ) {
107             // It's a duplicate
108             $old_id = $params['relate_id'];
109         }
110
111         if (empty($bean->id)) { 
112             $bean->id = create_guid();
113             $bean->new_with_id = true;
114         }
115
116                 if ($move) {
117             $upload_file->final_move($bean->id);
118             $upload_file->upload_doc($bean, $bean->id, $params[$prefix . $vardef['docType']], $bean->$field, $upload_file->mime_type);
119         } else if ( ! empty($old_id) ) {
120             // It's a duplicate, I think
121
122             if ( empty($params[$prefix . $vardef['docUrl'] ]) ) {
123                 $upload_file->duplicate_file($old_id, $bean->id, $bean->$field);
124             } else {
125                 $docType = $vardef['docType'];
126                 $bean->$docType = $params[$prefix . $field . '_old_doctype'];
127             }
128                 } else if ( !empty($params[$prefix . $field . '_remoteName']) ) {
129             // We ain't moving, we might need to do some remote linking
130             $displayParams = array();
131             $this->fillInOptions($vardef,$displayParams);
132             
133             if ( isset($params[$prefix . $vardef['docId']])
134                  && ! empty($params[$prefix . $vardef['docId']])
135                  && isset($params[$prefix . $vardef['docType']]) 
136                  && ! empty($params[$prefix . $vardef['docType']])
137                 ) {
138                 $bean->$field = $params[$prefix . $field . '_remoteName'];
139                 
140                 require_once('include/utils/file_utils.php');
141                 $extension = get_file_extension($bean->$field);
142                 if(!empty($extension))
143                 {
144                         $bean->file_ext = $extension;
145                         $bean->file_mime_type = get_mime_content_type_from_filename($bean->$field);
146                 }
147             }
148         }
149         
150         if ( $vardef['allowEapm'] == true && empty($bean->$field) ) {
151             $GLOBALS['log']->info("The $field is empty, clearing out the lot");
152             // Looks like we are emptying this out
153             $clearFields = array('docId', 'docType', 'docUrl', 'docDirectUrl');
154             foreach ( $clearFields as $clearMe ) {
155                 if ( ! isset($vardef[$clearMe]) ) {
156                     continue;
157                 }
158                 $clearField = $vardef[$clearMe];
159                 $bean->$clearField = '';
160             }
161         }
162         }
163 }