MWF.xDesktop = MWF.xDesktop || {};
MWF.xApplication = MWF.xApplication || {};
MWF.xDesktop.requireApp("Template", "MPopupForm", null, false);
MWF.require("MWF.xDesktop.UserData", null, false);
MWF.xDesktop.Authentication = new Class({
Extends: MWF.widget.Common,
Implements: [Options, Events],
options: {
"style": "default",
// "width": "650",
// "height": "480"
"width": "420",
"height": "640",
"popupStyle_password": "o2platformSignupFlat",
"popupStyle_signup": "o2platformSignup"
},
initialize: function (options, app, node) {
this.setOptions(options);
this.node = node;
this.path = MWF.defaultPath + "/xDesktop/$Authentication/";
// var css = null;
// MWF.UD.getPublicData("loginStyleList", function (json) {
// if (json && json.enabledId) {
// MWF.UD.getPublicData(json.enabledId, function (json) {
// if (json && json.data) {
// css = json.data;
// }
// }.bind(this), false);
// }
// }.bind(this), false);
// if (!css) {
this.cssPath = MWF.defaultPath + "/xDesktop/$Authentication/" + this.options.style + "/css.wcss";
this._loadCss();
// } else {
// this.css = css;
// }
this.lp = MWF.LP.authentication;
this.app = app || {};
},
isAuthenticated: function (success, failure) {
MWF.Actions.get("x_organization_assemble_authentication").getAuthentication(success, failure);
},
loadLogin: function (node) {
o2.Actions.load("x_organization_assemble_authentication").EchoAction.get(function () {
if (node) this.loginNode = node;
if (!node && this.loginNode) node = this.loginNode;
if (layout.config.loginPage && layout.config.loginPage.enable && layout.config.loginPage.portal) {
MWF.xDesktop.loadPortal(layout.config.loginPage.portal, this.options.loginParameter, true);
this.fireEvent("openLogin");
} else {
this.popupOptions = {
"draggable": false,
"closeAction": false,
"hasMask": false,
"relativeToApp": false
};
this.popupPara = {
container: node
};
this.postLogin = function (json) {
layout.desktop.session.user = json.data;
layout.session.user = json.data;
layout.session.token = layout.session.user.token;
var user = layout.desktop.session.user;
if (!user.identityList) user.identityList = [];
if (user.roleList) {
var userRoleName = [];
user.roleList.each(function (role) {
userRoleName.push(role.substring(0, role.indexOf("@")));
});
user.roleList = user.roleList.concat(userRoleName);
}
var roleLCList = (user.roleList || []).map(function (role) {
return role.toLowerCase();
}.bind(this));
if (roleLCList.isIntersect(["systemmanager", "securitymanager", "auditmanager"])) {
window.location = "../x_desktop/app.html?app=ThreeMember";
} else {
window.location.reload();
}
}.bind(this);
this.openLoginForm(this.popupOptions);
this.fireEvent("openLogin");
}
}.bind(this), function (xhr) {
var message;
if (xhr) {
try {
var responseJSON = JSON.parse(xhr.responseText);
message = responseJSON.message; //message为错误提示文本
} catch (e) {
}
}
if (!message) message = MWF.LP.authentication.accessError;
new Element("div", {
"style": "font-size:16px;font-weight:bold;",
"text": message
}).inject(node);
}.bind(this));
},
safeLogout: function(){
o2.Actions.get("x_organization_assemble_authentication").safeLogout(function () {
if (this.socket) {
this.socket.close();
this.socket = null;
}
if (layout.session && layout.session.user) layout.session.user.token = "";
if (sessionStorage) sessionStorage.removeItem("o2LayoutSessionToken");
window.location.reload();
}.bind(this));
},
logout: function ( callback ) {
MWF.Actions.get("x_organization_assemble_authentication").logout(function () {
if (this.socket) {
this.socket.close();
this.socket = null;
}
if (layout.session && layout.session.user) layout.session.user.token = "";
if (sessionStorage) sessionStorage.removeItem("o2LayoutSessionToken");
if( callback ){
callback();
}else{
window.location.reload();
}
}.bind(this));
},
openLoginForm: function (options, callback) {
var opt = Object.merge(this.popupOptions || {}, options || {}, {
onPostOk: function (json) {
if (callback) callback(json);
if (this.postLogin) this.postLogin(json);
this.fireEvent("postOk", json)
}.bind(this)
});
opt.width = this.options.width;
opt.height = this.options.height;
var form = new MWF.xDesktop.Authentication.LoginForm(this, {}, opt, this.popupPara);
form.create();
},
openSignUpForm: function (options, callback) {
var opt = Object.merge(this.popupOptions || {}, options || {}, {
onPostOk: function (json) {
if (callback) callback(json);
this.fireEvent("postOk", json)
}.bind(this)
});
delete opt.width;
delete opt.height;
if (this.options.popupStyle_signup) opt.popupStyle = this.options.popupStyle_signup;
var form = new MWF.xDesktop.Authentication.SignUpForm(this, {}, opt, this.popupPara);
form.create();
},
openResetPasswordForm: function (options, callback) {
var opt = Object.merge(this.popupOptions || {}, options || {}, {
onPostOk: function (json) {
if (callback) callback(json);
this.fireEvent("postOk", json)
}.bind(this)
});
if (this.options.popupStyle_password) opt.popupStyle = this.options.popupStyle_password;
// delete opt.width;
// delete opt.height;
var form = new MWF.xDesktop.Authentication.ResetPasswordForm(this, {}, opt, this.popupPara);
form.create();
},
openChangePasswordForm: function (options, callback) {
//options 里应该包括 userName
var opt = Object.merge(this.popupOptions || {}, options || {}, {
onPostOk: function (json) {
if (callback) callback(json);
this.fireEvent("postOk", json)
}.bind(this)
});
// if (this.options.popupStyle_password) opt.popupStyle = this.options.popupStyle_password;
var form = new MWF.xDesktop.Authentication.ChangePasswordForm(this, {}, opt, this.popupPara);
form.create();
}
});
MWF.xDesktop.Authentication.LoginForm = new Class({
Extends: MPopupForm,
Implements: [Options, Events],
options: {
"style": "default",
"popupStyle": "o2platform",
"width": "650",
"height": "480",
"hasTop": true,
"hasIcon": false,
"hasTopIcon": true,
"hasTopContent": true,
"hasBottom": false,
"hasScroll": false,
"hasMark": false,
"title": "",
"draggable": true,
"closeAction": true
},
load: function () {
this.setOptions({
"title": (layout.config && (layout.config.systemTitle || layout.config.title)) ? (layout.config.title || layout.config.systemTitle) : MWF.LP.authentication.LoginFormTitle
});
this._loadCss();
},
//Camera Login
_createTopContent: function () {
this.actions = MWF.Actions.get("x_organization_assemble_authentication");
this.faceLogin = false;
// this.actions.getLoginMode(function (json) {
// this.faceLogin = json.data.faceLogin;
// }.bind(this), null, false);
//
// if (this.faceLogin) {
// if (navigator.mediaDevices && navigator.mediaDevices.getUserMedia) {
// COMMON.AjaxModule.loadDom("../o2_lib/adapter/adapter.js", function () {
// if (navigator.mediaDevices && navigator.mediaDevices.getUserMedia) {
// //暂时隐藏此功能
// this.cameraLoginIcon = new Element("div", { "styles": this.explorer.css.cameraLoginIcon }).inject(this.formTopContentNode);
// this.cameraLoginIcon.addEvent("click", function () {
// if (!this.isCameraLogin) {
// this.cameraLogin();
// this.isCameraLogin = true;
// } else {
// this.closeCamera();
// this.isCameraLogin = false;
// }
// }.bind(this));
// }
// }.bind(this));
// }
// }
},
closeCamera: function () {
if (this.cameraLoginVideoNode) {
if (this.video) this.video.destroy();
if (this.canvas) this.canvas.destroy();
if (this.cameraLoginVideoNode) this.cameraLoginVideoNode.destroy();
this.video = null;
this.canvas = null;
this.cameraLoginVideoNode = null;
}
this.cameraLoginIcon.setStyles(this.explorer.css.cameraLoginIcon);
},
cameraLoginInit: function () {
this.cameraLoginConfig = {
"maxStep": 2,
"step": 0,
"count": 0,
"max": 2,
"errorCount": 0,
"errorMax": 3,
"user": "",
"tokens": []
};
},
cameraLoginReset: function (resetError) {
this.cameraLoginConfig.count = 0;
this.cameraLoginConfig.user = "";
if (resetError) this.cameraLoginConfig.errorCount = 0;
},
cameraLogin: function () {
this.cameraLoginInit();
this.cameraLoginIcon.setStyles(this.explorer.css.closeCameraLoginIcon);
this.createCameraLoginNode();
this.startCameraLogin();
},
createCameraLoginNode: function () {
this.cameraLoginVideoNode = new Element("div", { "styles": this.explorer.css.cameraLoginVideoNode }).inject(this.container);
var size = this.formNode.getSize();
var topSize = this.formTopNode.getSize();
var h = size.y - topSize.y;
this.cameraLoginVideoNode.setStyles({
"width": "" + size.x + "px",
"height": "" + h + "px"
});
this.cameraLoginVideoNode.position({
"relativeTo": this.formContentNode,
"position": "upperLeft",
"edge": "upperLeft"
});
},
startCameraLogin: function () {
this.cameraLoginVideoAreaNode = new Element("div").inject(this.cameraLoginVideoNode);
this.cameraLoginVideoInfoNode = new Element("div", { "styles": this.explorer.css.cameraLoginVideoInfoNode }).inject(this.cameraLoginVideoNode);
this.cameraLoginVideoInfoNode.set("text", MWF.LP.desktop.login.camera_logining);
var size = this.cameraLoginVideoNode.getSize();
var infoSize = this.cameraLoginVideoInfoNode.getSize();
var h = size.y - infoSize.y;
this.cameraLoginVideoAreaNode.setStyle("height", "" + h + "px");
this.cameraLoginVideoAreaNode.set("html", "");
this.video = this.cameraLoginVideoAreaNode.getFirst().setStyles({
"background-color": "#000000",
"width": "" + size.x + "px",
"height": "" + h + "px"
});
this.videoStart();
},
videoStart: function () {
this.video.addEventListener("canplay", function () {
window.setTimeout(function () {
this.startCameraAuthentication();
}.bind(this), 500);
}.bind(this));
navigator.mediaDevices.getUserMedia({
audio: false,
video: true
}).then(function (stream) {
this.video.srcObject = stream;
}.bind(this))["catch"](function (error) {
console.log('navigator.getUserMedia error: ', error);
this.closeCamera();
}.bind(this));
},
getFormData: function () {
if (!this.canvas) {
this.canvas = new Element("canvas", { "styles": { "display": "none" } }).inject(this.cameraLoginVideoNode);
this.canvas.width = this.video.videoWidth;
this.canvas.height = this.video.videoHeight;
}
this.canvas.getContext('2d').drawImage(this.video, 0, 0, this.canvas.width, this.canvas.height);
var blob = this.toBlob(this.canvas.toDataURL());
var formData = new FormData();
formData.append('file', blob);
this.canvas.destroy();
return { "data": formData, "size": blob.size };
},
//检测出身份
checkUserFace: function (formData) {
var faceset = window.location.host;
faceset = faceset.replace(/\./g, "_");
this.faceAction.search(faceset, formData.data, { "name": "pic", "size": formData.size }, function (json) {
if (json.data.results && json.data.results.length) {
var hold = json.data.thresholds["1e-5"];
if (json.data.results[0].confidence > hold) {
var token = json.data.faces[0].face_token;
var user = json.data.results[0].user_id;
if ((!this.cameraLoginConfig.user) || (this.cameraLoginConfig.user === user)) {
this.cameraLoginConfig.count++;
this.cameraLoginConfig.user = user;
this.cameraLoginConfig.tokens.push(token);
this.cameraLoginConfig.step++;
this.cameraLoginConfig.errorCount = 0;
this.cameraLoginVideoInfoNode.set("text", MWF.LP.desktop.login["camera_logining_" + this.cameraLoginConfig.step]);
} else {
this.cameraLoginReset();
this.cameraLoginConfig.errorCount++;
}
} else {
this.cameraLoginReset();
this.cameraLoginConfig.errorCount++;
}
} else {
this.cameraLoginReset();
this.cameraLoginConfig.errorCount++;
}
this.checkCameraLogin();
}.bind(this), function () {
window.setTimeout(function () { this.startCameraAuthentication(); }.bind(this), 500);
}.bind(this));
},
checkUserAlive: function (formData, attr, method) {
this.faceAction.detectattr(attr, formData.data, { "name": "pic", "size": formData.size }, function (json) {
if (json.data.faces && json.data.faces.length) {
if (this[method](json.data.faces[0].attributes)) {
this.cameraLoginConfig.step++;
this.cameraLoginConfig.errorCount = 0;
this.cameraLoginVideoInfoNode.set("text", MWF.LP.desktop.login["camera_logining_" + this.cameraLoginConfig.step]);
} else {
//可能是照片
this.cameraLoginConfig.errorCount++;
}
} else {
this.cameraLoginConfig.errorCount++;
}
this.checkCameraLogin();
}.bind(this), function () {
this.cameraLoginConfig.errorCount++;
this.checkCameraLogin();
}.bind(this));
},
//检测微笑
checkUserSmile: function (attr) {
return attr.smile.value > attr.smile.threshold;
},
//检测抬头
checkUserPitch: function (attr) {
return attr.headpose.pitch_angle < -10;
},
startCameraAuthentication: function () {
if (this.video) {
var formData = this.getFormData();
if (!this.faceAction) this.faceAction = MWF.Actions.get("x_faceset_control");
if (this.cameraLoginConfig.step === 0) {
this.checkUserFace(formData);
}
if (this.cameraLoginConfig.step === 1) {
this.checkUserAlive(formData, "smiling", "checkUserSmile");
}
if (this.cameraLoginConfig.step === 2) {
this.checkUserAlive(formData, "headpose", "checkUserPitch");
}
}
},
toBlob: function (base64) {
var bytes;
if (base64.substr(0, 10) === 'data:image') {
bytes = window.atob(base64.split(',')[1]);
} else {
bytes = window.atob(base64);
}
var ab = new ArrayBuffer(bytes.length);
var ia = new Uint8Array(ab);
for (var i = 0; i < bytes.length; i++) {
ia[i] = bytes.charCodeAt(i);
}
return new Blob([ab], { type: "image/png" });
},
getDIF: function (arr) {
var max = Math.max.apply(this, arr);
var min = Math.min.apply(this, arr);
return max - min;
},
checkCameraLogin: function () {
if (this.cameraLoginConfig.errorCount > this.cameraLoginConfig.errorMax) {
this.cameraLoginVideoInfoNode.set("text", MWF.LP.desktop.login.camera_loginError);
} else {
if (this.cameraLoginConfig.step >= this.cameraLoginConfig.maxStep) {
var text = MWF.LP.desktop.login.camera_loginSuccess.replace("{name}", this.cameraLoginConfig.user);
this.cameraLoginVideoInfoNode.set("text", text);
this.cameraLoginSuccess();
} else {
window.setTimeout(function () { this.startCameraAuthentication(); }.bind(this), 100);
}
}
},
cameraLoginSuccess: function () {
COMMON.AjaxModule.loadDom(["../o2_lib/CryptoJS/tripledes.js", "../o2_lib/CryptoJS/mode-ecb.js"], function () {
//COMMON.AjaxModule.loadDom(, function(){
var addressObj = layout.serviceAddressList["x_organization_assemble_authentication"];
var defaultPort = layout.config.app_protocol==='https' ? "443" : "80";
var appPort = addressObj.port || window.location.port;
var url = layout.config.app_protocol + "//" + (addressObj.host || window.location.hostname)+ ((!appPort || appPort.toString()===defaultPort) ? "" : ":"+appPort) + addressObj.context;
var code = this.crypDES();
var json = { "client": "face", "token": code };
var _self = this;
var res = new Request.JSON({
"method": "POST",
"url": o2.filterUrl(url + "/jaxrs/sso"),
"data": JSON.stringify(json),
secure: false,
emulation: false,
noCache: true,
withCredentials: true,
"headers": {
"Content-Type": "application/json; charset=utf-8"
},
onSuccess: function (responseJSON) {
_self._close();
_self.closeCamera();
if (_self.formMaskNode) _self.formMaskNode.destroy();
_self.formAreaNode.destroy();
var xToken = this.getHeader(o2.tokenName);
if (layout.config && layout.config.sessionStorageEnable) sessionStorage.setItem("o2LayoutSessionToken", xToken);
if (_self.explorer && _self.explorer.view) _self.explorer.view.reload();
if (_self.app) _self.app.notice(_self.lp.loginSuccess, "success");
_self.fireEvent("postOk", responseJSON);
},
onError: function () {
this.cameraLoginVideoInfoNode.set("text", MWF.LP.desktop.login.camera_loginError2);
}.bind(this)
});
res.send();
//}.bind(this));
}.bind(this));
},
crypDES: function () {
var key = "xplatform";
var userId = this.cameraLoginConfig.user;
var d = (new Date()).getTime();
var keyHex = CryptoJS.enc.Utf8.parse(key);
var xtoken = CryptoJS.DES.encrypt(userId + "#" + d, keyHex, {
mode: CryptoJS.mode.ECB,
padding: CryptoJS.pad.Pkcs7
});
var str = xtoken.ciphertext.toString(CryptoJS.enc.Base64);
str = str.replace(/=/g, "");
str = str.replace(/\+/g, "-");
str = str.replace(/\//g, "_");
return str;
},
_createTableContent: function () {
if( this.formTopTextNode && this.formTopCloseActionNode ){
this.formTopCloseActionNode.inject( this.formTopTextNode, "before" )
}
this.loginType = "captcha";
this.codeLogin = false;
this.bindLogin = false;
this.captchaLogin = true;
this.twoFactorLogin = false;
this.actions.getLoginMode(function (json) {
this.codeLogin = json.data.codeLogin;
this.bindLogin = json.data.bindLogin;
this.captchaLogin = json.data.captchaLogin;
this.twoFactorLogin = json.data.twoFactorLogin;
if( this.codeLogin && this.twoFactorLogin ){ //如果两个都是true,以短信登录为准
this.twoFactorLogin = false;
}
}.bind(this), null, false);
MWF.Actions.get("x_organization_assemble_personal").getRegisterMode(function (json) {
this.signUpMode = json.data.value;
}.bind(this), null, false);
if (this.bindLogin) {
this.bindLoginTipPic = new Element("div.bindLoginTipPic", { styles: this.css.bindLoginTipPic }).inject(this.formContentNode, "top");
this.bindLoginAction = new Element("div.bindLoginAction", { styles: this.css.bindLoginAction }).inject(this.formContentNode, "top");
this.bindLoginAction.addEvent("click", function () {
this.showBindCodeLogin();
}.bind(this));
this.backtoPasswordLoginTipPic = new Element("div.backtoPasswordLoginTipPic", { styles: this.css.backtoPasswordLoginTipPic }).inject(this.formContentNode, "top");
this.backtoPasswordLoginAction = new Element("div.backtoPasswordLoginAction", { styles: this.css.backtoPasswordLoginAction }).inject(this.formContentNode, "top");
this.backtoPasswordLoginAction.addEvent("click", function () {
this.backtoPasswordLogin();
}.bind(this));
}
var html =
"
" +
"
" +
"
" +
" " + this.lp.userAppCameraHtml +
"
"+this.lp.loginToPage +"
" +
"
" +
"
";
this.bindLoginContainer.set("html", html2);
this.isShowEnable = true;
this.bindBodyArea = this.bindLoginContainer.getElement("[styles='bindBodyArea']");
this.bindLoginContainer.addEvent("mousemove", function (ev) {
if (this.bindBodyArea.isOutside(ev)) {
this.hideExampleArea(ev);
} else {
this.showExampleArea(ev);
}
}.bind(this));
this.bindPicArea = this.bindLoginContainer.getElement("[item='bindPicArea']");
this.setBindPic();
this.bindExampleArea = this.bindLoginContainer.getElement("[styles='bindExampleArea']");
this.bindSepArea = this.bindLoginContainer.getElement("[styles='bindSepArea']");
var link = this.bindLoginContainer.getElement("[styles='bindTipLinkArea']");
link.addEvent("click", function () {
if( layout.config.appUrl ){
window.open(layout.config.appUrl, "_blank");
}else{
window.open(this.lp.o2downloadLink, "_blank");
}
}.bind(this));
this.bindErrorArea = this.bindLoginContainer.getElement("[styles='bindErrorArea']");
MWF.xDesktop.requireApp("Template", "MForm", function () {
this.bindform = new MForm(this.bindLoginContainer, {}, {
style: "o2platform",
verifyType: "single", //batch一起校验,或alert弹出
isEdited: this.isEdited || this.isNew,
itemTemplate: {
bindLoginTitle: { value: this.lp.bingLoginTitle, type: "innerText" }
}
}, this.app, this.css);
this.bindform.load();
}.bind(this), true);
}
this.loadOauthContent()
},
_beforeFormNodeSize: function () {
if (!this.isPlusOauthSize && this.oauthListNode) {
this.options.height = parseInt(this.options.height) + this.oauthArea.getSize().y;
this.isPlusOauthSize = true;
}
if (this.oauthListNode || (!this.captchaLogin && !this.bindLogin)) { //留高度给二维码
this.options.height = this.options.height - 60;
}
if (this.oauthListNode && this.captchaLogin) {
this.options.height = this.options.height + 60;
}
},
loadOauthContent: function () {
this.actions.listOauthServer(function (json) {
this.oauthList = json.data || [];
if (this.oauthList.length > 0) {
if (!this.oauthArea.getChildren().length) {
this.oauthListNode = new Element("div", { styles: this.css.oauthListNode }).inject(this.oauthArea);
}
this.oauthList.each(function (d) {
if (d.displayName === "@O2企业微信") {
d.qywx = true;
} else if (d.displayName === "@O2钉钉") {
d.dingding = true;
}
this.loadOauthItem(d);
}.bind(this));
}
}.bind(this), null, false);
},
loadOauthItem: function (data) {
var url = data.icon.indexOf("http") == 0 ? data.icon : ("data:image/png;base64," + data.icon);
var itemNode = new Element("div", {
styles: this.css.oauthItemNode,
events: {
click: function () {
var url = "../x_desktop/oauth.html?oauth=" + encodeURIComponent(this.name);
if (this.qywx) {
url += "&qywx=" + this.qywx;
}
if (this.dingding) {
url += "&dingding=" + this.dingding;
}
window.location = url;
}.bind(data)
}
}).inject(this.oauthListNode);
var iconNode = new Element("img", {
styles: this.css.oauthItemIconNode,
src: url
}).inject(itemNode);
var textNode = new Element("div", {
styles: this.css.oauthItemTextNode,
text: data.name
}).inject(itemNode);
},
showTwoFactorySendMsgArea: function (){
this.errorArea.empty();
["credentialTr","passwordTr","captchaTr", "forgetPasswordTr", "loginActionTr"].each(function (itemName){
var node = this.formTableArea.getElement("[item='"+itemName+"']");
if( node )node.setStyle("display", "none");
}.bind(this));
["codeTr","hideTwoFactorySendMsgTr","twoFactorloginStep2Tr"].each(function (itemName){
var node = this.formTableArea.getElement("[item='"+itemName+"']");
if( node )node.setStyle("display", "");
}.bind(this));
},
hideTwoFactorySendMsgArea: function (){
this.errorArea.empty();
if (this.captchaLogin) {
var captchaItem = this.form.getItem("captchaAnswer");
if (captchaItem){
captchaItem.setValue( this.lp.verificationCode );
this.setCaptchaPic();
}
}
var codeItem = this.form.getItem("codeAnswerWithTwoFactorlogin");
codeItem.options.notEmpty = false;
codeItem.setValue( this.lp.inputVerificationCode );
["credentialTr","passwordTr","captchaTr", "forgetPasswordTr", "loginActionTr"].each(function (itemName){
var node = this.formTableArea.getElement("[item='"+itemName+"']");
if( node )node.setStyle("display", "");
}.bind(this));
["codeTr","hideTwoFactorySendMsgTr","twoFactorloginStep2Tr"].each(function (itemName){
var node = this.formTableArea.getElement("[item='"+itemName+"']");
if( node )node.setStyle("display", "none");
}.bind(this));
},
showExampleArea: function () {
if (this.isHiddingExample || this.isShowingExample) return;
if (!this.isShowEnable) return;
this.isShowingExample = true;
var left = this.bindBodyArea.getPosition(this.bindBodyArea.getParent()).x;
var hideLeft = ((this.bindBodyArea.getParent().getSize().x) - 400) / 2;
this.intervalId = setInterval(function () {
if (left > hideLeft) {
this.bindBodyArea.setStyle("margin-left", (left - 5) + "px");
left = left - 5;
} else {
clearInterval(this.intervalId);
this.bindBodyArea.setStyle("width", "400px");
this.bindSepArea.setStyle("display", "");
this.bindExampleArea.setStyle("display", "");
this.isHidEnable = true;
this.isShowEnable = false;
this.isShowingExample = false;
}
}.bind(this), 10)
},
hideExampleArea: function () {
if (this.isShowingExample || this.isHiddingExample) return;
if (!this.isHidEnable) return;
this.isHiddingExample = true;
var left = this.bindBodyArea.getPosition(this.bindBodyArea.getParent()).x;
this.bindSepArea.setStyle("display", "none");
this.bindExampleArea.setStyle("display", "none");
var hideLeft = ((this.bindBodyArea.getParent().getSize().x) - 200) / 2;
this.intervalId2 = setInterval(function () {
if (left < hideLeft) {
this.bindBodyArea.setStyle("margin-left", (left + 5) + "px");
left = left + 5;
} else {
clearInterval(this.intervalId2);
this.bindBodyArea.setStyle("width", "204px");
this.isHidEnable = false;
this.isShowEnable = true;
this.isHiddingExample = false;
}
}.bind(this), 10)
},
showPasswordLogin: function () {
this.errorArea.empty();
this.loginType = "captcha";
this.form.getItem("passwordAction").setStyles(this.css.titleNode_active);
this.form.getItem("codeAction").setStyles(this.css.titleNode_normal);
this.formTableArea.getElement("[item='passwordTr']").setStyle("display", "");
var captchaTr = this.formTableArea.getElement("[item='captchaTr']");
if (captchaTr) captchaTr.setStyle("display", "");
this.formTableArea.getElement("[item='codeTr']").setStyle("display", "none");
},
showCodeLogin: function () {
this.errorArea.empty();
this.loginType = "code";
this.form.getItem("passwordAction").setStyles(this.css.titleNode_normal);
this.form.getItem("codeAction").setStyles(this.css.titleNode_active);
this.formTableArea.getElement("[item='passwordTr']").setStyle("display", "none");
var captchaTr = this.formTableArea.getElement("[item='captchaTr']");
if (captchaTr) captchaTr.setStyle("display", "none");
this.formTableArea.getElement("[item='codeTr']").setStyle("display", "");
},
showBindCodeLogin: function () {
this.errorArea.empty();
this.formTableContainer.setStyle("display", "none");
this.bindLoginContainer.setStyle("display", "");
this.bindLoginTipPic.setStyle("display", "none");
this.bindLoginAction.setStyle("display", "none");
this.backtoPasswordLoginTipPic.setStyle("display", "");
this.backtoPasswordLoginAction.setStyle("display", "");
this.checkBindStatus();
},
backtoPasswordLogin: function () {
this.errorArea.empty();
if (this.bindStatusInterval) clearInterval(this.bindStatusInterval);
this.formTableContainer.setStyle("display", "");
this.bindLoginContainer.setStyle("display", "none");
this.bindLoginTipPic.setStyle("display", "");
this.bindLoginAction.setStyle("display", "");
this.backtoPasswordLoginTipPic.setStyle("display", "none");
this.backtoPasswordLoginAction.setStyle("display", "none");
},
setBindPic: function () {
this.bindPicArea.empty();
this.actions.getLoginBind(function (json) {
this.bindMeta = json.data.meta;
new Element("img", {
src: "data:image/png;base64," + json.data.image
}).inject(this.bindPicArea);
}.bind(this))
},
setCaptchaPic: function () {
if (!this.captchaLogin) return;
var captchaPic = this.formTableArea.getElement("[item='captchaPic']");
captchaPic.empty();
this.actions.getLoginCaptcha(120, 50, function (json) {
this.captcha = json.data.id;
new Element("img", {
src: "data:image/png;base64," + json.data.image,
styles: this.css.verificationImage
}).inject(captchaPic);
}.bind(this), null, true, null, false)
},
sendVerificationAction: function () {
var flag = true;
var credentialItem = this.form.getItem("credential");
var credential = credentialItem.getValue();
if (!credential || credential.trim() === "") {
credentialItem.setWarning(this.lp.inputYourUserName, "empty");
return;
} else {
// this.actions.checkCredential(credential, function (json) {
// if (!json.data.value) {
// flag = false;
// credentialItem.setWarning(this.lp.userNotExist, "invalid");
// }
// }.bind(this), function (errorObj) {
// flag = false;
// var error = JSON.parse(errorObj.responseText);
// credentialItem.setWarning(error.message, "invalid");
// }.bind(this), false)
}
if (!flag) {
return;
} else {
credentialItem.clearWarning("invalid");
}
this.actions.createCredentialCode(credential, function (json) {
}, function (errorObj) {
var error = JSON.parse(errorObj.responseText);
var codeAnswerItem = this.form.getItem("codeAnswer");
if(codeAnswerItem){
codeAnswerItem.clearWarning("empty");
}
this.setWarning(error.message);
flag = false
}.bind(this));
if (!flag) {
return;
} else {
this.errorArea.empty();
}
this.form.getItem("verificationAction").container.setStyle("display", "none");
this.setResendVerification();
},
setResendVerification: function () {
var resendItem = this.form.getItem("resendVerificationAction");
resendItem.container.setStyle("display", "");
this.resendElement = resendItem.getElements()[0];
this.resendElement.set("text", this.lp.resendVerification + "(60)");
var i = 60;
this.timer = setInterval(function () {
if (i > 0) {
this.resendElement.set("text", this.lp.resendVerification + "(" + --i + ")")
} else {
this.form.getItem("verificationAction").container.setStyle("display", "");
resendItem.container.setStyle("display", "none");
clearInterval(this.timer)
}
}.bind(this), 1000)
},
gotoSignup: function () {
this.explorer.openSignUpForm();
//this.explorer.openResetPasswordForm();
this.close();
},
gotoResetPassword: function () {
this.explorer.openResetPasswordForm();
this.close();
},
gotoChangePassword : function( options ){ //密码过期
this.explorer.openChangePasswordForm( options, function(){
this.explorer.loadLogin();
}.bind(this));
this.close();
},
checkBindStatus: function () {
this.bindStatusInterval = setInterval(function () {
this.actions.checkBindStatus(this.bindMeta, function (json) {
if (json.data) {
if (json.data.name && json.data.name !== "anonymous") {
this.fireEvent("queryOk");
this._close();
if (this.formMaskNode) this.formMaskNode.destroy();
this.formAreaNode.destroy();
if (this.explorer && this.explorer.view) this.explorer.view.reload();
if (this.app) this.app.notice(this.lp.loginSuccess, "success");
this.fireEvent("postOk", json);
}
}
}.bind(this), function (errorObj) {
var error = JSON.parse( errorObj.responseText );
if (this.app) {
this.app.notice(error.message, "error");
}else{
this.setBindWarning( error.message );
}
}.bind(this))
}.bind(this), 3000);
},
_close: function () {
if (this.bindStatusInterval) clearInterval(this.bindStatusInterval);
if (this.timer) clearInterval(this.timer);
},
ok: function () {
this.fireEvent("queryOk");
this.errorArea.empty();
var captchaItem = null;
var codeItem = null;
if (this.loginType === "captcha") {
this.form.getItem("password").options.notEmpty = true;
if (this.captchaLogin) {
captchaItem = this.form.getItem("captchaAnswer");
if (captchaItem) captchaItem.options.notEmpty = true;
}
codeItem = this.form.getItem("codeAnswer");
if (codeItem) codeItem.options.notEmpty = false;
} else if (this.loginType === "code") {
this.form.getItem("password").options.notEmpty = false;
if (this.captchaLogin) {
captchaItem = this.form.getItem("captchaAnswer");
if (captchaItem) captchaItem.options.notEmpty = false;
}
codeItem = this.form.getItem("codeAnswer");
if (codeItem) codeItem.options.notEmpty = true;
}
var data = this.form.getResult(true, ",", true, false, true);
if (data) {
this._ok(data, function (json) {
this.afterLogin( json );
}.bind(this));
}
},
afterLogin: function (json) {
if (json.type === "error") {
if (this.app) this.app.notice(json.message, "error");
} else if( json.data.passwordExpired ){ //密码过期
var userName = json.data.distinguishedName;
this.explorer.logout( function(){ //注销再到密码修改页
this.gotoChangePassword({
userName : userName
});
}.bind(this))
} else {
this._close();
if (this.formMaskNode) this.formMaskNode.destroy();
this.formAreaNode.destroy();
if (this.explorer && this.explorer.view) this.explorer.view.reload();
if (this.app) this.app.notice(this.lp.loginSuccess, "success");
this.fireEvent("postOk", json);
}
},
doTwoFactorlogin: function (){
var codeItem = this.form.getItem("codeAnswerWithTwoFactorlogin");
codeItem.options.notEmpty = true;
if ( codeItem.verify(true) ) {
var d = {
credential: this.captchaLoginData.credential,
codeAnswer: codeItem.getValue()
};
this.actions.loginByCode(d, function (json) {
codeItem.options.notEmpty = false;
this.afterLogin(json);
}.bind(this), function (errorObj) {
codeItem.options.notEmpty = false;
var error = JSON.parse(errorObj.responseText);
this.setWarning(error.message);
}.bind(this));
}
},
setWarning: function (text) {
this.errorArea.empty();
new Element("div", {
"text": text,
"styles": this.css.warningMessageNode
}).inject(this.errorArea);
},
setBindWarning: function (text) {
if( this.bindErrorArea ){
this.bindErrorArea.empty();
new Element("div", {
"text": text,
"styles": this.css.warningMessageNode
}).inject(this.bindErrorArea);
}
},
_ok: function (data, callback) {
var d = null;
if (this.loginType === "captcha") {
d = {
credential: data.credential,
password: data.password
};
if (this.captchaLogin) {
d.captchaAnswer = data.captchaAnswer;
d.captcha = this.captcha;
}
if( this.twoFactorLogin ){
this.captchaLoginData = d;
this.actions.loginByTwoFactor(d, function (json){
if( json.data.passwordExpired ){ //密码过期
//var userName = json.data.distinguishedName;
this.gotoChangePassword({
userName : d.credential,
oldPassword: d.password
});
}else{
this.showTwoFactorySendMsgArea();
}
}.bind(this), function (errorObj) {
var error = JSON.parse(errorObj.responseText);
this.setWarning(error.message);
this.setCaptchaPic();
if (this.form.getItem("captchaAnswer")) this.form.getItem("captchaAnswer").setValue("");
}.bind(this));
}else{
this.actions.loginByCaptcha(d, function (json) {
if (callback) callback(json);
//this.fireEvent("postOk")
}.bind(this), function (errorObj) {
var error = JSON.parse(errorObj.responseText);
this.setWarning(error.message);
this.setCaptchaPic();
if (this.form.getItem("captchaAnswer")) this.form.getItem("captchaAnswer").setValue("");
}.bind(this));
}
} else if (this.loginType === "code") {
d = {
credential: data.credential,
codeAnswer: data.codeAnswer
};
this.actions.loginByCode(d, function (json) {
if (callback) callback(json);
//this.fireEvent("postOk")
}.bind(this), function (errorObj) {
var error = JSON.parse(errorObj.responseText);
this.setWarning(error.message);
}.bind(this));
}
}
});
MWF.xDesktop.Authentication.SignUpForm = new Class({
Extends: MPopupForm,
Implements: [Options, Events],
options: {
"style": "default",
"popupStyle": "o2platformSignup",
"width": "910",
"height": "740",
"hasTop": true,
"hasIcon": false,
"hasTopIcon": true,
"hasTopContent": true,
"hasBottom": false,
"title": "",
"draggable": true,
"closeAction": true
},
load: function () {
if (!this.options.title) this.setOptions({
"title": MWF.LP.authentication.SignUpFormTitle
});
this._loadCss();
},
_createTableContent: function () {
if( this.formTopTextNode && this.formTopCloseActionNode ){
this.formTopCloseActionNode.inject( this.formTopTextNode, "before" )
}
var self = this;
this.actions = MWF.Actions.get("x_organization_assemble_personal");
var signUpMode = "code";
this.actions.getRegisterMode(function (json) {
signUpMode = json.data.value;
}.bind(this), null, false);
this.formTopNode.setStyle("height","50px");
this.formTableContainer.setStyles({
"width": "890px",
"margin-top": "40px"
});
var html = "
" +
" | " +
" " +
" " +
" | " +
" |
" +
" | " +
" " +
" " +
" | " +
" |
" +
" | " +
" " +
" " +
" | " +
" |
" +
" | " +
" | " +
" |
" +
" | " +
" " +
" " +
" | " +
" |
" +
" | " +
" " +
" " +
" | " +
" |
";
if (signUpMode === "code") {
html += " | " +
" " +
" " +
" " +
" " +
" | " +
" |
";
} else {
html += " | " +
" " +
" " +
" " +
" " +
" | " +
" |
";
}
html += " | " +
" | " +
" |
" +
" | " +
" | " +
" |
" +
"
";
this.formTableArea.set("html", html);
if (signUpMode === "captcha") {
this.setCaptchaPic();
}
//this.createPasswordStrengthNode();
MWF.xDesktop.requireApp("Template", "MForm", function () {
this.form = new MForm(this.formTableArea, this.data, {
style: this.options.popupStyle,
verifyType: "batchSingle", //batch一起校验,或alert弹出
isEdited: this.isEdited || this.isNew,
onPostLoad: function () {
var form = this.form;
var table = this.formTableArea;
form.getItem("name").tipNode = table.getElement("[item='nameTip']");
form.getItem("password").tipNode = table.getElement("[item='passwordTip']");
form.getItem("confirmPassword").tipNode = table.getElement("[item='confirmPasswordTip']");
form.getItem("mail").tipNode = table.getElement("[item='mailTip']");
form.getItem("genderType").tipNode = table.getElement("[item='genderTypeTip']");
form.getItem("mobile").tipNode = table.getElement("[item='mobileTip']");
this.tipNode = table.getElement("[item='signUpTip']");
var captchaAnswer = form.getItem("captchaAnswer");
if (captchaAnswer) {
form.getItem("captchaAnswer").tipNode = table.getElement("[item='captchaAnswerTip']");
}
var codeAnswer = form.getItem("codeAnswer");
if (codeAnswer) {
form.getItem("codeAnswer").tipNode = table.getElement("[item='verificationCodeTip']");
}
}.bind(this),
itemTemplate: {
name: {
text: this.lp.userName, defaultValue: this.lp.userName, className: "inputUser",
notEmpty: true, defaultValueAsEmpty: true, emptyTip: this.lp.inputYourUserName,
validRule: { isInvalid: function (value, it) { return this.checkUserName(value, it); }.bind(this) },
validMessage: { isInvalid: this.lp.userExist },
event: {
focus: function (it) { if (this.lp.userName === it.getValue()) it.setValue(""); if (!it.warningStatus) it.getElements()[0].setStyles(this.css.inputActive); }.bind(this),
keyup: function (it, ev) { if (ev.event.keyCode === 13) { this.ok() } }.bind(this),
blur: function (it) {
if (it.verify(true)) {
if (!it.warningStatus) it.getElements()[0].setStyles(this.css.inputUser);
}
}.bind(this)
}, onEmpty: function (it) {
it.getElements()[0].setStyles(this.css.inputEmpty);
}.bind(this), onUnempty: function (it) {
it.getElements()[0].setStyles(this.css.inputUser);
}.bind(this)
},
password: {
text: this.lp.password, type: "password", className: "inputPassword",
notEmpty: true, defaultValueAsEmpty: true, emptyTip: this.lp.inputYourPassword,
validRule: {
passwordIsWeak: function (value, it) {
return !this.getPasswordRule(it.getValue());
}.bind(this)
},
validMessage: {
passwordIsWeak: function () {
return self.getPasswordRule(this.getValue());
}
}, //this.lp.passwordIsSimple
event: {
focus: function (it) { if ("password" === it.getValue()) it.setValue(""); if (!it.warningStatus) it.getElements()[0].setStyles(this.css.inputActive); }.bind(this),
//keyup : function(it){ this.pwStrength(it.getValue()) }.bind(this),
blur: function (it) { it.verify(true) }.bind(this)
}, onEmpty: function (it) {
it.getElements()[0].setStyles(this.css.inputEmpty);
}.bind(this), onUnempty: function (it) {
it.getElements()[0].setStyles(this.css.inputPassword);
}.bind(this)
},
confirmPassword: {
text: this.lp.confirmPassword, type: "password", className: "inputComfirmPassword",
notEmpty: true, defaultValueAsEmpty: true, emptyTip: this.lp.inputComfirmPassword,
validRule: {
passwordNotEqual: function (value, it) {
if (it.getValue() === this.form.getItem("password").getValue()) return true;
}.bind(this)
},
validMessage: { passwordNotEqual: this.lp.passwordNotEqual },
event: {
focus: function (it) { if ("password" === it.getValue()) it.setValue(""); if (!it.warningStatus) it.getElements()[0].setStyles(this.css.inputActive); }.bind(this),
keyup: function (it, ev) { if (ev.event.keyCode === 13) { this.ok() } }.bind(this),
blur: function (it) {
if (it.verify(true)) {
if (!it.warningStatus) it.getElements()[0].setStyles(this.css.inputComfirmPassword);
}
}.bind(this)
}, onEmpty: function (it) {
it.getElements()[0].setStyles(this.css.inputEmpty);
}.bind(this), onUnempty: function (it) {
it.getElements()[0].setStyles(this.css.inputComfirmPassword);
}.bind(this)
},
mail: {
text: this.lp.mail, defaultValue: this.lp.inputYourMail, className: "inputMail",
notEmpty: false, defaultValueAsEmpty: true, emptyTip: this.lp.inputYourMail,
validRule: { isFormatInvalid: function (value, it) {
if( (!value || value===this.lp.inputYourMail) ||
/^[a-zA-Z0-9.!#$%&'*+\/=?^_`{|}~-]+@[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)*$/.test( value ) ){
it.tipNode.empty();
it.warningStatus = false;
return true;
}else{
it.warningStatus = true;
return false;
}
}.bind(this) },
validMessage: { isFormatInvalid: this.lp.mailFormatError },
event: { //validRule: { email: false },
focus: function (it) {
if (this.lp.inputYourMail === it.getValue()) it.setValue("");
if (!it.warningStatus) it.getElements()[0].setStyles(this.css.inputActive);
}.bind(this),
blur: function (it) {
it.verify(true);
if (!it.warningStatus) it.getElements()[0].setStyles(this.css.inputMail);
}.bind(this),
keyup: function (it, ev) { if (ev.event.keyCode === 13) { this.ok() } }.bind(this)
}, onEmpty: function (it) {
// it.getElements()[0].setStyles(this.css.inputEmpty);
}.bind(this), onUnempty: function (it) {
// it.getElements()[0].setStyles(this.css.inputMail);
}.bind(this)
},
genderType: {
text: this.lp.genderType, className: "inputGenderType", type: "select", selectValue: this.lp.genderTypeValue.split(","), selectText: this.lp.genderTypeText.split(","),
notEmpty: true, emptyTip: this.lp.selectGenderType, event: {
focus: function (it) { if (!it.warningStatus) it.getElements()[0].setStyles(this.css.inputActive); }.bind(this),
blur: function (it) { it.verify(true); if (!it.warningStatus) it.getElements()[0].setStyles(this.css.inputGenderType); }.bind(this),
keyup: function (it, ev) { if (ev.event.keyCode === 13) { this.ok() } }.bind(this)
}, onEmpty: function (it) {
it.getElements()[0].setStyles(this.css.inputEmpty);
}.bind(this), onUnempty: function (it) {
it.getElements()[0].setStyles(this.css.inputGenderType);
}.bind(this)
},
mobile: {
text: this.lp.mobile, defaultValue: this.lp.inputYourMobile, className: "inputMobile", tType: "number",
notEmpty: true, defaultValueAsEmpty: true, emptyTip: this.lp.inputYourMobile,
validRule: { isInvalid: function (value, it) { return this.checkMobile(value, it); }.bind(this) },
validMessage: { isInvalid: this.lp.mobileIsRegisted },
event: {
focus: function (it) { if (this.lp.inputYourMobile === it.getValue()) it.setValue(""); if (!it.warningStatus) it.getElements()[0].setStyles(this.css.inputActive); }.bind(this),
keyup: function (it, ev) { if (ev.event.keyCode === 13) { this.ok() } }.bind(this),
blur: function (it) {
if (it.verify(true)) {
if (!it.warningStatus) it.getElements()[0].setStyles(this.css.inputMobile);
}
}.bind(this)
}, onEmpty: function (it) {
it.getElements()[0].setStyles(this.css.inputEmpty);
}.bind(this), onUnempty: function (it) {
it.getElements()[0].setStyles(this.css.inputMobile);
}.bind(this)
},
captchaAnswer: {
tType: "number", text: this.lp.verificationCode, defaultValue: this.lp.verificationCode, className: "inputVerificationCode",
notEmpty: true, defaultValueAsEmpty: true, emptyTip: this.lp.inputPicVerificationCode, event: {
focus: function (it) { if (this.lp.verificationCode === it.getValue()) it.setValue(""); if (!it.warningStatus) it.getElements()[0].setStyles(this.css.inputActive); }.bind(this),
blur: function (it) { it.verify(true); if (!it.warningStatus) it.getElements()[0].setStyles(this.css.inputVerificationCode); }.bind(this),
keyup: function (it, ev) { if (ev.event.keyCode === 13) { this.ok() } }.bind(this)
}, onEmpty: function (it) {
it.getElements()[0].setStyles(this.css.inputEmpty);
}.bind(this), onUnempty: function (it) {
it.getElements()[0].setStyles(this.css.inputVerificationCode);
}.bind(this)
},
changeCaptchaAction: {
value: this.lp.changeVerification, type: "innerText", className: "verificationChange", event: {
click: function () {
this.setCaptchaPic();
}.bind(this)
}
},
codeAnswer: {
text: this.lp.verificationCode, defaultValue: this.lp.inputVerificationCode, className: "inputVerificationCode2",
notEmpty: true, defaultValueAsEmpty: true, emptyTip: this.lp.inputVerificationCode, event: {
focus: function (it) { if (this.lp.inputVerificationCode === it.getValue()) it.setValue(""); if (!it.warningStatus) it.getElements()[0].setStyles(this.css.inputActive); }.bind(this),
blur: function (it) { it.verify(true); if (!it.warningStatus) it.getElements()[0].setStyles(this.css.inputVerificationCode2); }.bind(this),
keyup: function (it, ev) { if (ev.event.keyCode === 13) { this.ok() } }.bind(this)
}, onEmpty: function (it) {
it.getElements()[0].setStyles(this.css.inputEmpty);
}.bind(this), onUnempty: function (it) {
it.getElements()[0].setStyles(this.css.inputVerificationCode2);
}.bind(this)
},
verificationAction: {
value: this.lp.sendVerification, type: "button", className: "inputSendVerification", event: {
click: function () { this.sendVerificationAction() }.bind(this)
}
},
resendVerificationAction: { value: this.lp.resendVerification, type: "button", className: "inputResendVerification" },
signUpAction: {
value: this.lp.signUp, type: "button", className: "inputSignUp", event: {
click: function () { this.ok() }.bind(this)
}
},
hasAccountArea: { value: this.lp.hasAccount, type: "innerText", className: "hasCountArea" },
gotoLoginAction: {
value: this.lp.gotoLogin, type: "innerText", className: "gotoLoginAction", event: {
click: function () { this.gotoLogin() }.bind(this)
}
}
}
}, this.app, this.css);
this.form.load();
}.bind(this), true);
},
checkMobile: function (mobile, it) {
var flag = true;
this.actions.checkRegisterMobile(mobile, function () {
flag = true
}.bind(this), function (errorObj) {
if (errorObj.status === 404) {
it.options.validMessage.isInvalid = this.lp.pageNotFound;
flag = false;
} else {
var error = JSON.parse(errorObj.responseText);
it.options.validMessage.isInvalid = error.message;
flag = false;
}
}.bind(this), false);
return flag;
},
checkUserName: function (userName, it) {
var flag = true;
this.actions.checkRegisterName(userName, function () {
flag = true
}.bind(this), function (errorObj) {
if (errorObj.status === 404) {
it.options.validMessage.isInvalid = this.lp.pageNotFound;
flag = false
} else {
var error = JSON.parse(errorObj.responseText);
it.options.validMessage.isInvalid = error.message;
flag = false
}
}.bind(this), false);
return flag;
},
setCaptchaPic: function () {
var captchaPic = this.formTableArea.getElement("[item='captchaPic']");
captchaPic.empty();
this.actions.getRegisterCaptcha(120, 50, function (json) {
this.captcha = json.data.id;
new Element("img", {
src: "data:image/png;base64," + json.data.image,
styles: this.css.verificationImage
}).inject(captchaPic);
}.bind(this))
},
sendVerificationAction: function () {
var flag = true;
var it = this.form.getItem("mobile");
if (it.verify(true)) {
it.clearWarning();
it.getElements()[0].setStyles(this.css.inputMobile);
} else {
return;
}
this.actions.createRegisterCode(it.getValue(), function (json) {
}, function (errorObj) {
var codeIt = this.form.getItem("codeAnswer");
var error = JSON.parse(errorObj.responseText);
if (errorObj.status === 404) {
codeIt.setWarning(error.message, this.lp.pageNotFound);
flag = false;
} else {
codeIt.setWarning(error.message, "invalid");
flag = false;
}
}.bind(this), false);
if (!flag) return false;
this.form.getItem("verificationAction").container.setStyle("display", "none");
this.setResendVerification();
},
setResendVerification: function () {
var resendItem = this.form.getItem("resendVerificationAction");
resendItem.container.setStyle("display", "");
this.resendElement = resendItem.getElements()[0];
this.resendElement.set("text", this.lp.resendVerification + "(60)");
var i = 60;
this.timer = setInterval(function () {
if (i > 0) {
this.resendElement.set("text", this.lp.resendVerification + "(" + --i + ")")
} else {
this.form.getItem("verificationAction").container.setStyle("display", "");
resendItem.container.setStyle("display", "none");
clearInterval(this.timer)
}
}.bind(this), 1000)
},
getPasswordRule: function (password) {
var str = "";
this.actions.checkRegisterPassword(password, function (json) {
str = json.data.value || "";
}.bind(this), null, false);
return str;
},
//createPasswordStrengthNode : function(){
// var passwordStrengthArea = this.formTableArea.getElement("[item='passwordStrengthArea']");
//
// var lowNode = new Element( "div", {styles : this.css.passwordStrengthNode }).inject( passwordStrengthArea );
// this.lowColorNode = new Element( "div", {styles : this.css.passwordStrengthColor }).inject( lowNode );
// this.lowTextNode = new Element( "div", {styles : this.css.passwordStrengthText, text : this.lp.weak }).inject( lowNode );
//
// var middleNode = new Element( "div" , {styles : this.css.passwordStrengthNode }).inject( passwordStrengthArea );
// this.middleColorNode = new Element( "div", {styles : this.css.passwordStrengthColor }).inject( middleNode );
// this.middleTextNode = new Element( "div", {styles : this.css.passwordStrengthText, text : this.lp.middle }).inject( middleNode );
//
// var highNode = new Element("div", {styles : this.css.passwordStrengthNode }).inject( passwordStrengthArea );
// this.highColorNode = new Element( "div", {styles : this.css.passwordStrengthColor }).inject( highNode );
// this.highTextNode = new Element( "div", {styles : this.css.passwordStrengthText, text : this.lp.high }).inject( highNode );
//},
//getPasswordLevel: function( password ){
// // Level(级别)
// // •0-3 : [easy]
// // •4-6 : [midium]
// // •7-9 : [strong]
// // •10-12 : [very strong]
// // •>12 : [extremely strong]
// var level = 0;
// this.actions.checkRegisterPassword( password, function( json ){
// level = json.data.value;
// }.bind(this), null, false );
// return level;
//},
//pwStrength: function(pwd){
// this.lowColorNode.setStyles( this.css.passwordStrengthColor );
// this.lowTextNode.setStyles( this.css.passwordStrengthText );
// this.middleColorNode.setStyles( this.css.passwordStrengthColor );
// this.middleTextNode.setStyles( this.css.passwordStrengthText );
// this.highColorNode.setStyles( this.css.passwordStrengthColor );
// this.highTextNode.setStyles( this.css.passwordStrengthText );
// if (!pwd){
// }else{
// //var level = this.checkStrong(pwd);
// var level = this.getPasswordLevel(pwd);
// switch(level) {
// case 0:
// case 1:
// case 2:
// case 3:
// this.lowColorNode.setStyles( this.css.passwordStrengthColor_low );
// this.lowTextNode.setStyles( this.css.passwordStrengthText_current );
// break;
// case 4:
// case 5:
// case 6:
// this.middleColorNode.setStyles( this.css.passwordStrengthColor_middle );
// this.middleTextNode.setStyles( this.css.passwordStrengthText_current );
// break;
// default:
// this.highColorNode.setStyles( this.css.passwordStrengthColor_high );
// this.highTextNode.setStyles( this.css.passwordStrengthText_current );
// }
// }
//},
gotoLogin: function () {
this.explorer.openLoginForm({}, function () { window.location.reload(); });
this.close();
},
setWarning: function (text) {
this.tipNode.empty();
new Element("div", {
"text": text,
"styles": this.css.warningMessageNode
}).inject(this.tipNode);
},
setNotice: function (text) {
this.tipNode.empty();
new Element("div", {
"text": text,
"styles": this.css.noticeMessageNode
}).inject(this.tipNode);
},
ok: function () {
this.tipNode.empty();
this.fireEvent("queryOk");
var data = this.form.getResult(true, ",", true, false, true);
if (data) {
this._ok(data, function (json) {
if (json.type === "error") {
if (this.app) this.app.notice(json.message, "error");
} else {
if (this.formMaskNode) this.formMaskNode.destroy();
this.formAreaNode.destroy();
this.setNotice(this.lp.registeSuccess);
if (this.app) this.app.notice(this.lp.registeSuccess, "success");
this.fireEvent("postOk", json);
this.gotoLogin();
}
}.bind(this))
}
},
_ok: function (data, callback) {
data.captcha = this.captcha;
this.actions.register(data, function (json) {
if (callback) callback(json);
}.bind(this), function (errorObj) {
if (errorObj.status === 404) {
this.setWarning(this.lp.pageNotFound);
} else {
var error = JSON.parse(errorObj.responseText);
this.setWarning(error.message);
}
}.bind(this));
}
});
//忘记密码
MWF.xDesktop.Authentication.ResetPasswordForm = new Class({
Extends: MPopupForm,
Implements: [Options, Events],
options: {
"style": "default",
"popupStyle": "o2platformSignup",
"width": "710",
"height": "450",
"hasTop": true,
"hasIcon": false,
"hasTopIcon": true,
"hasTopContent": true,
"hasBottom": false,
"title": "",
"draggable": true,
"closeAction": true
},
load: function () {
if (!this.options.title) this.setOptions({
"title": MWF.LP.authentication.ResetPasswordFormTitle
});
this._loadCss();
},
_createTopContent: function () {
this.actions = MWF.Actions.get("x_organization_assemble_personal");
this.actions.getRegisterMode(function (json) {
this.signUpMode = json.data.value;
}.bind(this), null, false);
if (this.signUpMode && this.signUpMode !== "disable") {
this.gotoSignupNode = new Element("div", {
styles: this.css.formTopContentCustomNode,
text: this.lp.signUp
}).inject(this.formTopContentNode);
this.gotoSignupNode.addEvent("click", function () { this.gotoSignup() }.bind(this));
new Element("div", { styles: this.css.formTopContentSepNode }).inject(this.formTopContentNode);
}
this.gotoLoginNode = new Element("div", {
styles: this.css.formTopContentCustomNode,
text: this.lp.loginAction
}).inject(this.formTopContentNode);
this.gotoLoginNode.addEvent("click", function () { this.gotoLogin() }.bind(this));
},
_createTableContent: function () {
if( this.formTopTextNode && this.formTopCloseActionNode ){
this.formTopCloseActionNode.inject( this.formTopTextNode, "before" )
}
this.formTableContainer.setStyles(this.css.formTableContainer2);
this.loadSteps();
this.loadStepForm_1();
this.loadStepForm_2();
this.loadStepForm_3();
},
reset: function () {
this.formTableArea.empty();
this._createTableContent();
},
loadSteps: function () {
var stepsContainer = new Element("div", { styles: this.css.stepsContainer }).inject(this.formTableArea);
this.step_1 = new Element("div", {
styles: this.css.step_1_active,
text: this.lp.shotMessageCheck
}).inject(stepsContainer);
this.stepLink_1 = new Element("div", { styles: this.css.stepLink_1 }).inject(this.step_1);
this.step_2 = new Element("div", {
styles: this.css.step_2,
text: this.lp.setMewPassword
}).inject(stepsContainer);
this.stepLink_2 = new Element("div", { styles: this.css.stepLink_2 }).inject(this.step_2);
this.step_3 = new Element("div", {
styles: this.css.step_3,
text: this.lp.completed
}).inject(stepsContainer);
},
loadStepForm_1: function () {
var html = "
" +
" | " +
" " +
" " +
" | " +
"
" +
" | " +
" " +
" " +
" " +
" | " +
"
" +
" | " +
" |
" +
"
";
this.stepNode_1 = new Element("div", { html: html, styles: { display: "" } }).inject(this.formTableArea);
MWF.xDesktop.requireApp("Template", "MForm", function () {
this.stepForm_1 = new MForm(this.stepNode_1, {}, {
style: this.options.popupStyle,
verifyType: "single", //batch一起校验,或alert弹出
isEdited: this.isEdited || this.isNew,
itemTemplate: {
name: {
text: this.lp.userName, defaultValue: this.lp.userName, className: "inputUser",
notEmpty: true, defaultValueAsEmpty: true, emptyTip: this.lp.inputYourUserName,
// validRule: { isInvalid: function (value, it) { return this.checkUserName(value, it); }.bind(this) },
// validMessage: { isInvalid: this.lp.userNotExist },
event: {
focus: function (it) { if (this.lp.userName === it.getValue()) it.setValue(""); if (!it.warningStatus) it.getElements()[0].setStyles(this.css.inputActive); }.bind(this),
blur: function (it) { if (it.getValue() === "") it.setValue(this.lp.userName); if (!it.warningStatus) it.getElements()[0].setStyles(this.css.inputUser); }.bind(this),
keyup: function (it, ev) { if (ev.event.keyCode === 13) { this.gotoStep(2) } }.bind(this)
}, onEmpty: function (it) {
it.getElements()[0].setStyles(this.css.inputEmpty);
}.bind(this), onUnempty: function (it) {
it.getElements()[0].setStyles(this.css.inputUser);
}.bind(this)
},
codeAnswer: {
text: this.lp.verificationCode, defaultValue: this.lp.inputVerificationCode, className: "inputVerificationCode2",
notEmpty: true, defaultValueAsEmpty: true, emptyTip: this.lp.inputVerificationCode, event: {
focus: function (it) { if (this.lp.inputVerificationCode === it.getValue()) it.setValue(""); if (!it.warningStatus) it.getElements()[0].setStyles(this.css.inputActive); }.bind(this),
blur: function (it) {
if (it.getValue() === "") it.setValue(this.lp.inputVerificationCode);
if (!it.warningStatus) it.getElements()[0].setStyles(this.css.inputVerificationCode2);
}.bind(this),
keyup: function (it, ev) { if (ev.event.keyCode === 13) { this.gotoStep(2) } }.bind(this)
}, onEmpty: function (it) {
it.getElements()[0].setStyles(this.css.inputEmpty);
}.bind(this), onUnempty: function (it) {
it.getElements()[0].setStyles(this.css.inputVerificationCode2);
}.bind(this)
},
verificationAction: {
value: this.lp.sendVerification, type: "button", className: "inputSendVerification", event: {
click: function () { this.sendVerificationAction() }.bind(this)
}
},
resendVerificationAction: { value: this.lp.resendVerification, type: "button", className: "inputResendVerification" },
nextStep: {
value: this.lp.nextStep, type: "button", className: "inputSignUp", event: {
click: function () { this.gotoStep(2) }.bind(this)
}
}
}
}, this.app, this.css);
this.stepForm_1.load();
}.bind(this), true);
},
loadStepForm_2: function () {
var self = this;
html = "
" +
" | " +
" " +
" " +
" | " +
" |
" +
" | " +
" " +
" " +
" | " +
" |
" +
" | " +
" | " +
" |
" +
"
";
this.stepNode_2 = new Element("div", {
html: html,
styles: { "display": "none" }
}).inject(this.formTableArea);
MWF.xDesktop.requireApp("Template", "MForm", function () {
this.stepForm_2 = new MForm(this.stepNode_2, {}, {
style: this.options.popupStyle,
verifyType: "single", //batch一起校验,或alert弹出
isEdited: this.isEdited || this.isNew,
itemTemplate: {
password: {
text: this.lp.setNewPassword, type: "password", className: "inputPassword",
notEmpty: true, defaultValueAsEmpty: true, emptyTip: this.lp.inputYourPassword,
attr: { "placeholder": this.lp.inputYourPassword },
validRule: {
passwordIsWeak: function (value, it) {
return !this.getPasswordRule(it.getValue());
}.bind(this)
},
validMessage: {
passwordIsWeak: function () {
return self.getPasswordRule(this.getValue());
}
},
event: {
focus: function (it) { if ("password" === it.getValue()) it.setValue(""); if (!it.warningStatus) it.getElements()[0].setStyles(this.css.inputActive); }.bind(this),
blur: function (it) { it.verify(true); }.bind(this)
//if( !it.warningStatus )it.getElements()[0].setStyles( this.css.inputPassword );
//keyup : function(it){ this.pwStrength(it.getValue()) }.bind(this)
}, onEmpty: function (it) {
it.getElements()[0].setStyles(this.css.inputEmpty);
}.bind(this), onUnempty: function (it) {
it.getElements()[0].setStyles(this.css.inputPassword);
}.bind(this)
},
confirmPassword: {
text: this.lp.confirmNewPassword, type: "password", className: "inputComfirmPassword",
notEmpty: true, defaultValueAsEmpty: true, emptyTip: this.lp.inputComfirmPassword,
attr: { "placeholder": this.lp.inputComfirmPassword },
validRule: {
passwordNotEqual: function (value, it) {
if (it.getValue() === this.stepForm_2.getItem("password").getValue()) return true;
}.bind(this)
},
validMessage: { passwordNotEqual: this.lp.passwordNotEqual },
event: {
focus: function (it) { if ("password" === it.getValue()) it.setValue(""); if (!it.warningStatus) it.getElements()[0].setStyles(this.css.inputActive); }.bind(this),
blur: function (it) { if (!it.warningStatus) it.getElements()[0].setStyles(this.css.inputComfirmPassword); }.bind(this),
keyup: function (it, ev) { if (ev.event.keyCode === 13) { this.gotoStep(3) } }.bind(this)
}, onEmpty: function (it) {
it.getElements()[0].setStyles(this.css.inputEmpty);
}.bind(this), onUnempty: function (it) {
it.getElements()[0].setStyles(this.css.inputComfirmPassword);
}.bind(this)
},
nextStep: {
value: this.lp.nextStep, type: "button", className: "inputSignUp", event: {
click: function () { this.gotoStep(3) }.bind(this)
}
}
}
}, this.app, this.css);
this.stepForm_2.load();
}.bind(this), true);
//this.createPasswordStrengthNode();
},
loadStepForm_3: function () {
this.stepNode_3 = new Element("div", {
styles: this.css.stepFormResult
}).inject(this.formTableArea);
},
createSetForm_3: function (isSuccess, text) {
var area = null;
var action = null;
if (isSuccess) {
this.stepNode_3.setStyles(this.css.stepFormResult);
this.stepNode_3.setStyle("display", "");
new Element("div", {
styles: this.css.resetPasswordSuccess,
text: this.lp.resetPasswordSuccess
}).inject(this.stepNode_3);
area = new Element("div", {
styles: this.css.resetPasswordResultArea
}).inject(this.stepNode_3);
new Element("div", {
styles: this.css.resetPasswordResultWord,
text: this.lp.resetPasswordSuccessWord
}).inject(area);
action = new Element("div", {
styles: this.css.resetPasswordResultAction,
text: this.lp.gotoLogin
}).inject(area);
action.addEvent("click", function () { this.gotoLogin() }.bind(this));
} else {
this.stepNode_3.setStyles(this.css.stepFormResult_fail);
this.stepNode_3.setStyle("display", "");
new Element("div", {
styles: this.css.resetPasswordFail,
text: text + this.lp.resetPasswordFail
}).inject(this.stepNode_3);
area = new Element("div", {
styles: this.css.resetPasswordResultArea
}).inject(this.stepNode_3);
new Element("div", {
styles: this.css.resetPasswordResultWord,
text: this.lp.resetPasswordFailWord
}).inject(area);
action = new Element("div", {
styles: this.css.resetPasswordResultAction,
text: this.lp.backtoModify
}).inject(area);
action.addEvent("click", function () { this.reset() }.bind(this));
}
},
gotoStep: function (step) {
var form = this["stepForm_" + (step - 1)];
form.clearWarning();
var data = form.getResult(true, ",", true, false, true);
if (!data) {
return;
}
var i;
for (i = 1; i <= step; i++) {
this["step_" + i].setStyles(this.css["step_" + i + "_active"]);
if (i !== step && this["stepLink_" + i]) {
this["stepLink_" + i].setStyles(this.css["stepLink_" + i + "_active"]);
}
}
for (i = step + 1; i <= 3; i++) {
this["step_" + i].setStyles(this.css["step_" + i]);
if (i !== 3) {
this["stepLink_" + i].setStyles(this.css["stepLink_" + i]);
}
}
for (i = 1; i <= 3; i++) {
if (i === step) {
this["stepNode_" + i].setStyle("display", "");
} else {
this["stepNode_" + i].setStyle("display", "none");
}
}
if (step === 3) {
var d = {
credential: this.stepForm_1.getItem("name").getValue(),
codeAnswer: this.stepForm_1.getItem("codeAnswer").getValue(),
password: this.stepForm_2.getItem("password").getValue()
};
this.actions.resetPassword(d, function () {
this.createSetForm_3(true)
}.bind(this), function (errorObj) {
var error = JSON.parse(errorObj.responseText);
//this.app.notice( error.message );
this.createSetForm_3(false, error.message)
}.bind(this), false);
}
},
checkMobile: function (mobile) {
var flag = true;
this.actions.checkRegisterMobile(mobile, function () {
flag = true
}.bind(this), function () {
flag = false;
}.bind(this), false);
return flag;
},
checkUserName: function (userName, it) {
var flag = false;
this.actions.checkCredentialOnResetPassword(userName, function (json) {
if (json.data) {
flag = json.data.value;
}
}.bind(this), function (errorObj) {
if (errorObj.status === 404) {
it.options.validMessage.isInvalid = this.lp.pageNotFound;
flag = false
} else {
var error = JSON.parse(errorObj.responseText);
it.options.validMessage.isInvalid = error.message;
flag = false
}
}.bind(this), false);
return flag;
},
sendVerificationAction: function () {
var flag = true;
var it = this.stepForm_1.getItem("name");
this.stepForm_1.clearWarning();
if (it.verify(true)) {
} else {
return;
}
this.actions.createCodeOnResetPassword(it.getValue(), function (json) {
}, function (errorObj) {
var error = JSON.parse(errorObj.responseText);
it.setWarning(error.message, "invalid");
flag = false
}.bind(this), false);
if (!flag) return false;
this.stepForm_1.getItem("verificationAction").container.setStyle("display", "none");
this.setResendVerification();
},
setResendVerification: function () {
var resendItem = this.stepForm_1.getItem("resendVerificationAction");
resendItem.container.setStyle("display", "");
this.resendElement = resendItem.getElements()[0];
this.resendElement.set("text", this.lp.resendVerification + "(60)");
var i = 60;
this.timer = setInterval(function () {
if (i > 0) {
this.resendElement.set("text", this.lp.resendVerification + "(" + --i + ")")
} else {
this.stepForm_1.getItem("verificationAction").container.setStyle("display", "");
resendItem.container.setStyle("display", "none");
clearInterval(this.timer)
}
}.bind(this), 1000)
},
getPasswordRule: function (password) {
var str = "";
this.actions.checkRegisterPassword(password, function (json) {
str = json.data.value || "";
}.bind(this), null, false);
return str;
},
//createPasswordStrengthNode : function(){
// var passwordStrengthArea = this.formTableArea.getElement("[item='passwordStrengthArea']");
//
// var lowNode = new Element( "div", {styles : this.css.passwordStrengthNode }).inject( passwordStrengthArea );
// this.lowColorNode = new Element( "div", {styles : this.css.passwordStrengthColor }).inject( lowNode );
// this.lowTextNode = new Element( "div", {styles : this.css.passwordStrengthText, text : this.lp.weak }).inject( lowNode );
//
// var middleNode = new Element( "div" , {styles : this.css.passwordStrengthNode }).inject( passwordStrengthArea );
// this.middleColorNode = new Element( "div", {styles : this.css.passwordStrengthColor }).inject( middleNode );
// this.middleTextNode = new Element( "div", {styles : this.css.passwordStrengthText, text : this.lp.middle }).inject( middleNode );
//
// var highNode = new Element("div", {styles : this.css.passwordStrengthNode }).inject( passwordStrengthArea );
// this.highColorNode = new Element( "div", {styles : this.css.passwordStrengthColor }).inject( highNode );
// this.highTextNode = new Element( "div", {styles : this.css.passwordStrengthText, text : this.lp.high }).inject( highNode );
//},
//getPasswordLevel: function( password ){
// /*Level(级别)
// •0-3 : [easy]
// •4-6 : [midium]
// •7-9 : [strong]
// •10-12 : [very strong]
// •>12 : [extremely strong]
// */
// var level = 0;
// this.actions.checkRegisterPassword( password, function( json ){
// level = json.data.value;
// }.bind(this), null, false );
// return level;
//},
//pwStrength: function(pwd){
// this.lowColorNode.setStyles( this.css.passwordStrengthColor );
// this.lowTextNode.setStyles( this.css.passwordStrengthText );
// this.middleColorNode.setStyles( this.css.passwordStrengthColor );
// this.middleTextNode.setStyles( this.css.passwordStrengthText );
// this.highColorNode.setStyles( this.css.passwordStrengthColor );
// this.highTextNode.setStyles( this.css.passwordStrengthText );
// if (!pwd){
// }else{
// //var level = this.checkStrong(pwd);
// var level = this.getPasswordLevel(pwd);
// switch(level) {
// case 0:
// case 1:
// case 2:
// case 3:
// this.lowColorNode.setStyles( this.css.passwordStrengthColor_low );
// this.lowTextNode.setStyles( this.css.passwordStrengthText_current );
// break;
// case 4:
// case 5:
// case 6:
// this.middleColorNode.setStyles( this.css.passwordStrengthColor_middle );
// this.middleTextNode.setStyles( this.css.passwordStrengthText_current );
// break;
// default:
// this.highColorNode.setStyles( this.css.passwordStrengthColor_high );
// this.highTextNode.setStyles( this.css.passwordStrengthText_current );
// }
// }
//},
gotoLogin: function () {
this.explorer.openLoginForm({}, function () { window.location.reload(); });
this.close();
},
gotoSignup: function () {
this.explorer.openSignUpForm();
this.close();
}
});
//密码过期
MWF.xDesktop.Authentication.ChangePasswordForm = new Class({
Extends: MPopupForm,
Implements: [Options, Events],
options: {
"style": "default",
"popupStyle": "o2platform",
"width": "650",
"height": "480",
"hasTop": true,
"hasIcon": false,
"hasTopIcon": true,
"hasTopContent": true,
"hasBottom": false,
"hasScroll": false,
"hasMark": false,
"title": "",
"draggable": true,
"closeAction": true,
"userName" : ""
},
load: function () {
if (!this.options.title) this.setOptions({
"title": MWF.LP.authentication.ChangePasswordFormTitle
});
this._loadCss();
},
_createTableContent: function () {
var self = this;
if( this.formTopTextNode && this.formTopCloseActionNode ){
this.formTopCloseActionNode.inject( this.formTopTextNode, "before" )
}
this.actions = MWF.Actions.get("x_organization_assemble_personal");
var html = "
" +
"" +
" " +
" |
" +
"" +
" " +
" | " +
"
|
" +
"" +
" " +
" |
" +
" |
" +
" |
"+
" |
" +
"
";
this.formTableArea.set("html", html);
this.errorArea = this.formTableArea.getElement("[item=errorArea]");
MWF.xDesktop.requireApp("Template", "MForm", function () {
this.form = new MForm(this.formTableArea, this.data, {
style: this.options.popupStyle,
verifyType: "single", //batch一起校验,或alert弹出
isEdited: this.isEdited || this.isNew,
onPostLoad: function () {
var form = this.form;
form.getItem("password").tipNode = this.errorArea;
form.getItem("newPassword").tipNode = this.errorArea;
form.getItem("confirmPassword").tipNode = this.errorArea;
}.bind(this),
itemTemplate: {
password: {
text: this.lp.oldPassword,
type: "password",
className: "inputPassword",
notEmpty: true,
defaultValueAsEmpty: false,
defaultValue: this.options.oldPassword || "",
emptyTip: this.lp.inputYourOldPassword,
attr: {"placeholder": this.lp.oldPassword},
event: {
focus: function (it) {
if ("password" === it.getValue()) it.setValue("");
if (!it.warningStatus) it.getElements()[0].setStyles(this.css.inputActive);
}.bind(this),
blur: function (it) {
// it.verify(true);
if (!it.warningStatus) it.getElements()[0].setStyles(this.css.inputPassword);
}.bind(this),
keyup: function (it, ev) {
if (ev.event.keyCode === 13) this.ok();
}.bind(this)
},
onEmpty: function (it) {
it.getElements()[0].setStyles(this.css.inputEmpty);
}.bind(this),
onUnempty: function (it) {
it.getElements()[0].setStyles(this.css.inputPassword);
}.bind(this)
},
newPassword: {
text: this.lp.newPassword,
type: "password",
className: "inputPassword",
notEmpty: true,
defaultValueAsEmpty: true,
emptyTip: this.lp.inputYourNewPassword,
attr: {"placeholder": this.lp.newPassword},
validRule: {
passwordIsWeak: function (value, it) {
return !this.getPasswordRule(it.getValue());
}.bind(this)
},
validMessage: {
passwordIsWeak: function () {
return self.getPasswordRule(this.getValue());
}
},
event: {
focus: function (it) {
if (!it.warningStatus) it.getElements()[0].setStyles(this.css.inputActive);
}.bind(this),
blur: function (it) {
// it.verify(true);
}.bind(this),
keyup: function (it, ev) {
if (ev.event.keyCode === 13)this.ok();
}.bind(this)
},
onEmpty: function (it) {
it.getElements()[0].setStyles(this.css.inputEmpty);
}.bind(this),
onUnempty: function (it) {
it.getElements()[0].setStyles(this.css.inputPassword);
}.bind(this)
},
confirmPassword: {
text: this.lp.confirmNewPassword,
type: "password",
className: "inputComfirmPassword",
notEmpty: true,
defaultValueAsEmpty: true,
emptyTip: this.lp.inputComfirmPassword,
attr: {"placeholder": this.lp.confirmPassword},
validRule: {
passwordNotEqual: function (value, it) {
if (it.getValue() === this.form.getItem("newPassword").getValue()) return true;
}.bind(this)
},
validMessage: {passwordNotEqual: this.lp.passwordNotEqual},
event: {
focus: function (it) {
if (!it.warningStatus) it.getElements()[0].setStyles(this.css.inputActive);
}.bind(this),
blur: function (it) {
// it.verify(true);
if (!it.warningStatus) it.getElements()[0].setStyles(this.css.inputComfirmPassword);
}.bind(this),
keyup: function (it, ev) {
if (ev.event.keyCode === 13)this.ok();
}.bind(this)
},
onEmpty: function (it) {
it.getElements()[0].setStyles(this.css.inputEmpty);
}.bind(this),
onUnempty: function (it) {
it.getElements()[0].setStyles(this.css.inputComfirmPassword);
}.bind(this)
},
forgetPassword: {
value: this.lp.forgetPassword,
type: "innerText",
className: "forgetPassword",
event: {
click: function () {
this.gotoResetPassword();
}.bind(this)
}
},
gotoLoginAction: {
value: this.lp.loginAction,
type: "innerText",
className: "signUpAction",
event: {
click: function () { this.gotoLogin() }.bind(this)
}
},
passwordTip: {
type: "innerText",
className: "forgetPassword",
defaultValue: layout.config.passwordRegexHint || ""
},
submitAction: {
value: this.lp.submitAction,
type: "button",
className: "inputLogin",
event: {
click: function () {
this.ok();
}.bind(this)
}
}
}
}, this.app, this.css);
this.form.load();
}.bind(this), true);
},
gotoLogin: function () {
this.explorer.openLoginForm({}, function () { window.location.reload(); });
this.close();
},
getPasswordRule: function (password) {
var str = "";
this.actions.checkRegisterPassword(password, function (json) {
str = json.data.value || "";
}.bind(this), null, false);
return str;
},
gotoResetPassword: function () {
this.explorer.openResetPasswordForm();
this.close();
},
ok: function () {
this.fireEvent("queryOk");
this.errorArea.empty();
var data = this.form.getResult(true, ",", true, false, true);
if (data) {
this._ok(data, function (json) {
if (json.type === "error") {
if (this.app) this.app.notice(json.message, "error");
} else {
this._close();
if (this.formMaskNode) this.formMaskNode.destroy();
this.formAreaNode.destroy();
if (this.explorer && this.explorer.view) this.explorer.view.reload();
if (this.app) this.app.notice(this.lp.changePasswordSuccess, "success");
this.fireEvent("postOk", json);
}
}.bind(this));
}
},
setWarning: function (text) {
this.errorArea.empty();
new Element("div", {
"text": text,
"styles": this.css.warningMessageNode
}).inject(this.errorArea);
},
_ok: function (data, callback) {
var d = {
userName : this.options.userName,
oldPassword : data.password,
newPassword : data.newPassword,
confirmPassword : data.confirmPassword
//isEncrypted : "n" //是否启用加密,默认不加密,启用(y)。注意:使用加密先要在服务器运行 create encrypt key"
}
//o2.Actions.load("x_organization_assemble_personal").ResetAction.setPasswordAnonymous( d, function (json) {
MWF.Actions.get("x_organization_assemble_personal").setPasswordAnonymous( d, function (json) {
if (callback) callback(json);
//this.fireEvent("postOk")
}.bind(this), function (errorObj) {
var error = JSON.parse(errorObj.responseText);
this.setWarning(error.message);
}.bind(this) )
}
});