Class: RackCAS::Server
- Inherits:
-
Object
- Object
- RackCAS::Server
- Defined in:
- lib/rack-cas/server.rb
Instance Method Summary collapse
-
#initialize(url) ⇒ Server
constructor
A new instance of Server.
- #login_url(service_url, params = {}) ⇒ Object
- #logout_url(params = {}) ⇒ Object
- #validate_service(service_url, ticket) ⇒ Object
Constructor Details
#initialize(url) ⇒ Server
Returns a new instance of Server.
6 7 8 |
# File 'lib/rack-cas/server.rb', line 6 def initialize(url) @url = RackCAS::URL.parse(url) end |
Instance Method Details
#login_url(service_url, params = {}) ⇒ Object
10 11 12 13 |
# File 'lib/rack-cas/server.rb', line 10 def login_url(service_url, params = {}) service_url = URL.parse(service_url).to_s @url.dup.append_path('login').add_params({service: service_url}.merge(params)) end |
#logout_url(params = {}) ⇒ Object
15 16 17 18 19 20 |
# File 'lib/rack-cas/server.rb', line 15 def logout_url(params = {}) @url.dup.tap do |url| url.append_path('logout') url.add_params(params) unless params.empty? end end |
#validate_service(service_url, ticket) ⇒ Object
22 23 24 25 |
# File 'lib/rack-cas/server.rb', line 22 def validate_service(service_url, ticket) response = ServiceValidationResponse.new validate_service_url(service_url, ticket) [response.user, response.extra_attributes] end |