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