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