Page Menu
Home
GRNET
Search
Configure Global Search
Log In
Files
F1430946
institutional.rb
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Sun, Jan 18, 1:39 PM
Size
1 KB
Mime Type
text/plain
Expires
Tue, Jan 20, 1:39 PM (2 h, 15 m)
Engine
blob
Format
Raw Data
Handle
325929
Attached To
rARCHIVING archiving
institutional.rb
View Options
Warden
::
Strategies
.
add
(
:institutional
)
do
def
valid?
fetch_header
(
'HTTP_REMOTE_USER'
)
.
present?
&&
fetch_header
(
'HTTP_MAIL'
)
.
present?
&&
fetch_header
(
'HTTP_ENTITLEMENT'
)
.
present?
&&
fetch_header
(
'HTTP_ENTITLEMENT'
)
.
include?
(
'urn:mace:grnet.gr:archiving:admin'
)
end
def
fetch_header
(
header
)
request
.
env
[
header
]
end
def
authenticate!
Rails
.
logger
.
warn
(
"WARDEN: INFO institutional has valid headers"
)
if
!
Archiving
.
settings
[
:institutional_authentication_enabled
]
return
fail
!
(
"Shibboleth is temporarily disabled"
)
end
identifier
=
"institutional:
#{
fetch_header
(
"HTTP_REMOTE_USER"
)
}
"
user
=
User
.
find_or_initialize_by
(
identifier
:
identifier
)
return
fail
!
(
"Wrong credentials"
)
unless
user
user
.
login_at
=
Time
.
now
if
user
.
new_record?
user
.
email
=
fetch_header
(
"HTTP_MAIL"
)
user
.
username
=
fetch_header
(
"HTTP_MAIL"
)
user
.
enabled
=
true
user
.
institutional!
else
user
.
save
end
return
fail
!
(
"Your account is disabled"
)
unless
user
.
enabled?
success!
(
user
)
end
end
Event Timeline
Log In to Comment