]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - jssource/src_files/modules/EAPM/EAPMEdit.js
Release 6.5.0
[Github/sugarcrm.git] / jssource / src_files / modules / EAPM / EAPMEdit.js
1 /*********************************************************************************
2  * SugarCRM Community Edition is a customer relationship management program developed by
3  * SugarCRM, Inc. Copyright (C) 2004-2012 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 /**
38  * Edit functions for EAPM
39  */
40 function EAPMChange() {
41     var apiName = '';
42
43     if ( EAPMFormName == 'EditView' ) {
44         apiName = document.getElementById('application').value;
45     } else {
46         apiName = document.getElementById('application_raw').value;
47     }
48     if(SUGAR.eapm[apiName]){
49         var apiOpts = SUGAR.eapm[apiName];
50
51         var urlObj = new SUGAR.forms.VisibilityAction('url',(apiOpts.needsUrl?'true':'false'), EAPMFormName);
52         if ( EAPMFormName == 'EditView' ) {
53             EAPMSetFieldRequired('url',(apiOpts.needsUrl == true));
54         }
55
56         var userObj = new SUGAR.forms.VisibilityAction('name',((apiOpts.authMethod=='password')?'true':'false'), EAPMFormName);
57         if ( EAPMFormName == 'EditView' ) {
58             EAPMSetFieldRequired('name',(apiOpts.authMethod == 'password'));
59         }
60
61         var passObj = new SUGAR.forms.VisibilityAction('password',((apiOpts.authMethod=='password')?'true':'false'), EAPMFormName);
62         if ( EAPMFormName == 'EditView' ) {
63             EAPMSetFieldRequired('password',(apiOpts.authMethod == 'password'));
64         }
65
66         urlObj.exec();
67         userObj.exec();
68         passObj.exec();
69
70         //hide/show new window notice
71         var messageDiv = document.getElementById('eapm_notice_div');
72         if ( typeof messageDiv != 'undefined' && messageDiv != null ) {
73             if(apiOpts.authMethod){
74                 if(apiOpts.authMethod == "oauth"){
75                     messageDiv.innerHTML = EAPMOAuthNotice;
76                 }else{
77                     messageDiv.innerHTML = EAPMBAsicAuthNotice;
78                 }
79             }else{
80                 messageDiv.innerHTML = EAPMBAsicAuthNotice;
81             }
82         }
83     }
84 }
85
86 function EAPMSetFieldRequired(fieldName, isRequired) {
87     var formname = 'EditView';
88     for(var i = 0; i < validate[formname].length; i++){
89                 if(validate[formname][i][0] == fieldName){
90             validate[formname][i][2] = isRequired;
91                 }
92     }
93 }
94
95 function EAPMEditStart(userIsAdmin) {
96     var apiElem = document.getElementById('application');
97
98     EAPM_url_validate = null;
99     EAPM_name_validate = null;
100     EAPM_password_validate = null;
101
102     apiElem.onchange = EAPMChange;
103
104     setTimeout(EAPMChange,100);
105     
106     if ( !userIsAdmin ) {
107         // Disable the assigned user picker for non-admins
108         document.getElementById('assigned_user_name').parentNode.innerHTML = document.getElementById('assigned_user_name').value;
109     }
110
111     // Disable the app picker if we are editing an existing record.
112     if ( apiElem.form.record.value != '' ) {
113         apiElem.disabled = true;
114     }
115 }
116
117 var EAPMPopupCheckCount = 0;
118 function EAPMPopupCheck(newWin, popup_url, redirect_url, popup_warning_message) {
119     if ( newWin == false || newWin == null || typeof newWin.close != 'function' || EAPMPopupCheckCount > 35 ) {
120         // Opening the popup failed, redirect them to the popup_url
121         alert(popup_warning_message);
122         document.location = redirect_url;
123         return;
124     }
125     
126     if ( typeof(newWin.innerHeight) != 'undefined' && newWin.innerHeight != 0 ) {
127         // Popup was successful
128         document.location = redirect_url;
129         return;
130     }
131
132     // If we are here, we don't know if it worked or not.
133     EAPMPopupCheckCount++;
134     setTimeout(function() { EAPMPopupCheck(newWin, popup_url, redirect_url, popup_warning_message); },100);
135 }
136
137 function EAPMPopupAndRedirect(popup_url, redirect_url, popup_warning_message) {
138     var newWin = false;
139
140     try {
141         newWin = window.open(popup_url + '&closeWhenDone=1&refreshParentWindow=1','_blank');
142     } catch (e) {
143         newWin = false;
144     }
145
146     EAPMPopupCheck(newWin, popup_url, redirect_url, popup_warning_message);
147 }