コード例 #1
0
 public ActionResult HallOfFame()
 {
     UsersContext uc = new UsersContext();
     List<UserProfile> lup = uc.UserProfiles.OrderByDescending(x => x.Experience).Take(10).ToList();
     return PartialView("HallOfFameWinsPartial", lup);
 }
コード例 #2
0
        public ActionResult ExternalLoginConfirmation(RegisterExternalLoginModel model, string returnUrl)
        {
            string provider = null;
            string providerUserId = null;

            if (User.Identity.IsAuthenticated || !OAuthWebSecurity.TryDeserializeProviderUserId(model.ExternalLoginData, out provider, out providerUserId))
            {
                return RedirectToAction("Manage");
            }

            if (ModelState.IsValid)
            {
                // Insert a new user into the database
                using (UsersContext db = new UsersContext())
                {
                    UserProfile user = db.UserProfiles.FirstOrDefault(u => u.UserName.ToLower() == model.UserName.ToLower());
                    // Check if user already exists
                    if (user == null)
                    {
                        
                        // Insert name into the profile table
                        db.UserProfiles.Add(new UserProfile { UserName = model.UserName });
                        db.SaveChanges();

                        OAuthWebSecurity.CreateOrUpdateAccount(provider, providerUserId, model.UserName);
                        OAuthWebSecurity.Login(provider, providerUserId, createPersistentCookie: false);

                        return RedirectToLocal(returnUrl);
                    }
                    else
                    {
                        ModelState.AddModelError("UserName", "User name already exists. Please enter a different user name.");
                    }
                }
            }

            ViewBag.ProviderDisplayName = OAuthWebSecurity.GetOAuthClientData(provider).DisplayName;
            ViewBag.ReturnUrl = returnUrl;
            return View(model);
        }
コード例 #3
0
 public ActionResult ListProfileDetails()
 {
     UsersContext uc = new UsersContext();
     UserProfile up = uc.UserProfiles.SingleOrDefault(x => x.UserName == User.Identity.Name);
     return PartialView("_ListProfileDetails", up);
 }
コード例 #4
0
 public static int GetUserIDByName(string username)
 {
     UsersContext _uc = new UsersContext();
     UserProfile up =  _uc.UserProfiles.SingleOrDefault(x => x.UserName == username);
     return up.UserId;
 }