]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - modules/Notes/NoteSoap.php
Release 6.2.0
[Github/sugarcrm.git] / modules / Notes / NoteSoap.php
1 <?php
2 if(!defined('sugarEntry') || !sugarEntry) die('Not A Valid Entry Point');
3 /*********************************************************************************
4  * SugarCRM Community Edition is a customer relationship management program developed by
5  * SugarCRM, Inc. Copyright (C) 2004-2011 SugarCRM Inc.
6  * 
7  * This program is free software; you can redistribute it and/or modify it under
8  * the terms of the GNU Affero General Public License version 3 as published by the
9  * Free Software Foundation with the addition of the following permission added
10  * to Section 15 as permitted in Section 7(a): FOR ANY PART OF THE COVERED WORK
11  * IN WHICH THE COPYRIGHT IS OWNED BY SUGARCRM, SUGARCRM DISCLAIMS THE WARRANTY
12  * OF NON INFRINGEMENT OF THIRD PARTY RIGHTS.
13  * 
14  * This program is distributed in the hope that it will be useful, but WITHOUT
15  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
16  * FOR A PARTICULAR PURPOSE.  See the GNU Affero General Public License for more
17  * details.
18  * 
19  * You should have received a copy of the GNU Affero General Public License along with
20  * this program; if not, see http://www.gnu.org/licenses or write to the Free
21  * Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
22  * 02110-1301 USA.
23  * 
24  * You can contact SugarCRM, Inc. headquarters at 10050 North Wolfe Road,
25  * SW2-130, Cupertino, CA 95014, USA. or at email address contact@sugarcrm.com.
26  * 
27  * The interactive user interfaces in modified source and object code versions
28  * of this program must display Appropriate Legal Notices, as required under
29  * Section 5 of the GNU Affero General Public License version 3.
30  * 
31  * In accordance with Section 7(b) of the GNU Affero General Public License version 3,
32  * these Appropriate Legal Notices must retain the display of the "Powered by
33  * SugarCRM" logo. If the display of the logo is not reasonably feasible for
34  * technical reasons, the Appropriate Legal Notices must display the words
35  * "Powered by SugarCRM".
36  ********************************************************************************/
37
38 require_once('include/upload_file.php');
39
40 require_once('include/upload_file.php');
41
42 class NoteSoap{
43 var $upload_file;
44 function NoteSoap(){
45         $this->upload_file = new UploadFile('uploadfile');
46 }
47
48 function saveFile($note, $portal = false){
49         global $sugar_config;
50
51         $focus = new Note();
52
53
54
55         if(!empty($note['id'])){
56                 $focus->retrieve($note['id']);
57         }else{
58                 return '-1';
59         }
60
61         if(!empty($note['file'])){
62                 $decodedFile = base64_decode($note['file']);
63                 $this->upload_file->set_for_soap($note['filename'], $decodedFile);
64
65                 $ext_pos = strrpos($this->upload_file->stored_file_name, ".");
66                 $this->upload_file->file_ext = substr($this->upload_file->stored_file_name, $ext_pos + 1);
67                 if (in_array($this->upload_file->file_ext, $sugar_config['upload_badext'])) {
68                         $this->upload_file->stored_file_name .= ".txt";
69                         $this->upload_file->file_ext = "txt";
70                 }
71
72                 $focus->filename = $this->upload_file->get_stored_file_name();
73                 $focus->file_mime_type = $this->upload_file->getMimeSoap($focus->filename);
74                 $focus->id = $note['id'];
75                 $return_id = $focus->save();
76                 $this->upload_file->final_move($focus->id);
77         }else{
78                 return '-1';
79         }
80
81         return $return_id;
82 }
83
84 function newSaveFile($note, $portal = false){
85         global $sugar_config;
86
87         $focus = new Note();
88
89
90         if(!empty($note['id'])){
91                 $focus->retrieve($note['id']);
92         } else {
93                 return '-1';
94         }
95
96         if(!empty($note['file'])){
97             $decodedFile = base64_decode($note['file']);
98             $this->upload_file->set_for_soap($note['filename'], $decodedFile);
99
100             $ext_pos = strrpos($this->upload_file->stored_file_name, ".");
101             $this->upload_file->file_ext = substr($this->upload_file->stored_file_name, $ext_pos + 1);
102             if (in_array($this->upload_file->file_ext, $sugar_config['upload_badext'])) {
103                     $this->upload_file->stored_file_name .= ".txt";
104                     $this->upload_file->file_ext = "txt";
105             }
106
107             $focus->filename = $this->upload_file->get_stored_file_name();
108             $focus->file_mime_type = $this->upload_file->getMimeSoap($focus->filename);
109             $focus->save();
110         }
111
112         $return_id = $focus->id;
113
114         if(!empty($note['file'])){
115                 $this->upload_file->final_move($focus->id);
116         }
117
118                 if (!empty($note['related_module_id']) && !empty($note['related_module_name'])) {
119                 $focus->process_save_dates=false;
120                 $module_name = $note['related_module_name'];
121                 $module_id = $note['related_module_id'];
122                         if($module_name != 'Contacts'){
123                                 $focus->parent_type=$module_name;
124                                 $focus->parent_id = $module_id;
125                         }else{
126                                 $focus->contact_id=$module_id;
127                         }
128                         $focus->save();
129
130         } // if
131         return $return_id;
132 }
133
134 function retrieveFile($id, $filename){
135         if(empty($filename)){
136                 return '';
137         }
138
139         $this->upload_file->stored_file_name = $filename;
140         $filepath = $this->upload_file->get_upload_path($id);
141         if(file_exists($filepath)){
142                 $file = file_get_contents($filepath);
143                 return base64_encode($file);
144         }
145         return -1;
146
147
148
149
150 }
151
152 }
153
154
155
156
157 ?>