Eu fiz isso antes com o MVC5 usando, User.Identity.GetUserId()
mas isso não parece funcionar aqui. O User.Identity
não tem o GetUserId()
método
estou usando Microsoft.AspNet.Identity
Eu fiz isso antes com o MVC5 usando, User.Identity.GetUserId()
mas isso não parece funcionar aqui. O User.Identity
não tem o GetUserId()
método
estou usando Microsoft.AspNet.Identity
Respostas:
No controlador:
public class YourControllerNameController : Controller
{
private readonly UserManager<ApplicationUser> _userManager;
public YourControllerNameController(UserManager<ApplicationUser> userManager)
{
_userManager = userManager;
}
public async Task<IActionResult> YourMethodName()
{
var userId = User.FindFirstValue(ClaimTypes.NameIdentifier) // will give the user's userId
var userName = User.FindFirstValue(ClaimTypes.Name) // will give the user's userName
ApplicationUser applicationUser = await _userManager.GetUserAsync(User);
string userEmail = applicationUser?.Email; // will give the user's Email
}
}
Em alguma outra classe:
public class OtherClass
{
private readonly IHttpContextAccessor _httpContextAccessor;
public OtherClass(IHttpContextAccessor httpContextAccessor)
{
_httpContextAccessor = httpContextAccessor;
}
public void YourMethodName()
{
var userId = _httpContextAccessor.HttpContext.User.FindFirstValue(ClaimTypes.NameIdentifier);
}
}
Então você deve se registrar IHttpContextAccessor
na Startup
classe da seguinte maneira:
public void ConfigureServices(IServiceCollection services)
{
services.TryAddSingleton<IHttpContextAccessor, HttpContextAccessor>();
// Or you can also register as follows
services.AddHttpContextAccessor();
}
Para mais legibilidade, escreva os métodos de extensão da seguinte maneira:
public static class ClaimsPrincipalExtensions
{
public static T GetLoggedInUserId<T>(this ClaimsPrincipal principal)
{
if (principal == null)
throw new ArgumentNullException(nameof(principal));
var loggedInUserId = principal.FindFirstValue(ClaimTypes.NameIdentifier);
if (typeof(T) == typeof(string))
{
return (T)Convert.ChangeType(loggedInUserId, typeof(T));
}
else if (typeof(T) == typeof(int) || typeof(T) == typeof(long))
{
return loggedInUserId != null ? (T)Convert.ChangeType(loggedInUserId, typeof(T)) : (T)Convert.ChangeType(0, typeof(T));
}
else
{
throw new Exception("Invalid type provided");
}
}
public static string GetLoggedInUserName(this ClaimsPrincipal principal)
{
if (principal == null)
throw new ArgumentNullException(nameof(principal));
return principal.FindFirstValue(ClaimTypes.Name);
}
public static string GetLoggedInUserEmail(this ClaimsPrincipal principal)
{
if (principal == null)
throw new ArgumentNullException(nameof(principal));
return principal.FindFirstValue(ClaimTypes.Email);
}
}
Em seguida, use o seguinte:
public class YourControllerNameController : Controller
{
public IActionResult YourMethodName()
{
var userId = User.GetLoggedInUserId<string>(); // Specify the type of your UserId;
var userName = User.GetLoggedInUserName();
var userEmail = User.GetLoggedInUserEmail();
}
}
public class OtherClass
{
private readonly IHttpContextAccessor _httpContextAccessor;
public OtherClass(IHttpContextAccessor httpContextAccessor)
{
_httpContextAccessor = httpContextAccessor;
}
public void YourMethodName()
{
var userId = _httpContextAccessor.HttpContext.User.GetLoggedInUserId<string>(); // Specify the type of your UserId;
}
}
null
.
User.Identity.Name
, pode ser porque a autenticação anônima está ativada. Consegui User.Identity.Name
retornar meu domínio e nome de usuário expandindo Properties > launchSettings.json
e definindo anonymousAuthentication
para false
e windowsAuthentication
para true
.
Até o ASP.NET Core 1.0 RC1 :
É User.GetUserId () de System.Security.Claims espaço para nome .
Desde o ASP.NET Core 1.0 RC2 :
Agora você precisa usar o UserManager . Você pode criar um método para obter o usuário atual:
private Task<ApplicationUser> GetCurrentUserAsync() => _userManager.GetUserAsync(HttpContext.User);
E obtenha informações do usuário com o objeto:
var user = await GetCurrentUserAsync();
var userId = user?.Id;
string mail = user?.Email;
Nota:
Você pode fazer isso sem usar um método para escrever linhas únicas como essa string mail = (await _userManager.GetUserAsync(HttpContext.User))?.Email
, mas não respeita o princípio de responsabilidade única. É melhor isolar a maneira como você obtém o usuário, porque se algum dia você decidir alterar seu sistema de gerenciamento de usuários, como usar outra solução que não seja a Identity, será doloroso, pois você precisará revisar todo o código.
você pode obtê-lo em seu controlador:
using System.Security.Claims;
var userId = this.User.FindFirstValue(ClaimTypes.NameIdentifier);
ou escreva um método de extensão como antes .Core v1.0
using System;
using System.Security.Claims;
namespace Shared.Web.MvcExtensions
{
public static class ClaimsPrincipalExtensions
{
public static string GetUserId(this ClaimsPrincipal principal)
{
if (principal == null)
throw new ArgumentNullException(nameof(principal));
return principal.FindFirst(ClaimTypes.NameIdentifier)?.Value;
}
}
}
e obtenha onde o usuário ClaimsPrincipal estiver disponível :
using Microsoft.AspNetCore.Mvc;
using Shared.Web.MvcExtensions;
namespace Web.Site.Controllers
{
public class HomeController : Controller
{
public IActionResult Index()
{
return Content(this.User.GetUserId());
}
}
}
var userId = User.FindFirstValue(ClaimTypes.NameIdentifier);
Convert.ToInt32(User.FindFirstValue(ClaimTypes.NameIdentifier))
para obter um número inteiro de UserId
Eu incluí o uso de System.Security.Claims e pude acessar o método de extensão GetUserId ()
NB: Eu já usava o Microsoft.AspNet.Identity, mas não conseguia obter o método de extensão. Então eu acho que os dois têm que ser usados em conjunto
using Microsoft.AspNet.Identity;
using System.Security.Claims;
EDIT : Esta resposta está desatualizada. Veja a resposta de Soren ou Adrien para obter uma maneira datada de conseguir isso no CORE 1.0.
var userId = User.GetUserId();
Somente para .NET Core 2.0 É necessário o seguinte para buscar o UserID do Usuário conectado em uma Controller
classe:
var userId = this.User.FindFirstValue(ClaimTypes.NameIdentifier);
ou
var userId = HttpContext.User.FindFirstValue(ClaimTypes.NameIdentifier);
por exemplo
contact.OwnerID = this.User.FindFirstValue(ClaimTypes.NameIdentifier);
Conforme declarado em algum lugar nesta postagem, o método GetUserId () foi movido para o UserManager.
private readonly UserManager<ApplicationUser> _userManager;
public YourController(UserManager<ApplicationUser> userManager)
{
_userManager = userManager;
}
public IActionResult MyAction()
{
var userId = _userManager.GetUserId(HttpContext.User);
var model = GetSomeModelByUserId(userId);
return View(model);
}
Se você iniciou um projeto vazio, pode ser necessário adicionar o UserManger aos seus serviços em startup.cs. Caso contrário, esse já deve ser o caso.
você precisa importar Microsoft.AspNetCore.Identity & System.Security.Claims
// to get current user ID
var userId = User.FindFirstValue(ClaimTypes.NameIdentifier);
// to get current user info
var user = await _userManager.FindByIdAsync(userId);
"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier"
para User.FindFirstValue(ClaimTypes.NameIdentifier);
?
Embora a resposta de Adrien esteja correta, você pode fazer tudo isso em uma única linha. Não há necessidade de função extra ou bagunça.
Funciona, verifiquei no ASP.NET Core 1.0
var user = await _userManager.GetUserAsync(HttpContext.User);
então você pode obter outras propriedades da variável como user.Email
. Espero que isso ajude alguém.
Para ASP.NET Core 2.0, Entity Framework Core 2.0, API do AspNetCore.Identity 2.0 ( https://github.com/kkagill/ContosoUniversity-Backend ):
O Id
foi alterado paraUser.Identity.Name
[Authorize, HttpGet("Profile")]
public async Task<IActionResult> GetProfile()
{
var user = await _userManager.FindByIdAsync(User.Identity.Name);
return Json(new
{
IsAuthenticated = User.Identity.IsAuthenticated,
Id = User.Identity.Name,
Name = $"{user.FirstName} {user.LastName}",
Type = User.Identity.AuthenticationType,
});
}
Resposta:
this.User.Identity.Name
tende a ser o nome de usuário. No meu teste, o nome de usuário é um email, seja o login do usuário no registro ou o login externo (por exemplo, Facebook, Google). O código a seguir retorna o userId. Eu uso uma chave primária incrementada automaticamente para minha tabela de usuários de identidade, daí o int.Parse. int userId = int.Parse(this.User.FindFirstValue(ClaimTypes.NameIdentifier));
FindByIdAsync
não funciona como você está fornecendo um nome de usuário. Funciona quando você o substitui FindByNameAsync
.
User.Identity.GetUserId ();
não existe no asp.net identity core 2.0. a este respeito, eu consegui de maneira diferente. Eu criei uma classe comum para usar todo o aplicativo, devido à obtenção de informações do usuário.
criar uma classe comum PCommon e interface IPCommon
adicionando referênciausing System.Security.Claims
using Microsoft.AspNetCore.Http;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Security.Claims;
using System.Threading.Tasks;
namespace Common.Web.Helper
{
public class PCommon: IPCommon
{
private readonly IHttpContextAccessor _context;
public PayraCommon(IHttpContextAccessor context)
{
_context = context;
}
public int GetUserId()
{
return Convert.ToInt16(_context.HttpContext.User.FindFirstValue(ClaimTypes.NameIdentifier));
}
public string GetUserName()
{
return _context.HttpContext.User.Identity.Name;
}
}
public interface IPCommon
{
int GetUserId();
string GetUserName();
}
}
Aqui a implementação da classe comum
using Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.Mvc;
using Microsoft.AspNetCore.Mvc.Rendering;
using Microsoft.Extensions.Logging;
using Pay.DataManager.Concreate;
using Pay.DataManager.Helper;
using Pay.DataManager.Models;
using Pay.Web.Helper;
using Pay.Web.Models.GeneralViewModels;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace Pay.Controllers
{
[Authorize]
public class BankController : Controller
{
private readonly IUnitOfWork _unitOfWork;
private readonly ILogger _logger;
private readonly IPCommon _iPCommon;
public BankController(IUnitOfWork unitOfWork, IPCommon IPCommon, ILogger logger = null)
{
_unitOfWork = unitOfWork;
_iPCommon = IPCommon;
if (logger != null) { _logger = logger; }
}
public ActionResult Create()
{
BankViewModel _bank = new BankViewModel();
CountryLoad(_bank);
return View();
}
[HttpPost, ActionName("Create")]
[ValidateAntiForgeryToken]
public async Task<IActionResult> Insert(BankViewModel bankVM)
{
if (!ModelState.IsValid)
{
CountryLoad(bankVM);
//TempData["show-message"] = Notification.Show(CommonMessage.RequiredFieldError("bank"), "Warning", type: ToastType.Warning);
return View(bankVM);
}
try
{
bankVM.EntryBy = _iPCommon.GetUserId();
var userName = _iPCommon.GetUserName()();
//_unitOfWork.BankRepo.Add(ModelAdapter.ModelMap(new Bank(), bankVM));
//_unitOfWork.Save();
// TempData["show-message"] = Notification.Show(CommonMessage.SaveMessage(), "Success", type: ToastType.Success);
}
catch (Exception ex)
{
// TempData["show-message"] = Notification.Show(CommonMessage.SaveErrorMessage("bank"), "Error", type: ToastType.Error);
}
return RedirectToAction(nameof(Index));
}
}
}
obter userId e nome na ação de inserção
_iPCommon.GetUserId();
Obrigado, Maksud
Para obter o ID do usuário atual nas visualizações de navalha, podemos injetar o UserManager na visualização da seguinte maneira:
@inject Microsoft.AspNetCore.Identity.UserManager<ApplicationUser> _userManager
@{ string userId = _userManager.GetUserId(User); }
Espero que você ache útil.
Como administrador trabalhando no perfil de outras pessoas e você precisa obter o ID do perfil em que está trabalhando, você pode usar um ViewBag para capturar o ID, por exemplo, ViewBag.UserId = userId; enquanto userId é a string Parameter do método em que você está trabalhando.
[HttpGet]
public async Task<IActionResult> ManageUserRoles(string userId)
{
ViewBag.UserId = userId;
var user = await userManager.FindByIdAsync(userId);
if (user == null)
{
ViewBag.ErrorMessage = $"User with Id = {userId} cannot be found";
return View("NotFound");
}
var model = new List<UserRolesViewModel>();
foreach (var role in roleManager.Roles)
{
var userRolesViewModel = new UserRolesViewModel
{
RoleId = role.Id,
RoleName = role.Name
};
if (await userManager.IsInRoleAsync(user, role.Name))
{
userRolesViewModel.IsSelected = true;
}
else
{
userRolesViewModel.IsSelected = false;
}
model.Add(userRolesViewModel);
}
return View(model);
}
Se você quiser isso no ASP.NET MVC Controller, use
using Microsoft.AspNet.Identity;
User.Identity.GetUserId();
Você precisa adicionar uma using
declaração porque GetUserId()
não estará lá sem ela.
User.GetUserId()
e nãoUser.Identity.GetUserId()
System.Web.HttpContext.Current.User.Identity.Name
?