Ejemplo n.º 1
0
        public ActionResult Register()
        {
            // Claims-aware "Register" method to display an HTML Form
            // Make sure you study the Views/Account/Register.cshtml view code
            // It includes new input elements to gather name and claim data

            // Define your custom role claims here
            // However, in a real-world in-production app, you would likely maintain
            //   a valid list of custom claims in persistent storage somewhere

            //var roles = new List<string> { "RoleOne", "RoleTwo", "RoleThree" };
            var roles = new List <string> {
                "Executive",
                "Coordinator",
                "Manager",
                "Supervisor",
                "Clerk",
                "Staff",
            };

            // Define a register form
            var form = new RegisterViewModelForm();

            form.RoleList = new MultiSelectList(roles);

            return(View(form));
        }
        public ActionResult Register()
        {
            // Claims-aware "Register" method to display an HTML Form
            // Make sure you study the Views/Account/Register.cshtml view code
            // It includes new input elements to gather name and claim data

            // Define your custom role claims here
            // However, in a real-world in-production app, you would likely maintain
            //   a valid list of custom claims in persistent storage somewhere

            Manager m = new Manager();

            m.LoadData();
            //var roles = m.RoleClaimGetAllStrings();
            var roles = new List <string> {
                "Student", "Faculty", "Coordinator Admin"
            };

            // Define a register form
            var form = new RegisterViewModelForm();

            form.RoleList = new MultiSelectList(roles);

            return(View(form));
        }
        public ActionResult Register()
        {
            // Attention - 01 - Claims-aware "Register" method to display an HTML Form
            // Make sure you study the Views/Account/Register.cshtml view code
            // It includes new input elements to gather name and claim data

            // Attention - 02 - Define your custom role claims here
            // However, in a real-world in-production app, you would likely maintain
            //   a valid list of custom claims in persistent storage somewhere
            var roles = new List <string>
            {
                "VicePresident",
                "Manager",
                "SalesRep",
                "ClericalSupport",
                "Mechanic"
            };

            // Define a register form
            var form = new RegisterViewModelForm();

            form.RoleList = new MultiSelectList(roles);

            return(View(form));
        }
Ejemplo n.º 4
0
        public ActionResult Register()
        {
            // Create and configure a view model object
            var registerForm = new RegisterViewModelForm();

            //registerForm.RolesList = new MultiSelectList(new List<string> { "Student", "Teacher", "Coordinator" });
            var ous = m.GetAllOUs();

            registerForm.OUList = new SelectList(ous, "OUName", "OUName", ous.First().OUName);

            return(View(registerForm));
        }
Ejemplo n.º 5
0
        public ActionResult Register()
        {
            // Claims-aware "Register" method to display an HTML Form
            // Make sure you study the Views/Account/Register.cshtml view code
            // It includes new input elements to gather name and claim data

            // Define your custom role claims here
            // However, in a real-world in-production app, you would likely maintain
            //   a valid list of custom claims in persistent storage somewhere
            Manager temp = new Manager();

            var roles = temp.RoleClaimGetAllStrings(); //UNCOMMENT

            // Define a register form
            var form = new RegisterViewModelForm();

            form.RoleList = new MultiSelectList(roles);
            DateTime format = new DateTime();

            format        = DateTime.Now;
            form.Birthday = new DateTime(format.Year, format.Month, format.Day);

            return(View(form));
        }
        public async Task <ActionResult> Register(RegisterViewModel model)
        {
            if (ModelState.IsValid)
            {
                var user = new ApplicationUser {
                    UserName = model.Email, Email = model.Email
                };

                var result = await UserManager.CreateAsync(user, model.Password);

                if (result.Succeeded)
                {
                    // ############################################################
                    // Attention - 03 - Claims-aware "Register" method to handle user-submitted data
                    // GivenName and Surname are claims - we gather them on the HTML Form
                    // The RegisterViewModel class was modified, to add these properties
                    // We also configure some "role" claims

                    // Add claims
                    await UserManager.AddClaimAsync(user.Id, new Claim(ClaimTypes.Email, model.Email));

                    await UserManager.AddClaimAsync(user.Id, new Claim(ClaimTypes.GivenName, model.GivenName));

                    await UserManager.AddClaimAsync(user.Id, new Claim(ClaimTypes.Surname, model.Surname));

                    await UserManager.AddClaimAsync(user.Id, new Claim(ClaimTypes.Role, "User"));

                    // Role claims processing
                    // In this web app template, the user submits zero or more claims, as strings
                    // We will go through the collection, and add each one
                    foreach (var role in model.Roles)
                    {
                        await UserManager.AddClaimAsync(user.Id, new Claim(ClaimTypes.Role, role.Trim()));
                    }

                    await SignInManager.SignInAsync(user, isPersistent : false, rememberBrowser : false);

                    // For more information on how to enable account confirmation and password reset please visit http://go.microsoft.com/fwlink/?LinkID=320771
                    // Send an email with this link
                    // string code = await UserManager.GenerateEmailConfirmationTokenAsync(user.Id);
                    // var callbackUrl = Url.Action("ConfirmEmail", "Account", new { userId = user.Id, code = code }, protocol: Request.Url.Scheme);
                    // await UserManager.SendEmailAsync(user.Id, "Confirm your account", "Please confirm your account by clicking <a href=\"" + callbackUrl + "\">here</a>");

                    return(RedirectToAction("Details", "Account"));

                    // ############################################################
                }
                AddErrors(result);
            }

            // If we got this far, something failed, redisplay form

            var roles = new List <string> {
                "Executive", "Coordinator", "Clerk", "Staff"
            };

            // Define a register form
            var form = new RegisterViewModelForm();

            form.RoleList = new MultiSelectList(roles);

            return(View(form));
        }