void Remove() { var user = UMC.Security.Identity.Current; var act = Account.Create(user.Id.Value); var a = act[Account.EMAIL_ACCOUNT_KEY]; var code = Web.UIDialog.AsyncDialog("Remove", d => { var fm = new Web.UIFormDialog() { Title = "解除验证" }; fm.AddTextValue().Put("邮箱", a.Name); fm.AddVerify("验证码", "Code", "您邮箱收到的验证码") .Put("Command", "Email").Put("Model", "Account").Put("SendValue", new UMC.Web.WebMeta().Put("Email", a.Name).Put("Code", "Send")).Put("Start", "YES"); fm.Submit("确认验证码", this.Context.Request, "Email"); return(fm); }); var session = new UMC.Configuration.Session <Hashtable>(a.Name); if (session.Value != null) { if (String.Equals(session.Value["Code"] as string, code)) { Account.Post(a.Name, a.user_id, Security.UserFlags.UnVerification, Account.EMAIL_ACCOUNT_KEY); this.Prompt("邮箱解除绑定成功", false); this.Context.Send(new UMC.Web.WebMeta().Put("type", "Email"), true); } } this.Prompt("您输入的验证码错误"); }
public override void ProcessActivity(WebRequest request, WebResponse response) { var user = Web.UIFormDialog.AsyncDialog("Register", d => { if (request.SendValues != null && request.SendValues.Count > 0) { return(this.DialogValue(request.SendValues)); } var u = new UMC.Data.Entities.User { Username = String.Empty }; var dialog = new Web.UIFormDialog(); dialog.Title = "账户注册"; dialog.AddText("昵称", "Alias", u.Alias); dialog.AddText("手机号码", "Username", u.Username); dialog.AddVerify("验证码", "VerifyCode", "您收到的验证码").Put("For", "Username").Put("To", "Mobile") .Put("Command", request.Command).Put("Model", request.Model); if (request.IsApp == false) { dialog.AddPassword("密码", "Password", false); dialog.AddPassword("确认密码", "NewPassword2", false).Put("placeholder", "再输入一次密码").Put("ForName", "Password"); } dialog.Submit("确认注册", request, "register"); return(dialog); }); if (user.ContainsKey("Mobile")) { var mobile = user["Mobile"]; var account = Data.Database.Instance().ObjectEntity <UMC.Data.Entities.Account>() .Where.And().Equal(new UMC.Data.Entities.Account { Name = mobile, Type = UMC.Security.Account.MOBILE_ACCOUNT_KEY }).Entities.Single(); if (account != null) { this.Prompt("此手机号码已经注册,你可直接登录"); } this.SendMobileCode(mobile); this.Prompt("验证码已发送", false); this.Context.Send(new UMC.Web.WebMeta().UIEvent("VerifyCode", this.AsyncDialog("UI", "none"), new UMC.Web.WebMeta().Put("text", "验证码已发送")), true); } var username = user["Username"]; if (user.ContainsKey("VerifyCode")) { var VerifyCode = user["VerifyCode"]; var session = new UMC.Configuration.Session <Hashtable>(username); if (session.Value != null) { var code = session.Value["Code"] as string; if (String.Equals(code, VerifyCode) == false) { this.Prompt("请输入正确的验证码"); } } else { this.Prompt("请输入正确的验证码"); } } var entity = Data.Database.Instance().ObjectEntity <UMC.Data.Entities.Account>(); UMC.Data.Entities.Account ac = new UMC.Data.Entities.Account { Name = username }; if (Data.Utility.IsEmail(username)) { ac.Type = UMC.Security.Account.EMAIL_ACCOUNT_KEY; entity.Where.And().Equal(ac); } else if (Data.Utility.IsPhone(username)) { ac.Type = UMC.Security.Account.MOBILE_ACCOUNT_KEY; entity.Where.And().Equal(ac); } if (ac.Type.HasValue == false) { this.Prompt("只支持手机号注册"); } if (entity.Count() > 0) { switch (ac.Type.Value) { case UMC.Security.Account.EMAIL_ACCOUNT_KEY: this.Prompt("此邮箱已经注册"); break; default: this.Prompt("此手机号已经注册"); break; } } var passwork = user["Password"]; var NewPassword2 = user["NewPassword2"]; if (String.IsNullOrEmpty(NewPassword2) == false) { if (String.Equals(passwork, NewPassword2) == false) { this.Prompt("两次密码不相同,请确认密码"); } } var Alias = user["Alias"] ?? username; var uM = UMC.Security.Membership.Instance(); var uid = uM.CreateUser(username, passwork ?? username, Alias); if (uid != Guid.Empty) { if (user.ContainsKey("VerifyCode")) { UMC.Security.Account.Post(ac.Name, uid, UMC.Security.UserFlags.Normal, ac.Type.Value); } else { UMC.Security.Account.Post(ac.Name, uid, UMC.Security.UserFlags.UnVerification, ac.Type.Value); } var iden = uM.Identity(username); UMC.Security.AccessToken.Login(iden, UMC.Security.AccessToken.Token.Value, request.IsApp ? "App" : "Client", true); this.Context.Send(new UMC.Web.WebMeta().Put("type", "register"), false); this.Context.Send(new UMC.Web.WebMeta().Put("type", "User"), false); this.Prompt("注册成功"); } else { this.Prompt("已经存在这个用户"); } }
public override void ProcessActivity(WebRequest request, WebResponse response) { var user = UMC.Security.Identity.Current; var act = Account.Create(user.Id.Value); var value = Web.UIDialog.AsyncDialog("Email", d => { var acc = act[UMC.Security.Account.EMAIL_ACCOUNT_KEY]; if (acc != null && (acc.Flags & UserFlags.UnVerification) != UserFlags.UnVerification) { return(new Web.UIConfirmDialog("您确认解除与邮箱的绑定吗") { Title = "解除确认", DefaultValue = "Change" }); } var t = new Web.UITextDialog() { Title = "邮箱绑定", DefaultValue = acc != null ? acc.Name : "" }; t.Config["submit"] = "下一步"; return(t); }); switch (value) { case "Change": Remove(); return; } if (Data.Utility.IsEmail(value) == false) { this.Prompt("邮箱格式不正确"); } var entity = Data.Database.Instance().ObjectEntity <UMC.Data.Entities.Account>(); entity.Where.And().Equal(new UMC.Data.Entities.Account { Name = value, Type = Account.EMAIL_ACCOUNT_KEY }).And().Unequal(new Data.Entities.Account { user_id = user.Id }); if (entity.Count() > 0) { this.Prompt("此邮箱已存在绑定"); } var Code = UMC.Web.UIDialog.AsyncDialog("Code", g => { var fm = new Web.UIFormDialog() { Title = "验证码" }; fm.AddTextValue().Put("邮箱", value); fm.AddVerify("验证码", "Code", "您邮箱收到的验证码") .Put("Command", "Email").Put("Model", "Account").Put("SendValue", new UMC.Web.WebMeta().Put("Email", value).Put("Code", "Send")).Put("Start", "YES"); fm.Submit("确认验证码", request, "Email"); return(fm); }); if (Code == "Send") { this.SendEmail(value); this.Prompt("验证码已发送"); } var session = new UMC.Configuration.Session <Hashtable>(value); if (session.Value != null) { var code = session.Value["Code"] as string; if (String.Equals(code, Code)) { Account.Post(value, user.Id.Value, Security.UserFlags.Normal, Account.EMAIL_ACCOUNT_KEY); this.Prompt("邮箱绑定成功", false); this.Context.Send(new UMC.Web.WebMeta().Put("type", "Email"), true); } } this.Prompt("您输入的验证码错误"); }
public override void ProcessActivity(WebRequest request, WebResponse response) { var type = this.AsyncDialog("type", t => this.DialogValue("auto")); switch (type) { case "wx": this.Context.Send(new UMC.Web.WebMeta().Put("type", "login.weixin"), true); break; case "qq": this.Context.Send(new UMC.Web.WebMeta().Put("type", "login.qq"), true); break; } var user = Web.UIFormDialog.AsyncDialog("Login", d => { if (request.SendValues != null && request.SendValues.Count > 0) { return(this.DialogValue(request.SendValues)); } if (request.Url.Query.Contains("_v=Sub")) { this.Context.Send("Login", true); } // var u = new UMC.Data.Entities.User { Username = String.Empty }; var dialog = new Web.UIFormDialog(); dialog.Title = "登录"; switch (type) { default: case "User": this.Context.Send("LoginChange", false); { dialog.AddText("用户名", "Username", String.Empty).Put("placeholder", "用户名/手机/邮箱"); dialog.AddPassword("用户密码", "Password", String.Empty); dialog.Submit("登录", request, "User", "LoginChange"); var uidesc = new UMC.Web.UI.UIDesc(new WebMeta().Put("eula", "用户协议").Put("private", "隐私政策")); uidesc.Desc("登录即同意“{eula}”和“{private}”"); uidesc.Style.AlignCenter(); uidesc.Style.Color(0x888).Size(14).Height(34); uidesc.Style.Name("eula").Color(0x3194d0).Click(new UIClick("365lu/provision/eula").Send("Subject", "UIData")); uidesc.Style.Name("private").Color(0x3194d0).Click(new UIClick("365lu/provision/private").Send("Subject", "UIData")); dialog.Add(uidesc); dialog.AddUIIcon("\uf2c1", "免密登录").Command(request.Model, request.Command, "Mobile"); dialog.AddUIIcon("\uf1c6", "忘记密码").Put("Model", request.Model).Put("Command", "Forget"); dialog.AddUIIcon("\uf234", "注册新用户").Put("Model", request.Model).Put("Command", "Register"); } break; case "Mobile": this.Context.Send("LoginChange", false); { dialog.AddText("手机号码", "Username", String.Empty).Put("placeholder", "注册的手机号码"); dialog.AddVerify("验证码", "VerifyCode", "您收到的验证码").Put("For", "Username").Put("To", "Mobile") .Put("Command", request.Command).Put("Model", request.Model); dialog.Submit("登录", request, "User", "LoginChange"); var uidesc = new UMC.Web.UI.UIDesc(new WebMeta().Put("eula", "用户协议").Put("private", "隐私政策")); uidesc.Desc("登录即同意“{eula}”和“{private}”"); uidesc.Style.AlignCenter(); uidesc.Style.Color(0x888).Size(14).Height(34); uidesc.Style.Name("eula").Color(0x3194d0).Click(new UIClick("365lu/provision/eula").Send("Subject", "UIData")); uidesc.Style.Name("private").Color(0x3194d0).Click(new UIClick("365lu/provision/private").Send("Subject", "UIData")); dialog.Add(uidesc); dialog.AddUIIcon("\uf13e", "密码登录").Command(request.Model, request.Command, "User"); dialog.AddUIIcon("\uf234", "注册新用户").Command(request.Model, "Register"); //.Put("Model", request.Model).Put("Command", "Register"); } break; } return(dialog); }); if (user.ContainsKey("Mobile")) { var mobile = user["Mobile"]; var account = Data.Database.Instance().ObjectEntity <UMC.Data.Entities.Account>() .Where.And().Equal(new UMC.Data.Entities.Account { Name = mobile, Type = UMC.Security.Account.MOBILE_ACCOUNT_KEY }).Entities.Single(); if (account == null) { this.Prompt("不存在此账户"); } this.SendMobileCode(mobile); this.Prompt("验证码已发送", false); this.Context.Send(new UMC.Web.WebMeta().UIEvent("VerifyCode", this.AsyncDialog("UI", "none"), new UMC.Web.WebMeta().Put("text", "验证码已发送")), true); } var username = user["Username"]; var userManager = UMC.Security.Membership.Instance(); if (user.ContainsKey("VerifyCode")) { var VerifyCode = user["VerifyCode"]; var session = new UMC.Configuration.Session <Hashtable>(username); if (session.Value != null) { var code = session.Value["Code"] as string; if (String.Equals(code, VerifyCode) == false) { this.Prompt("请输入正确的验证码"); } } else { this.Prompt("请输入正确的验证码"); } var entity = Data.Database.Instance().ObjectEntity <UMC.Data.Entities.Account>(); UMC.Data.Entities.Account ac = new UMC.Data.Entities.Account { Name = username, Type = UMC.Security.Account.MOBILE_ACCOUNT_KEY }; var eData = entity.Where.And().Equal(ac).Entities.Single(); if (eData == null) { this.Prompt("无此号码关联的账户,请注册"); } else { var iden = userManager.Identity(eData.user_id.Value); //System.Security.Principal.IPrincipal p = iden; //if (p.IsInRole(UMC.Security.Membership.UserRole)) //{ // this.Prompt("您是内部账户,不可从此入口登录"); //} UMC.Security.AccessToken.Login(iden, UMC.Security.AccessToken.Token.Value, request.IsApp ? "App" : "Client", true); this.Context.Send("User", true); } } else { var passwork = user["Password"]; var maxTimes = 5; UMC.Security.Identity identity = null; if (UMC.Data.Utility.IsPhone(username)) { identity = userManager.Identity(username, Security.Account.MOBILE_ACCOUNT_KEY) ?? userManager.Identity(username); } else if (username.IndexOf('@') > -1) { identity = userManager.Identity(username, Security.Account.EMAIL_ACCOUNT_KEY) ?? userManager.Identity(username); } else { identity = userManager.Identity(username); } if (identity == null) { this.Prompt("用户不存在,请确认用户名"); } var times = userManager.Password(identity.Name, passwork, maxTimes); switch (times) { case 0: var iden = userManager.Identity(username); //System.Security.Principal.IPrincipal p = iden; //if (p.IsInRole(UMC.Security.Membership.UserRole)) //{ // this.Prompt("您是内部账户,不可从此入口登录"); //} UMC.Security.AccessToken.Login(iden, UMC.Security.AccessToken.Token.Value, request.IsApp ? "App" : "Client", true); this.Context.Send("User", true); break; case -2: this.Prompt("您的用户已经锁定,请过后登录"); break; case -1: this.Prompt("您的用户不存在,请确定用户名"); break; default: this.Prompt(String.Format("您的用户和密码不正确,您还有{0}次机会", maxTimes - times)); break; } } }
public override void ProcessActivity(WebRequest request, WebResponse response) { var type = this.AsyncDialog("type", t => this.DialogValue("auto")); switch (type) { case "wx": this.Context.Send(new UMC.Web.WebMeta().Put("type", "login.weixin"), true); break; case "qq": this.Context.Send(new UMC.Web.WebMeta().Put("type", "login.qq"), true); break; } var user = Web.UIFormDialog.AsyncDialog("Login", d => { var u = new UMC.Data.Entities.User { Username = String.Empty }; var dialog = new Web.UIFormDialog(); dialog.Title = "账户登录"; if (request.IsApp) { dialog.AddText("手机号码", "Username", u.Username).Put("placeholder", "手机"); dialog.AddVerify("验证码", "VerifyCode", "您收到的验证码").Put("For", "Username").Put("To", "Mobile") .Put("Command", request.Command).Put("Model", request.Model); dialog.Submit("登录", request, "User"); dialog.AddUIIcon("\uf234", "注册新用户").Put("Model", request.Model).Put("Command", "Register"); } else { dialog.AddText("用户名", "Username", u.Username).Put("placeholder", "手机/邮箱"); dialog.AddPassword("用户密码", "Password", String.Empty); dialog.Submit("登录", request, "User"); dialog.AddUIIcon("\uf1c6", "忘记密码").Put("Model", request.Model).Put("Command", "Forget"); dialog.AddUIIcon("\uf234", "注册新用户").Put("Model", request.Model).Put("Command", "Register"); } return(dialog); }); if (user.ContainsKey("Mobile")) { var mobile = user["Mobile"]; var account = Data.Database.Instance().ObjectEntity <UMC.Data.Entities.Account>() .Where.And().Equal(new UMC.Data.Entities.Account { Name = mobile, Type = UMC.Security.Account.MOBILE_ACCOUNT_KEY }).Entities.Single(); if (account == null) { this.Prompt("不存在此账户"); } this.SendMobileCode(mobile); this.Prompt("验证码已发送", false); this.Context.Send(new UMC.Web.WebMeta().UIEvent("VerifyCode", this.AsyncDialog("UI", "none"), new UMC.Web.WebMeta().Put("text", "验证码已发送")), true); } var username = user["Username"]; var userManager = UMC.Security.Membership.Instance(); if (user.ContainsKey("VerifyCode")) { var VerifyCode = user["VerifyCode"]; var session = new UMC.Configuration.Session <Hashtable>(username); if (session.Value != null) { var code = session.Value["Code"] as string; if (String.Equals(code, VerifyCode) == false) { this.Prompt("请输入正确的验证码"); } } else { this.Prompt("请输入正确的验证码"); } var entity = Data.Database.Instance().ObjectEntity <UMC.Data.Entities.Account>(); UMC.Data.Entities.Account ac = new UMC.Data.Entities.Account { Name = username, Type = UMC.Security.Account.MOBILE_ACCOUNT_KEY }; var eData = entity.Where.And().Equal(ac).Entities.Single(); if (eData == null) { this.Prompt("无此号码关联的账户,请注册"); } else { var iden = userManager.Identity(eData.user_id.Value); System.Security.Principal.IPrincipal p = iden; if (p.IsInRole(UMC.Security.Membership.UserRole)) { this.Prompt("您是内部账户,不可从此入口登录"); } UMC.Security.AccessToken.Login(iden, UMC.Security.AccessToken.Token.Value, request.IsApp ? "App" : "Client", true); this.Context.Send("User", true); } } else { var passwork = user["Password"]; var maxTimes = 5; UMC.Security.Identity identity = null; if (UMC.Data.Utility.IsPhone(username)) { identity = userManager.Identity(username, Security.Account.MOBILE_ACCOUNT_KEY) ?? userManager.Identity(username); } else if (username.IndexOf('@') > -1) { identity = userManager.Identity(username, Security.Account.EMAIL_ACCOUNT_KEY) ?? userManager.Identity(username); } else { identity = userManager.Identity(username); } if (identity == null) { this.Prompt("用户不存在,请确认用户名"); } var times = userManager.Password(identity.Name, passwork, maxTimes); switch (times) { case 0: var iden = userManager.Identity(username); System.Security.Principal.IPrincipal p = iden; if (p.IsInRole(UMC.Security.Membership.UserRole)) { this.Prompt("您是内部账户,不可从此入口登录"); } UMC.Security.AccessToken.Login(iden, UMC.Security.AccessToken.Token.Value, request.IsApp ? "App" : "Client", true); this.Context.Send("User", true); break; case -2: this.Prompt("您的用户已经锁定,请过后登录"); break; case -1: this.Prompt("您的用户不存在,请确定用户名"); break; default: this.Prompt(String.Format("您的用户和密码不正确,您还有{0}次机会", maxTimes - times)); break; } } }