]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - modules/InboundEmail/Save.php
Release 6.1.5
[Github/sugarcrm.git] / modules / InboundEmail / Save.php
1 <?php
2 if(!defined('sugarEntry') || !sugarEntry) die('Not A Valid Entry Point');
3 /*********************************************************************************
4  * SugarCRM 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/SugarFolders/SugarFolders.php');
39
40 global $current_user;
41
42 $focus = new InboundEmail();
43 $focus->retrieve($_REQUEST['record']);
44
45 foreach($focus->column_fields as $field) {
46     if($field == 'email_password' && empty($_REQUEST['email_password']) && !empty($_REQUEST['email_user'])) {
47         continue;
48     }
49         if(isset($_REQUEST[$field])) {
50                 if ($field != "group_id") {
51                         $focus->$field = trim($_REQUEST[$field]);
52                 }
53         }
54 }
55 foreach($focus->additional_column_fields as $field) {
56         if(isset($_REQUEST[$field])) {
57                 $value = trim($_REQUEST[$field]);
58                 $focus->$field = $value;
59         }
60 }
61 foreach($focus->required_fields as $field) {
62         if(isset($_REQUEST[$field])) {
63                 $value = trim($_REQUEST[$field]);
64                 $focus->$field = $value;
65         }
66 }
67 $focus->protocol = $_REQUEST['protocol'];
68
69 if( isset($_REQUEST['is_create_case']) && $_REQUEST['is_create_case'] == 'on' )
70     $focus->mailbox_type = 'createcase';
71 else
72 {
73     if( empty($focus->mailbox_type) || $focus->mailbox_type == 'createcase' )
74         $focus->mailbox_type = 'pick';
75 }
76
77 /////////////////////////////////////////////////////////
78 ////    SERVICE STRING CONCATENATION
79 $useSsl = (isset($_REQUEST['ssl']) && $_REQUEST['ssl'] == 1) ? true : false;
80 $optimum = $focus->getSessionConnectionString($focus->server_url, $focus->email_user, $focus->port, $focus->protocol);
81 if (empty($optimum)) {
82         $optimum = $focus->findOptimumSettings($useSsl, $focus->email_user, $focus->email_password, $focus->server_url, $focus->port, $focus->protocol, $focus->mailbox);
83 } // if
84 $delimiter = $focus->getSessionInboundDelimiterString($focus->server_url, $focus->email_user, $focus->port, $focus->protocol);
85
86 //added check to ensure the $optimum['serial']) is not empty.
87 if(is_array($optimum) && (count($optimum) > 0) && !empty( $optimum['serial'])) {
88         $focus->service = $optimum['serial'];
89 } else {
90         // no save
91         // allowing bad save to allow Email Campaigns configuration to continue even without IMAP
92         $focus->service = "::::::".$focus->protocol."::::"; // save bogus info.
93         $error = "&error=true";
94 }
95 ////    END SERVICE STRING CONCAT
96 /////////////////////////////////////////////////////////
97
98 if(isset($_REQUEST['mark_read']) && $_REQUEST['mark_read'] == 1) {
99         $focus->delete_seen = 0;
100 } else {
101         $focus->delete_seen = 0;
102 }
103
104 // handle stored_options serialization
105 if(isset($_REQUEST['only_since']) && $_REQUEST['only_since'] == 1) {
106         $onlySince = true;
107 } else {
108         $onlySince = false;
109 }
110 $stored_options = array();
111 $stored_options['from_name'] = trim($_REQUEST['from_name']);
112 $stored_options['from_addr'] = trim($_REQUEST['from_addr']);
113 $stored_options['reply_to_name'] = trim($_REQUEST['reply_to_name']);
114 $stored_options['reply_to_addr'] = trim($_REQUEST['reply_to_addr']);
115 $stored_options['only_since'] = $onlySince;
116 $stored_options['filter_domain'] = $_REQUEST['filter_domain'];
117 $stored_options['email_num_autoreplies_24_hours'] = $_REQUEST['email_num_autoreplies_24_hours'];
118 $stored_options['allow_outbound_group_usage'] = isset($_REQUEST['allow_outbound_group_usage']) ? true : false;
119
120 if (!$focus->isPop3Protocol()) {
121         $stored_options['trashFolder'] = (isset($_REQUEST['trashFolder']) ? trim($_REQUEST['trashFolder']) : "");
122         $stored_options['sentFolder'] = (isset($_REQUEST['sentFolder']) ? trim($_REQUEST['sentFolder']) : "");
123 } // if
124 if ( $focus->isMailBoxTypeCreateCase() || ($focus->mailbox_type == 'createcase' && empty($_REQUEST['id']) ) )
125 {
126         $stored_options['distrib_method'] = (isset($_REQUEST['distrib_method'])) ? $_REQUEST['distrib_method'] : "";
127         $stored_options['create_case_email_template'] = (isset($_REQUEST['create_case_template_id'])) ? $_REQUEST['create_case_template_id'] : "";
128 } // if
129 $storedOptions['folderDelimiter'] = $delimiter;
130
131 ////////////////////////////////////////////////////////////////////////////////
132 ////    CREATE MAILBOX QUEUE
133 ////////////////////////////////////////////////////////////////////////////////
134 if (!isset($focus->id)) {
135         $groupId = "";
136         if (isset($_REQUEST['group_id']) && empty($_REQUEST['group_id'])) {
137                 $groupId = $_REQUEST['group_id'];
138         } else {
139                 $groupId = create_guid();
140         }
141         $focus->group_id = $groupId;
142 }
143
144
145 if( isset($_REQUEST['is_auto_import']) && $_REQUEST['is_auto_import'] == 'on' )
146 {
147     if( empty($focus->groupfolder_id) )
148     {
149         $groupFolderId = $focus->createAutoImportSugarFolder();
150         $focus->groupfolder_id = $groupFolderId;
151     }
152 }
153 else
154 {
155     $focus->groupfolder_id = "";
156     //If the user is turning the auto-import feature off then remove all previous subscriptions.
157     if( !empty($focus->fetched_row['groupfolder_id'] ) )
158     {
159         $GLOBALS['log']->debug("Clearining all subscriptions to folder id: {$focus->fetched_row['groupfolder_id']}");
160         $f = new SugarFolder();
161         $f->clearSubscriptionsForFolder($focus->fetched_row['groupfolder_id']);
162         //Now delete the old group folder.
163         $f->retrieve($focus->fetched_row['groupfolder_id']);
164         $f->delete();
165     }
166 }
167
168 if (!empty($focus->groupfolder_id))
169 {
170         if ($_REQUEST['leaveMessagesOnMailServer'] == "1")
171                 $stored_options['leaveMessagesOnMailServer'] = 1;
172         else
173                 $stored_options['leaveMessagesOnMailServer'] = 0;
174 }
175
176 $focus->stored_options = base64_encode(serialize($stored_options));
177 $GLOBALS['log']->info('----->InboundEmail now saving self');
178
179
180 ////////////////////////////////////////////////////////////////////////////////
181 ////    SEND US TO SAVE DESTINATION
182 ////////////////////////////////////////////////////////////////////////////////
183
184 //When an admin is creating an IE account we do not want their private team to be added
185 //or they may be included in a round robin assignment.
186 $previousTeamAccessCheck = isset($GLOBALS['sugar_config']['disable_team_access_check']) ? $GLOBALS['sugar_config']['disable_team_access_check'] : null;
187 $GLOBALS['sugar_config']['disable_team_access_check'] = TRUE;
188
189 $focus->save();
190
191 //Reset the value so no other saves are affected.
192 $GLOBALS['sugar_config']['disable_team_access_check'] = $previousTeamAccessCheck;
193
194
195
196 //Sync any changes within the IE account that need to be synced with the Sugar Folder.
197 //Need to do this post save so the correct team/teamset id is generated correctly.
198 $monitor_fields = array('name', 'status',
199                         );
200
201 //Only sync IE accounts with a group folder.  Need to sync new records as team set assignment is processed
202 //after save.
203 if( !empty($focus->groupfolder_id) )
204 {
205     foreach ($monitor_fields as $singleField)
206     {
207         //Check if the value is being changed during save.
208         if($focus->fetched_row[$singleField] != $focus->$singleField)
209             syncSugarFoldersWithBeanChanges($singleField, $focus);
210     }
211 }
212
213 $_REQUEST['return_id'] = $focus->id;
214
215
216 $edit='';
217 if(isset($_REQUEST['return_module']) && $_REQUEST['return_module'] != "") {
218         $return_module = $_REQUEST['return_module'];
219 } else {
220         $return_module = "InboundEmail";
221 }
222 if(isset($_REQUEST['return_action']) && $_REQUEST['return_action'] != "") {
223         $return_action = $_REQUEST['return_action'];
224 } else {
225         $return_action = "DetailView";
226 }
227 if(isset($_REQUEST['return_id']) && $_REQUEST['return_id'] != "") {
228         $return_id = $_REQUEST['return_id'];
229 }
230 if(!empty($_REQUEST['edit'])) {
231         $return_id='';
232         $edit='&edit=true';
233 }
234
235 $GLOBALS['log']->debug("Saved record with id of ".$return_id);
236
237
238 header("Location: index.php?module=$return_module&action=$return_action&record=$return_id$edit$error");
239
240
241 /**
242  * Certain updates to the IE account need to be reflected in the related SugarFolder since they are
243  * created automatically.  Only valid for IE accounts with auto import turned on.
244  *
245  * @param string $fieldName The field name that changed
246  * @param SugarBean $focus The InboundEmail bean being saved.
247  */
248 function syncSugarFoldersWithBeanChanges($fieldName, $focus)
249 {
250     $f = new SugarFolder();
251     $f->retrieve($focus->groupfolder_id);
252
253     switch ($fieldName)
254     {
255         case 'name':
256         case 'team_id':
257         case 'team_set_id':
258             $f->$fieldName = $focus->$fieldName;
259             $f->save();
260             break;
261
262         case 'status':
263             if($focus->status == 'Inactive')
264                 $f->clearSubscriptionsForFolder($focus->groupfolder_id);
265             else if($focus->mailbox_type != 'bounce' )
266                 $f->addSubscriptionsToGroupFolder();
267             break;
268     }
269 }
270