Where do I get information about the currently connected user? That is, how does shibboleth pass the information?

Can I set some restrictions on actions using [Authorize] attribute based on data acquired from shibboleth?

link|improve this question

feedback

3 Answers

up vote 2 down vote accepted

Shibboleth publishes user attributes associated with sessions into HTTP request headers, based on header names defined in Attribute Acceptance Policy (1.3.x) or Attribute Mapping (2.x) files. These headers are transformed into CGI variables based on mapping rules defined by the CGI specification.

You should be aware of this security advisory: http://shibboleth.internet2.edu/secadv/secadv%5F20090615.txt

link|improve this answer
feedback

I have never user shibboleth, but you can get information about the user from Controller.User property. It will return a generic principal of current thread. Using this principal you can check whether the user is authenticated and get a login name of the user. This is due to the reason that after logon an authentication cookie is set and this cookie contains limited amount of information. And on each request after logon only this cookie is checked (if it exists and valid - user is authenticated).
So if you need in some specific information you can manually load a user (it's better to use cache here) and check whatever you want.
Also you can create and attach your own principal with necessary information to the thread on start of a request (e.g. on start of a request load the user from db/cache using user name from base principal, create and set your own principal to thread). After this you can check all properties of the user you need.

link|improve this answer
feedback

Where would you attach your own principal? You say on the start of the request but what if you don't want every request authorizing?

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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