Esempio n. 1
0
        public async Task <ActionResult> Register(RegisterViewModel model)
        {
            if (ModelState.IsValid)
            {
                string imagePath = "asdfasdf";
                string dir       = imagePath;
                int    widthBig  = 2560;
                // Імя фалу із зображенням
                string filePhoto = string.Empty;
                filePhoto = Guid.NewGuid().ToString() + ImageWorker.GetImageType(model.Image);
                byte[] bytesPhoto = ImageWorker.GetImageBytesFromBase64(model.Image);
                string imageType  = ImageWorker.GetImageType(model.Image);
                Bitmap imageBig   = ImageWorker.SaveImageFromBytesTry(bytesPhoto, widthBig);
                if (imageBig != null)
                {
                    string fileName     = widthBig + "_" + filePhoto;
                    string pathSaveFile = Path.Combine(dir, fileName);
                    imageBig.Save(pathSaveFile, ImageWorker.GetImageFormat(imageType));
                }
                var result = await _accountProvider.RegisterAsync(model);

                if (result)
                {
                    // For more information on how to enable account confirmation and password reset please visit https://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("Index", "Home"));
                }
                //AddErrors(result);
            }
            // If we got this far, something failed, redisplay form
            return(View(model));
        }
Esempio n. 2
0
 public async Task <JsonResult> Insert(Account model)
 {
     if (ModelState.IsValid)
     {
         AccountProvider provider = new AccountProvider();
         //Account account = new Account();
         model.CreateTime = DateTime.Now;
         //account.Email = model.Email;
         //account.Fullname = model.Fullname;
         //account.IsActive = true;
         model.IsDeleted = false;
         //account.IsLocked = false;
         model.Password = NDK.ApplicationCore.Extensions.Hepler.StringHelper.CreateMD5(model.Password);
         model.Role     = model.Role;
         //account.Username = model.Username;
         return(Json(await provider.RegisterAsync(model)));
     }
     else
     {
         return(Json(new AccessEntityResult {
             Status = AccessEntityStatusCode.ModelFailed, Message = MessageManager.GetErrorMessage(ModuleType.Register, MessageType.Register_ModelFailed)
         }));
     }
 }