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?
|
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?
| ||||
|
feedback
|
|
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 | |||
|
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). | |||
|
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? | |||
|
feedback
|