views:

79

answers:

4

I would like to extend IPrincipal in asp.net to allow me to get the usertype that I will define. I would like to make it possible to do this in a controller

string type = User.UserType 

then in my extension method i will have a method like

public string UserType()
{
  // do some database access 
  return userType

}

how can I do this? is it possible? Thanks!

+1  A: 

Hi,

Here is an example custom class that implements IPrincipal. This class includes a few extra methods to check for role affiliation but shows a property named UserType per your requirements.

  public class UserPrincipal : IPrincipal
  {
    private IIdentity _identity;
    private string[] _roles;

    private string _usertype = string.Empty;


    public UserPrincipal(IIdentity identity, string[] roles)
    {
      _identity = identity;
      _roles = new string[roles.Length];
      roles.CopyTo(_roles, 0);
      Array.Sort(_roles);
    }

    public IIdentity Identity
    {
      get
      {
        return _identity;
      }
    }

    public bool IsInRole(string role)
    {
      return Array.BinarySearch(_roles, role) >= 0 ? true : false;
    }

    public bool IsInAllRoles(params string[] roles)
    {
      foreach (string searchrole in roles)
      {
        if (Array.BinarySearch(_roles, searchrole) < 0)
        {
          return false;
        }
      }
      return true;
    }

    public bool IsInAnyRoles(params string[] roles)
    {
      foreach (string searchrole in roles)
      {
        if (Array.BinarySearch(_roles, searchrole) > 0)
        {
          return true;
        }
      }
      return false;
    }

    public string UserType
    {
      get
      {
        return _usertype;
      }
      set
      {
        _usertype = value;
      }
    }

  }

Enjoy!

Doug
Right, except that they couldn't call UserType given a reference to IPrincipal.
Steven Sudit
+1  A: 

Basically, no. You can implement IPrincipal with a class such as MyPrincipal, and that class can have a UserType property, but you'd have to access the instance through a reference of its own type in order to reach it, not through the interface reference.

edit

An extension method could work, but only if you're absolutely certain you'll never call it on something that implements IPrincipal but isn't an instance of your own class.

Steven Sudit
Thank you. I will think about the the chances of IPrincipal being implemented somewhere else. I am not sure if it ever will on my application. I am not sure what scenarios would cause this. But if so the implementing it would also work for me. Thank you sir!
twal
@twal: Often, the framework hands you an IPrincipal whose implementation is some class from that framework. So long as you're certain this won't happen, an extension method will fill your needs.
Steven Sudit
Thank you Steven!
twal
+1  A: 

Sure. Make your class implements IPrincipal:

public class MyPrinciple : IPrincipal {
    // do whatever
}

Extension method:

public static string UserType(this MyPrinciple principle) {
    // do something
}
Johannes Setiabudi
Same problem as SLaks' answer: the "do something" is going to involve downcasting, which can fail.
Steven Sudit
+1  A: 

You can make an extension method:

public static string UserType(this IPrincipal principal) {
    // do some database access 
    return something;
}
SLaks
That would be clever, but risky. The "return something" part would actually have to downcast it to his implementation and call some property. This would fail if executed on any other IPrincpal implementation.
Steven Sudit
what does the class need to look like in which this extension method is found?
twal
It needs to be a `static class`.
SLaks