]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - jssource/src_files/modules/InboundEmail/InboundEmail.js
Release 6.1.6
[Github/sugarcrm.git] / jssource / src_files / modules / InboundEmail / InboundEmail.js
1 /*********************************************************************************
2  * SugarCRM is a customer relationship management program developed by
3  * SugarCRM, Inc. Copyright (C) 2004-2011 SugarCRM Inc.
4  * 
5  * This program is free software; you can redistribute it and/or modify it under
6  * the terms of the GNU Affero General Public License version 3 as published by the
7  * Free Software Foundation with the addition of the following permission added
8  * to Section 15 as permitted in Section 7(a): FOR ANY PART OF THE COVERED WORK
9  * IN WHICH THE COPYRIGHT IS OWNED BY SUGARCRM, SUGARCRM DISCLAIMS THE WARRANTY
10  * OF NON INFRINGEMENT OF THIRD PARTY RIGHTS.
11  * 
12  * This program is distributed in the hope that it will be useful, but WITHOUT
13  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
14  * FOR A PARTICULAR PURPOSE.  See the GNU Affero General Public License for more
15  * details.
16  * 
17  * You should have received a copy of the GNU Affero General Public License along with
18  * this program; if not, see http://www.gnu.org/licenses or write to the Free
19  * Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
20  * 02110-1301 USA.
21  * 
22  * You can contact SugarCRM, Inc. headquarters at 10050 North Wolfe Road,
23  * SW2-130, Cupertino, CA 95014, USA. or at email address contact@sugarcrm.com.
24  * 
25  * The interactive user interfaces in modified source and object code versions
26  * of this program must display Appropriate Legal Notices, as required under
27  * Section 5 of the GNU Affero General Public License version 3.
28  * 
29  * In accordance with Section 7(b) of the GNU Affero General Public License version 3,
30  * these Appropriate Legal Notices must retain the display of the "Powered by
31  * SugarCRM" logo. If the display of the logo is not reasonably feasible for
32  * technical reasons, the Appropriate Legal Notices must display the words
33  * "Powered by SugarCRM".
34  ********************************************************************************/
35
36
37 SUGAR.inboundEmail = { };
38
39
40 Rot13 = {
41     map: null,
42
43     convert: function(a) {
44         Rot13.init();
45
46         var s = "";
47         for (i=0; i < a.length; i++) {
48             var b = a.charAt(i);
49             s += ((b>='A' && b<='Z') || (b>='a' && b<='z') ? Rot13.map[b] : b);
50         }
51         return s;
52     },
53
54     init: function() {
55         if (Rot13.map != null)
56             return;
57
58         var map = new Array();
59         var s   = "abcdefghijklmnopqrstuvwxyz";
60
61         for (i=0; i<s.length; i++)
62             map[s.charAt(i)] = s.charAt((i+13)%26);
63         for (i=0; i<s.length; i++)
64             map[s.charAt(i).toUpperCase()] = s.charAt((i+13)%26).toUpperCase();
65
66         Rot13.map = map;
67     },
68
69     write: function(a) {
70         return Rot13.convert(a);
71     }
72 }
73
74
75 function getEncryptedPassword(login, password, mailbox) {
76         var words = new Array(login, password, mailbox);
77         for(i=0; i<3; i++) {
78                 word = words[i];
79                 if(word.indexOf('&') > 0) {
80                         fragment1 = word.substr(0, word.indexOf('&'));
81                         fragment2 = word.substr(word.indexOf('&') + 1, word.length);
82
83                         newWord = fragment1 + '::amp::' + fragment2;
84                         words[i] = newWord;
85                         word = newWord; // setting it locally to pass on to next IF
86                         fragment1 = '';
87                         fragment2 = '';
88                 }
89                 if(word.indexOf('+') > 0) {
90                         fragment1 = word.substr(0, word.indexOf('+'));
91                         fragment2 = word.substr(word.indexOf('+') + 1, word.length);
92
93                         newWord = fragment1 + '::plus::' + fragment2;
94                         words[i] = newWord;
95                         word = newWord; // setting it locally to pass on to next IF
96                         fragment1 = '';
97                         fragment2 = '';
98                 }
99                 if(word.indexOf('%') > 0) {
100                         fragment1 = word.substr(0, word.indexOf('%'));
101                         fragment2 = word.substr(word.indexOf('%') + 1, word.length);
102
103                         newWord = fragment1 + '::percent::' + fragment2;
104                         words[i] = newWord;
105                         word = newWord; // setting it locally to pass on to next IF
106                         fragment1 = '';
107                         fragment2 = '';
108                 }
109         } // for
110
111         return words;
112 } // fn
113
114 function ie_test_open_popup_with_submit(module_name, action, pageTarget, width, height, mail_server, protocol, port, login, password, mailbox, ssl, personal, formName, ie_id)
115 {
116         if (!formName) formName = "testSettingsView";
117         var words = getEncryptedPassword(login, password, mailbox);
118         var isPersonal = (personal) ? 'true' : 'false';
119
120         if (!isDataValid(formName, true)) {
121                 return;
122         }
123         // launch the popup
124         URL = 'index.php?'
125                 + 'module=' + module_name
126                 + '&to_pdf=1'
127                 + '&action=' + action
128                 + '&target=' + pageTarget
129                 + '&target1=' + pageTarget
130                 + '&server_url=' + mail_server
131                 + '&email_user=' + words[0]
132                 + '&protocol=' + protocol
133                 + '&port=' + port
134                 + '&email_password=' + words[1]
135                 + '&mailbox=' + words[2]
136                 + '&ssl=' + ssl
137                 + '&ie_id=' + ie_id
138                 + '&personal=' + isPersonal;
139
140         var SI = SUGAR.inboundEmail;
141         if (!SI.testDlg) {
142                 SI.testDlg = new YAHOO.widget.SimpleDialog("testSettingsDiv", {
143                 width: width + "px",
144                 draggable: true,
145                 dragOnly: true,
146                 close: true,
147                 constraintoviewport: true,
148                         modal: true,
149                         loadingText: SUGAR.language.get("app_strings", "LBL_EMAIL_LOADING")
150             });
151                 SI.testDlg._updateContent = function (o) {
152                 var w = this.cfg.config.width.value + "px";
153                 this.setBody(o.responseText);
154                 if (this.evalJS)
155                   SUGAR.util.evalScript(o.responseText);
156                 if (!SUGAR.isIE)
157                     this.body.style.width = w
158             }
159         }
160         var title = SUGAR.language.get('Emails', 'LBL_TEST_SETTINGS');
161         if (typeof(title) == "undefined" || title == "undefined")
162            title = SUGAR.language.get('InboundEmail', 'LBL_TEST_SETTINGS');
163         SI.testDlg.setHeader(title);
164         SI.testDlg.setBody(SUGAR.language.get("app_strings", "LBL_EMAIL_LOADING"));
165
166     SI.testDlg.render(document.body);
167         var Connect = YAHOO.util.Connect;
168         if (Connect.url) URL = Connect.url + "&" +  url;
169     Connect.asyncRequest("GET", URL, {success:SI.testDlg._updateContent, failure:SI.testDlg.hide, scope:SI.testDlg});
170     SI.testDlg.show();
171
172 }
173
174 function isDataValid(formName, validateMonitoredFolder) {
175         var formObject = document.getElementById(formName);
176     var errors = new Array();
177     var out = new String();
178
179     if(trim(formObject.server_url.value) == "") {
180         errors.push(SUGAR.language.get('app_strings', 'LBL_EMAIL_ERROR_SERVER'));
181     }
182     if(trim(formObject.email_user.value) == "") {
183         errors.push(SUGAR.language.get('app_strings', 'LBL_EMAIL_ERROR_USER'));
184     }
185     if(formObject.protocol.protocol == "") {
186         errors.push(SUGAR.language.get('app_strings', 'LBL_EMAIL_ERROR_PROTOCOL'));
187     }
188     if (formObject.protocol.value == 'imap' && validateMonitoredFolder) {
189         if (trim(formObject.mailbox.value) == "") {
190                 errors.push(SUGAR.language.get('app_strings', 'LBL_EMAIL_ERROR_MONITORED_FOLDER'));
191         } // if
192     }
193     if(formObject.port.value == "") {
194         errors.push(SUGAR.language.get('app_strings', 'LBL_EMAIL_ERROR_PORT'));
195     }
196
197     if(errors.length > 0) {
198         out = SUGAR.language.get('app_strings', 'LBL_EMAIL_ERROR_DESC');
199         for(i=0; i<errors.length; i++) {
200             if(out != "") {
201                 out += "\n";
202             }
203             out += errors[i];
204         }
205
206         alert(out);
207         return false;
208     } else {
209         return true;
210     }
211
212 } // fn
213
214 function getFoldersListForInboundAccount(module_name, action, pageTarget, width, height, mail_server, protocol, port, login, password, mailbox, ssl, personal, searchFieldValue, formName) {
215         if (!formName) formName = "testSettingsView";
216
217         var words = getEncryptedPassword(login, password, mailbox);
218         var isPersonal = (personal) ? 'true' : 'false';
219
220         // launch the popup
221         URL = 'index.php?'
222         + 'module=' + module_name
223         + '&to_pdf=1'
224         + '&action=' + action
225         + '&target=' + pageTarget
226         + '&target1=' + pageTarget
227         + '&server_url=' + mail_server
228         + '&email_user=' + words[0]
229         + '&protocol=' + protocol
230         + '&port=' + port
231         + '&email_password=' + words[1]
232         + '&mailbox=' + words[2]
233         + '&ssl=' + ssl
234         + '&personal=' + isPersonal
235                 + '&searchField='+ searchFieldValue;
236
237         var SI = SUGAR.inboundEmail;
238     if (!SI.listDlg) {
239         SI.listDlg = new YAHOO.widget.SimpleDialog("selectFoldersDiv", {
240             width: width + "px",
241             draggable: true,
242             dragOnly: true,
243             close: true,
244             constraintoviewport: true,
245             modal: true,
246             loadingText: SUGAR.language.get("app_strings", "LBL_EMAIL_LOADING")
247         });
248         SI.listDlg._updateContent = function (o) {
249             var w = this.cfg.config.width.value + "px";
250             this.setBody(o.responseText);
251             SUGAR.util.evalScript(o.responseText);
252             if (!SUGAR.isIE)
253                 this.body.style.width = w
254         }
255     }
256     SI.listDlg.setHeader(SUGAR.language.get("app_strings", "LBL_EMAIL_LOADING"));
257     SI.listDlg.setBody('');
258
259     SI.listDlg.render(document.body);
260     var Connect = YAHOO.util.Connect;
261     if (Connect.url) URL = Connect.url + "&" +  url;
262     Connect.asyncRequest("GET", URL, {success:SI.listDlg._updateContent, failure:SI.listDlg.hide, scope:SI.listDlg});
263     SI.listDlg.show();
264
265 } // fn
266
267 function setPortDefault() {
268         var prot        = document.getElementById('protocol');
269         var ssl         = document.getElementById('ssl');
270         var port        = document.getElementById('port');
271         var stdPorts= new Array("110", "143", "993", "995");
272         var stdBool     = new Boolean(false);
273
274         if(port.value == '') {
275                 stdBool.value = true;
276         } else {
277                 for(i=0; i<stdPorts.length; i++) {
278                         if(stdPorts[i] == port.value) {
279                                 stdBool.value = true;
280                         }
281                 }
282         }
283
284         if(stdBool.value == true) {
285                 if(prot.value == 'imap' && ssl.checked == false) { // IMAP
286                         port.value = "143";
287                 } else if(prot.value == 'imap' && ssl.checked == true) { // IMAP-SSL
288                         port.value = '993';
289                 } else if(prot.value == 'pop3' && ssl.checked == false) { // POP3
290                         port.value = '110';
291                 } else if(prot.value == 'pop3' && ssl.checked == true) { // POP3-SSL
292                         port.value = '995';
293                 }
294         }
295 }
296
297 function toggle_monitored_folder(field) {
298
299         var field1=document.getElementById('protocol');
300         //var target=document.getElementById('pop3_warn');
301         //var mark_read = document.getElementById('mark_read');
302         var mailbox = document.getElementById('mailbox');
303         //var inbox = document.getElementById('inbox');
304         var label_inbox = document.getElementById('label_inbox');
305         var subscribeFolderButton = document.getElementById('subscribeFolderButton');
306         var trashFolderRow = document.getElementById('trashFolderRow');
307         var trashFolderRow1 = document.getElementById('trashFolderRow1');
308         var sentFolderRow = document.getElementById('sentFolderRow');
309
310         if (field1.value == 'imap') {
311                 //target.style.display="none";
312                 mailbox.disabled=false;
313         // This is not supported in IE
314         try {
315           mailbox.style.display = '';
316                   trashFolderRow.style.display = '';
317                   sentFolderRow.style.display = '';
318                   trashFolderRow1.style.display = '';
319                   //mailbox.type='text';
320           subscribeFolderButton.style.display = '';
321         } catch(e) {};
322                 //inbox.style.display='';
323                 label_inbox.style.display='';
324         }
325         else {
326                 //target.style.display="";
327                 mailbox.value = "INBOX";
328         mailbox.disabled=false; // cannot disable, else the value is not passed
329         // This is not supported in IE
330         try {
331                   mailbox.style.display = "none";
332           trashFolderRow.style.display = "none";
333                   sentFolderRow.style.display = "none";
334                   trashFolderRow1.style.display = "none";
335           subscribeFolderButton.style.display = "none";
336
337                   //mailbox.type='hidden';
338         } catch(e) {};
339
340                 //inbox.style.display = "";
341                 label_inbox.style.display = "none";
342         }
343 }