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