私は以前にMVC5を使用してこれを実行しましたUser.Identity.GetUserId()
が、ここでは機能しないようです。User.Identity
doesntのは、持っているGetUserId()
方法を
使ってます Microsoft.AspNet.Identity
私は以前にMVC5を使用してこれを実行しましたUser.Identity.GetUserId()
が、ここでは機能しないようです。User.Identity
doesntのは、持っているGetUserId()
方法を
使ってます Microsoft.AspNet.Identity
回答:
コントローラで:
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
}
}
他のクラスでは:
public class OtherClass
{
private readonly IHttpContextAccessor _httpContextAccessor;
public OtherClass(IHttpContextAccessor httpContextAccessor)
{
_httpContextAccessor = httpContextAccessor;
}
public void YourMethodName()
{
var userId = _httpContextAccessor.HttpContext.User.FindFirstValue(ClaimTypes.NameIdentifier);
}
}
そして、あなたは登録してくださいIHttpContextAccessor
にStartup
次のようにクラス:
public void ConfigureServices(IServiceCollection services)
{
services.TryAddSingleton<IHttpContextAccessor, HttpContextAccessor>();
// Or you can also register as follows
services.AddHttpContextAccessor();
}
読みやすくするために、拡張メソッドを次のように記述します。
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);
}
}
次に、次のように使用します。
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
、匿名認証が有効になっている可能性があります。私は得ることができたUser.Identity.Name
拡張することによって、私のドメインとユーザー名を返すためにProperties > launchSettings.json
、と設定anonymousAuthentication
するfalse
、とwindowsAuthentication
しますtrue
。
ASP.NET Core 1.0 RC1まで:
これは、System.Security.Claims名前空間のUser.GetUserId()です。
ASP.NET Core 1.0 RC2以降:
ここでUserManagerを使用する必要があります。現在のユーザーを取得するメソッドを作成できます。
private Task<ApplicationUser> GetCurrentUserAsync() => _userManager.GetUserAsync(HttpContext.User);
オブジェクトを使用してユーザー情報を取得します。
var user = await GetCurrentUserAsync();
var userId = user?.Id;
string mail = user?.Email;
注:
このように1行を記述するメソッドを使用しなくても実行できますstring mail = (await _userManager.GetUserAsync(HttpContext.User))?.Email
が、これは単一責任の原則を尊重しません。ユーザーを取得する方法を分離することをお勧めします。いつか、ユーザー管理システムを変更する場合(Identity以外のソリューションを使用するなど)は、コード全体を確認する必要があるため、面倒になります。
あなたはあなたのコントローラーでそれを得ることができます:
using System.Security.Claims;
var userId = this.User.FindFirstValue(ClaimTypes.NameIdentifier);
または.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;
}
}
}
そして、ユーザーClaimsPrincipalが利用可能な場所であればどこでも取得します。
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))
整数のUserIdを取得するために使用できる@AK
System.Security.Claimsを使用してインクルードし、GetUserId()拡張メソッドにアクセスできました
注意:Microsoft.AspNet.Identityを既に使用していますが、拡張メソッドを取得できませんでした。だから両方とも一緒に使う必要があると思う
using Microsoft.AspNet.Identity;
using System.Security.Claims;
編集:この回答は現在古くなっています。CORE 1.0でこれを達成する日付付きの方法については、SorenまたはAdrienの回答を参照してください。
var userId = User.GetUserId();
.NET Core 2.0の場合のみ、Controller
クラスにログインしているユーザーのユーザーIDをフェッチするには、以下が必要です。
var userId = this.User.FindFirstValue(ClaimTypes.NameIdentifier);
または
var userId = HttpContext.User.FindFirstValue(ClaimTypes.NameIdentifier);
例えば
contact.OwnerID = this.User.FindFirstValue(ClaimTypes.NameIdentifier);
この投稿のどこかで述べたように、GetUserId()メソッドは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);
}
空のプロジェクトを開始した場合は、startup.csのサービスにUserMangerを追加する必要がある場合があります。そうでなければ、これはすでに当てはまるはずです。
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"
のUser.FindFirstValue(ClaimTypes.NameIdentifier);
ですか?
エイドリアンの答えは正しいですが、これはすべて1行で行うことができます。余分な機能や混乱の必要はありません。
ASP.NET Core 1.0で確認しました
var user = await _userManager.GetUserAsync(HttpContext.User);
次に、のような変数の他のプロパティを取得できますuser.Email
。これが誰かの役に立つことを願っています。
ASP.NET Core 2.0、Entity Framework Core 2.0、AspNetCore.Identity 2.0 api(https://github.com/kkagill/ContosoUniversity-Backend):
Id
に変更されましたUser.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,
});
}
応答:
this.User.Identity.Name
しかし、ユーザー名になる傾向があります。私のテストでは、ユーザー名は電子メールであり、ユーザーが登録からログインするか、外部ログイン(Facebook、Googleなど)からログインするかです。次のコードはuserIdを返します。私のIDユーザーテーブルには自動インクリメントの主キーを使用しているため、int.Parseです。 int userId = int.Parse(this.User.FindFirstValue(ClaimTypes.NameIdentifier));
FindByIdAsync
ユーザー名を指定しているため、機能しません。に置き換えると機能しますFindByNameAsync
。
User.Identity.GetUserId();
asp.netアイデンティティコア2.0には存在しません。この点で、私は別の方法で管理してきました。ユーザー情報を取得するため、アプリケーション全体を使用するための共通クラスを作成しました。
共通クラスPCommonを作成し、
参照を追加してIPCommonをインターフェイスします。using 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();
}
}
ここでは、共通クラスの実装
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));
}
}
}
挿入アクションでユーザーIDと名前を取得する
_iPCommon.GetUserId();
ありがとう、Maksud
他の人のプロファイルで作業している管理者として、作業しているプロファイルのIDを取得する必要がある場合、ViewBagを使用してIDをキャプチャできます。例:ViewBag.UserId = userId; 一方、userIdは、作業中のメソッドの文字列パラメーターです。
[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);
}
ASP.NET MVCコントローラーでこれが必要な場合は、
using Microsoft.AspNet.Identity;
User.Identity.GetUserId();
using
これGetUserId()
がないとステートメントが存在しないため、ステートメントを追加する必要があります。
User.GetUserId()
あり、そうではありませんUser.Identity.GetUserId()
System.Web.HttpContext.Current.User.Identity.Name
か?