]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - modules/EmailTemplates/EmailTemplateFormBase.php
Release 6.5.0
[Github/sugarcrm.git] / modules / EmailTemplates / EmailTemplateFormBase.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-2012 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 /*********************************************************************************
39
40  * Description:  Base Form For Notes
41  * Portions created by SugarCRM are Copyright (C) SugarCRM, Inc.
42  * All Rights Reserved.
43  * Contributor(s): ______________________________________..
44  ********************************************************************************/
45
46
47 class EmailTemplateFormBase {
48
49     function __construct()
50     {
51
52     }
53
54         function getFormBody($prefix, $mod='',$formname='', $size='30') {
55
56
57                 global $mod_strings;
58
59                 $temp_strings = $mod_strings;
60
61                 if(!empty($mod)) {
62                         global $current_language;
63                         $mod_strings = return_module_language($current_language, $mod);
64                 }
65                                         global $app_strings;
66                                         global $app_list_strings;
67
68                                 $lbl_required_symbol = $app_strings['LBL_REQUIRED_SYMBOL'];
69                                 $lbl_subject = $mod_strings['LBL_NOTE_SUBJECT'];
70                                 $lbl_description = $mod_strings['LBL_NOTE'];
71                                 $default_parent_type= $app_list_strings['record_type_default_key'];
72
73 $form = <<<EOF
74                                 <input type="hidden" name="${prefix}record" value="">
75                                 <input type="hidden" name="${prefix}parent_type" value="${default_parent_type}">
76                                 <p>
77                                 <table cellspacing="0" cellpadding="0" border="0">
78                                 <tr>
79                                     <td scope="row">$lbl_subject <span class="required">$lbl_required_symbol</span></td>
80                                 </tr>
81                                 <tr>
82                                     <td ><input name='${prefix}name' size='${size}' maxlength='255' type="text" value=""></td>
83                                 </tr>
84                                 <tr>
85                                     <td scope="row">$lbl_description</td>
86                                 </tr>
87                                 <tr>
88                                     <td ><textarea name='${prefix}description' cols='${size}' rows='4' ></textarea></td>
89                                 </tr>
90                                 </table></p>
91 EOF;
92
93         $javascript = new javascript();
94         $javascript->setFormName($formname);
95         $javascript->setSugarBean(new EmailTemplate());
96         $javascript->addRequiredFields($prefix);
97         $form .=$javascript->getScript();
98         $mod_strings = $temp_strings;
99         return $form;
100         }
101
102         function getForm($prefix, $mod='') {
103                 if(!empty($mod)) {
104                 global $current_language;
105                 $mod_strings = return_module_language($current_language, $mod);
106         }else global $mod_strings;
107                 global $app_strings;
108                 global $app_list_strings;
109
110                 $lbl_save_button_title = $app_strings['LBL_SAVE_BUTTON_TITLE'];
111                 $lbl_save_button_key = $app_strings['LBL_SAVE_BUTTON_KEY'];
112                 $lbl_save_button_label = $app_strings['LBL_SAVE_BUTTON_LABEL'];
113
114
115                 $the_form = get_left_form_header($mod_strings['LBL_NEW_FORM_TITLE']);
116 $the_form .= <<<EOQ
117
118                                 <form name="${prefix}EmailTemplateSave" onSubmit="return check_form('${prefix}EmailTemplateSave')" method="POST" action="index.php">
119                                         <input type="hidden" name="${prefix}module" value="EmailTemplates">
120                                         <input type="hidden" name="${prefix}action" value="Save">
121 EOQ;
122                 $the_form .= $this->getFormBody($prefix, $mod, "${prefix}EmailTemplateSave", "20");
123 $the_form .= <<<EOQ
124                                 <p><input title="$lbl_save_button_title" accessKey="$lbl_save_button_key" class="button" type="submit" name="button" value="  $lbl_save_button_label  " ></p>
125                                 </form>
126
127 EOQ;
128
129                 $the_form .= get_left_form_footer();
130                 $the_form .= get_validate_record_js();
131
132
133                 return $the_form;
134         }
135
136
137         function handleSave($prefix,$redirect=true, $useRequired=false)
138         {
139                 require_once('include/formbase.php');
140                 require_once('include/upload_file.php');
141                 global $upload_maxsize;
142                 global $mod_strings;
143                 global $sugar_config;
144
145                 $focus = new EmailTemplate();
146                 if($useRequired && !checkRequired($prefix, array_keys($focus->required_fields))) {
147                         return null;
148                 }
149                 $focus = populateFromPost($prefix, $focus);
150         //process the text only flag
151         if(isset($_POST['text_only']) && ($_POST['text_only'] == '1')){
152             $focus->text_only = 1;
153         }else{
154             $focus->text_only = 0;
155         }
156                 if(!$focus->ACLAccess('Save')) {
157                         ACLController::displayNoAccess(true);
158                         sugar_cleanup(true);
159                 }
160                 if(!isset($_REQUEST['published'])) $focus->published = 'off';
161
162                 $preProcessedImages = array();
163                 $emailTemplateBodyHtml = from_html($focus->body_html);
164                 if(strpos($emailTemplateBodyHtml, '"cache/images/')) {
165                         $matches = array();
166                         preg_match_all('#<img[^>]*[\s]+src[^=]*=[\s]*["\']cache/images/(.+?)["\']#si', $emailTemplateBodyHtml, $matches);
167                         foreach($matches[1] as $match) {
168                                 $filename = urldecode($match);
169
170                                 $file_location = sugar_cached("images/{$filename}");
171                                 $mime_type = pathinfo($filename, PATHINFO_EXTENSION);
172
173                                 if(file_exists($file_location)) {
174                                         $id = create_guid();
175                                         $newFileLocation = "upload://$id";
176                                         if(!copy($file_location, $newFileLocation)) {
177                                                 $GLOBALS['log']->debug("EMAIL Template could not copy attachment to $newFileLocation");
178                                         } else {
179                                                 $secureLink = "index.php?entryPoint=download&type=Notes&id={$id}";
180                                             $emailTemplateBodyHtml = str_replace("cache/images/$match", $secureLink, $emailTemplateBodyHtml);
181                                                 unlink($file_location);
182                                                 $preProcessedImages[$filename] = $id;
183                                         }
184                                 } // if
185                         } // foreach
186                 } // if
187                 if (isset($GLOBALS['check_notify'])) {
188             $check_notify = $GLOBALS['check_notify'];
189         }
190         else {
191             $check_notify = FALSE;
192         }
193         $focus->body_html = $emailTemplateBodyHtml;
194         $return_id = $focus->save($check_notify);
195                 ///////////////////////////////////////////////////////////////////////////////
196                 ////    ATTACHMENT HANDLING
197
198                 ///////////////////////////////////////////////////////////////////////////
199                 ////    ADDING NEW ATTACHMENTS
200
201                 $max_files_upload = count($_FILES);
202
203                 if(!empty($focus->id)) {
204                         $note = new Note();
205                         $where = "notes.parent_id='{$focus->id}'";
206                         if(!empty($_REQUEST['old_id'])) { // to support duplication of email templates
207                                 $where .= " OR notes.parent_id='".$_REQUEST['old_id']."'";
208                         }
209                         $notes_list = $note->get_full_list("", $where, true);
210                 }
211
212                 if(!isset($notes_list)) {
213                         $notes_list = array();
214                 }
215
216                 if(!is_array($focus->attachments)) { // PHP5 does not auto-create arrays(). Need to initialize it here.
217                         $focus->attachments = array();
218                 }
219                 $focus->attachments = array_merge($focus->attachments, $notes_list);
220
221
222
223                 //for($i = 0; $i < $max_files_upload; $i++) {
224
225                 foreach ($_FILES as $key => $file)
226                 {
227                         $note = new Note();
228
229                         //Images are presaved above so we need to prevent duplicate files from being created.
230                         if( isset($preProcessedImages[$file['name']]) )
231                         {
232                             $oldId = $preProcessedImages[$file['name']];
233                             $note->id = $oldId;
234                             $note->new_with_id = TRUE;
235                             $GLOBALS['log']->debug("Image {$file['name']} has already been processed.");
236             }
237
238                         $i=preg_replace("/email_attachment(.+)/",'$1',$key);
239                         $upload_file = new UploadFile($key);
240
241                         if(isset($_FILES[$key]) && $upload_file->confirm_upload() && preg_match("/^email_attachment/",$key)) {
242                                 $note->filename = $upload_file->get_stored_file_name();
243                                 $note->file = $upload_file;
244                                 $note->name = $mod_strings['LBL_EMAIL_ATTACHMENT'].': '.$note->file->original_file_name;
245                                 if(isset($_REQUEST['embedded'.$i]) && !empty($_REQUEST['embedded'.$i])){
246                   if($_REQUEST['embedded'.$i]=='true'){
247                                         $note->embed_flag =true;
248                   }
249                   else{
250                         $note->embed_flag =false;
251                   }
252                                 }
253                                 array_push($focus->attachments, $note);
254                         }
255
256                 }
257
258                 $focus->saved_attachments = array();
259                 foreach($focus->attachments as $note)
260                 {
261                         if( !empty($note->id) && $note->new_with_id === FALSE)
262                         {
263                                 if(empty($_REQUEST['old_id']))
264                                         array_push($focus->saved_attachments, $note); // to support duplication of email templates
265                                 else
266                                 {
267                                         // we're duplicating a template with attachments
268                                         // dupe the file, create a new note, assign the note to the new template
269                                         $newNote = new Note();
270                                         $newNote->retrieve($note->id);
271                                         $newNote->id = create_guid();
272                                         $newNote->parent_id = $focus->id;
273                                         $newNote->new_with_id = true;
274                                         $newNote->date_modified = '';
275                                         $newNote->date_entered = '';
276                                         $newNoteId = $newNote->save();
277
278                                         UploadFile::duplicate_file($note->id, $newNoteId, $note->filename);
279                                 }
280                                 continue;
281                         }
282                         $note->parent_id = $focus->id;
283                         $note->parent_type = 'Emails';
284                         $note->file_mime_type = $note->file->mime_type;
285                         $note_id = $note->save();
286                         array_push($focus->saved_attachments, $note);
287                         $note->id = $note_id;
288
289                         if($note->new_with_id === FALSE)
290                         $note->file->final_move($note->id);
291             else
292                $GLOBALS['log']->debug("Not performing final move for note id {$note->id} as it has already been processed");
293                 }
294
295                 ////    END NEW ATTACHMENTS
296                 ///////////////////////////////////////////////////////////////////////////
297
298         ///////////////////////////////////////////////////////////////////////////
299         ////    ATTACHMENTS FROM DOCUMENTS
300         $count='';
301         //_pp($_REQUEST);
302         //_ppd(count($_REQUEST['document']));
303         if(!empty($_REQUEST['document'])){
304       $count = count($_REQUEST['document']);
305     }
306     else{
307         $count=10;
308     }
309
310         for($i=0; $i<$count; $i++) {
311                 if(isset($_REQUEST['documentId'.$i]) && !empty($_REQUEST['documentId'.$i])) {
312                         $doc = new Document();
313                         $docRev = new DocumentRevision();
314                         $docNote = new Note();
315
316                         $doc->retrieve($_REQUEST['documentId'.$i]);
317                         $docRev->retrieve($doc->document_revision_id);
318
319                         array_push($focus->saved_attachments, $docRev);
320
321                         $docNote->name = $doc->document_name;
322                         $docNote->filename = $docRev->filename;
323                         $docNote->description = $doc->description;
324                         $docNote->parent_id = $focus->id;
325                         $docNote->parent_type = 'Emails';
326                         $docNote->file_mime_type = $docRev->file_mime_type;
327                         $docId = $docNote = $docNote->save();
328
329                         UploadFile::duplicate_file($docRev->id, $docId, $docRev->filename);
330                 }
331
332         }
333
334         ////    END ATTACHMENTS FROM DOCUMENTS
335         ///////////////////////////////////////////////////////////////////////////
336
337                 ///////////////////////////////////////////////////////////////////////////
338                 ////    REMOVE ATTACHMENTS
339
340                 if(isset($_REQUEST['remove_attachment']) && !empty($_REQUEST['remove_attachment'])) {
341                         foreach($_REQUEST['remove_attachment'] as $noteId) {
342                                 $q = 'UPDATE notes SET deleted = 1 WHERE id = \''.$noteId.'\'';
343                                 $focus->db->query($q);
344                         }
345
346                 }
347
348                 ////    END REMOVE ATTACHMENTS
349                 ///////////////////////////////////////////////////////////////////////////
350         ////    END ATTACHMENT HANDLING
351         ///////////////////////////////////////////////////////////////////////////////
352
353         clear_register_value('select_array', $focus->object_name);
354         
355                 if($redirect) {
356                 $GLOBALS['log']->debug("Saved record with id of ".$return_id);
357                         handleRedirect($return_id, "EmailTemplates");
358                 }else{
359                         return $focus;
360                 }
361         }
362
363 }
364 ?>