7

我为实体框架和 asp.net 身份创建了自定义用户模型。我在这里检查了其他答案,它们与我的问题很接近,但答案不符合我的要求。所以我在这里问。

一切都好。但是当我尝试获取用户 ID 时:

 ApplicationUser user = await manager.FindByIdAsync(User.Identity.GetUserId());

User.Identity.GetUserId() 返回字符串。我像Guid一样配置它。但它返回字符串:(

我的课在这里。请帮助我,如何在 Web api 控制器中获取 User.Identity.GetUserId() 作为 Guid ?

public class GuidUserLogin : IdentityUserLogin<Guid>
    {
    }


    public class GuidUserRole : IdentityUserRole<Guid>
    {
    }

    public class GuidUserClaim : IdentityUserClaim<Guid>
    {
    }

    public class GuidRole : IdentityRole<Guid, GuidUserRole>
    {
    }

//public class GuidUserContext : IdentityDbContext<ApplicationUser, GuidRole, Guid, GuidUserLogin, GuidUserRole, GuidUserClaim> { }
    public class GuidUserStore : UserStore<ApplicationUser, GuidRole, Guid, GuidUserLogin, GuidUserRole, GuidUserClaim>
    {
        public GuidUserStore(DbContext context)
            : base(context)
        {
        }
    }

    public class GuidRoleStore : RoleStore<GuidRole, Guid, GuidUserRole>
    {
        public GuidRoleStore(DbContext context)
            : base(context)
        {
        }
    }


    public class ApplicationUser : IdentityUser<Guid, GuidUserLogin, GuidUserRole, GuidUserClaim>, ICreateDateRequired
    {
        public ApplicationUser()
        {


        }

        [Key]
        public Guid UserId { get; set; }

        public override Guid Id { get; set; }

        public override string UserName { get; set; }
        public string Name { get; set; }
        public string Surname { get; set; }

        public string Password { get; set; }

        //Matching Attributes

        public override string Email { get; set; }
        public string FacebookId { get; set; }
        public string TwitterId { get; set; }
        public string GoogleId { get; set; }
        public override string PhoneNumber { get; set; }

        public string SocialAccessToken { get; set; }

        public string Gender { get; set; }

        public virtual List<Shade> Shades { get; set; }

        [InverseProperty("ParentUser")]
        public virtual List<UserFriendship> Friends { get; set; }

        public virtual List<Contact> Contacts { get; set; }

        //[Column(TypeName = "DateTime2")]
        //[DatabaseGenerated(DatabaseGeneratedOption.Computed)]
        public DateTime? CreateDate { get; set; }

        public string ImageUrl { get; set; }
        public string ThumbUrl { get; set; }
        public string BackUrl { get; set; }

        public virtual List<ContactDetail> UserContactDetails { get; set; }
    }
4

3 回答 3

11

GetUserId 的定义是这样的:

public static string GetUserId(this IIdentity identity);
public static T GetUserId<T>(this IIdentity identity) where T : IConvertible;

不幸的是,Guid 不是 IConvertible,它不会以通用形式返回 Guid 类型。因此,我们不能User.Identity.GetUserId()<Guid>像某些人User.Identity.GetUserId()<Int>在将 ID 更改为 Int 时使用的那样使用:

因此,您应该使用Guid.Parse()Guid.TryParse()

Guid.Parse(User.Identity.GetUserId())

@Erik 方法工作正常,但由于我不想覆盖原来的方法,我添加了以下通用扩展:

 public static class ExtensionMethods
{
    public static Guid ToGuid(this string value)
    {
        Guid result= Guid.Empty;
        Guid.TryParse(value, out result);
        return result;          
    }
}

然后我用这个:

User.Identity.GetUserId().ToGuid()

编辑:我想出了另一个解决方案:

我为 Identity 对象添加了一个扩展。

public static class IdentityExtensions
{
    public static Guid GetGuidUserId(this IIdentity identity)
    {
        Guid result = Guid.Empty;
        Guid.TryParse(identity.GetUserId(), out result);
        return result;
    }   
}
于 2016-01-04T16:59:46.233 回答
5

GetUserId()其实就是下面的扩展方法:

Microsoft.AspNet.Identity.IdentityExtensions.GetUserId(this IIdentity identity)

在某些时候,无法将值存储为Guid(cookie!)。这意味着您必须手动更改它(我今天自己做了这个)。我所做的是将所有使用Microsoft.AspNet.Identity,的Microsoft.AspNet.Identity.Owin东西Microsoft.Owin.Security移到一个单独的目录中。然后写了我自己的扩展类:

internal static class IIdentityExtensions
{
    public static Guid GetUserId(this IIdentity identity)
    {
        var result = Guid.Empty;

        string id = Microsoft.AspNet.Identity.IdentityExtensions.GetUserId(identity);

        Guid.TryParse(id, out result);

        return result;
    }

    public static string GetUserName(this IIdentity identity)
    {
        string result = Microsoft.AspNet.Identity.IdentityExtensions.GetUserName(identity);

        return result;
    }

    public static string FindFirstValue(this ClaimsIdentity identity, string claimType)
    {
        string result = Microsoft.AspNet.Identity.IdentityExtensions.FindFirstValue(identity, claimType);

        return result;
    }
}

只要确保您检查Guid.Empty(或将其更改为 Guid?)。你会发现有很多东西只是 accept string,你必须转换它们。例如:

namespace Microsoft.Owin.Security
{
  public static class AuthenticationManagerExtensions
  {
    public static ClaimsIdentity CreateTwoFactorRememberBrowserIdentity(
      this IAuthenticationManager manager, 
      string userId);
    public static Task<bool> TwoFactorBrowserRememberedAsync(
      this IAuthenticationManager manager, 
      string userId);
  }
}

因此,您必须使用.GetUserId().ToString()某些方法才能起作用。

于 2014-05-13T02:36:45.500 回答
0

对于我们的项目,我需要基于IUserKey(并将标识符存储long为此接口中的 a)来抽象密钥。

通过简单地覆盖用户键对象的具体实现中的方法,解决了UserManager严重依赖字符串的问题(对我来说) 。ToString()

public class IdentityUserKey : IIdentityUserKey
{
    public long UserId { get; set; }

    public bool Equals(IIdentityUserKey other)
    {
        return other != null && other.UserId == UserId;
    }

    public override string ToString()
    {
        return UserId.ToString();
    }
}

在您的情况下,也许您可​​以包装Guid在类似的界面中,然后也提供必要的ToString()覆盖。

于 2015-04-10T18:29:36.683 回答