I am having trouble injecting the current loggedonuser into my service layer, I am trying something similar to code camp server but struggling to figure out why my code does not work...

My app: UI layer -> conneced to Domain Service -> connected to Repo layer...

Repo is not connected to UI, everything is checked verified and passed back from DomainService layer...

My code:

//This is declared inside my domain service

public interface IUserSession
{
    UserDTO GetCurrentUser();
}

Inside my web application I want to implement this service then inject it into my service layer so (this is where I am stuck):

public class UserSession : IUserSession
{
    //private IAuthorizationService _auth;
    public UserSession()//IAuthorizationService _auth)
    {
        //this._auth = _auth;
    }

    public UserDTO GetCurrentUser()
    {
        var identity = HttpContext.Current.User.Identity;
        if (!identity.IsAuthenticated)
        {
            return null;
        }
        return null;
        //return _auth.GetLoggedOnUser(identity.Name);
    }


}

What I WANT to do is: get the loggedonuser from the authentication service, however that did not work so I stubbed out the code...

I bind everything inside global.asax like:

protected override void OnApplicationStarted()
    {
        AreaRegistration.RegisterAllAreas();
        // hand over control to NInject to register all controllers
        RegisterRoutes(RouteTable.Routes);
        Container.Get<ILoggingService>().Info("Application started");
       //here is the binding...
        Container.Bind<IUserSession>().To<UserSession>();
    }

Firstly: I am getting an exception when I try and consume a service which uses IUserSession, it says please provide a default parameterless constructor for controller x, however if I remove the reference from the domain service everything works...

Service ctor:

 private IReadOnlyRepository _repo;
    private IUserSession _session;
    public ActivityService(IReadOnlyRepository repo, IUserSession _session)
    {
      this._repo = repo;
      this._session = _session;
     }

Is there a better way/ simpler way to implement this?

UPATE with help from the reply below I managed to get this done, I have uploaded onto gituhub if anyone wants to know how I did it...

https://gist.github.com/1042173

link|improve this question

feedback

1 Answer

up vote 0 down vote accepted

I'm assuming you're using the NinjectHttpApplication since you have overridden OnApplicationStarted? If not, you should be, since it will register the Controllers for you with Ninject. If that's not happening, then you can get the error you are seeing.

Here's how I have done this in my application:

ControllerBase:

    [Inject]
    public IMembershipProvider Membership { get; set; }

    public Member CurrentMember
    {
        get { return Membership.GetCurrentUser() as Member; }
    }

IMembershipProvider:

    public Member GetCurrentUser()
    {
        if ( string.IsNullOrEmpty( authentication.CurrentUserName ) )
            return null;

        if ( _currentUser == null )
        {
            _currentUser = repository.GetByName( authentication.CurrentUserName );
        }
        return _currentUser;
    }
    private Member _currentUser; 

IAuthenticationProvider:

    public string CurrentUserName
    {
        get
        {
            var context = HttpContext.Current;
            if ( context != null && context.User != null && context.User.Identity != null )
                return HttpContext.Current.User.Identity.Name;
            else
                return null;
        }
    }

let me know if this doesn't make sense.

link|improve this answer
Thanks for your response, I am using application override to wire up ninject, anyway... the main part of my question - how would I wire up the IMembershipProvider or IAuthenticationProvider into my domain layer which is a seperate class library and it does not reference my web app??? – Haroon Jun 19 '11 at 22:36
I have IMembershipProvider in my Core library, which does not reference the Web. My Controllers and Services are also in Core, and have IMembershipProvider injected in the constructor. When the NinjectControllerFactory creates the controller, it will inject the IMembershipProvider into it. Then I just have a Ninject Module in my Web library that does the binding of the interface to the concrete type MembershipProvider. so you will need at least the interface to be in the same assembly as the classes that consume it. – dave thieben Jun 20 '11 at 13:55
Thats what I did, I had the interface defined inside my domain layer, then I implemented it inside my web app, I used ninject to manually bind it inside application start, I think I will try and bind it inside the Kernal and see if that works... – Haroon Jun 22 '11 at 10:53
Hey, I still dont understand how you got this to work... Why are you using the a custom basecontroller... – Haroon Jun 23 '11 at 6:05
1  
I managed to get this to work finally,i downloaded my code on github (above), it is fairly simple once you know how- and possibly kicking oneself for not being able to figure it out earlier :) – Haroon Jun 23 '11 at 15:29
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.