Class: VertxWeb::JWTAuthHandler
- Inherits:
-
Object
- Object
- VertxWeb::JWTAuthHandler
show all
- Includes:
- AuthHandler
- Defined in:
- /Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-web/jwt_auth_handler.rb
Overview
An auth handler that provides JWT Authentication support.
Constant Summary
- @@j_api_type =
Object.new
Class Method Summary
(collapse)
Instance Method Summary
(collapse)
Class Method Details
+ (Boolean) accept?(obj)
22
23
24
|
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-web/jwt_auth_handler.rb', line 22
def @@j_api_type.accept?(obj)
obj.class == JWTAuthHandler
end
|
Create a JWT auth handler
92
93
94
95
96
97
98
99
|
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-web/jwt_auth_handler.rb', line 92
def self.create(authProvider=nil,skip=nil)
if authProvider.class.method_defined?(:j_del) && !block_given? && skip == nil
return ::Vertx::Util::Utils.safe_create(Java::IoVertxExtWebHandler::JWTAuthHandler.java_method(:create, [Java::IoVertxExtAuthJwt::JWTAuth.java_class]).call(authProvider.j_del),::VertxWeb::JWTAuthHandler)
elsif authProvider.class.method_defined?(:j_del) && skip.class == String && !block_given?
return ::Vertx::Util::Utils.safe_create(Java::IoVertxExtWebHandler::JWTAuthHandler.java_method(:create, [Java::IoVertxExtAuthJwt::JWTAuth.java_class,Java::java.lang.String.java_class]).call(authProvider.j_del,skip),::VertxWeb::JWTAuthHandler)
end
raise ArgumentError, "Invalid arguments when calling create(#{authProvider},#{skip})"
end
|
+ (Object) j_api_type
31
32
33
|
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-web/jwt_auth_handler.rb', line 31
def self.j_api_type
@@j_api_type
end
|
+ (Object) j_class
34
35
36
|
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-web/jwt_auth_handler.rb', line 34
def self.j_class
Java::IoVertxExtWebHandler::JWTAuthHandler.java_class
end
|
+ (Object) unwrap(obj)
28
29
30
|
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-web/jwt_auth_handler.rb', line 28
def @@j_api_type.unwrap(obj)
obj.j_del
end
|
+ (Object) wrap(obj)
25
26
27
|
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-web/jwt_auth_handler.rb', line 25
def @@j_api_type.wrap(obj)
JWTAuthHandler.new(obj)
end
|
Instance Method Details
- (self) add_authorities(authorities = nil)
Add a set of required authorities for this auth handler
59
60
61
62
63
64
65
|
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-web/jwt_auth_handler.rb', line 59
def add_authorities(authorities=nil)
if authorities.class == Set && !block_given?
@j_del.java_method(:addAuthorities, [Java::JavaUtil::Set.java_class]).call(Java::JavaUtil::LinkedHashSet.new(authorities.map { |element| element }))
return self
end
raise ArgumentError, "Invalid arguments when calling add_authorities(#{authorities})"
end
|
- (self) add_authority(authority = nil)
Add a required authority for this auth handler
49
50
51
52
53
54
55
|
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-web/jwt_auth_handler.rb', line 49
def add_authority(authority=nil)
if authority.class == String && !block_given?
@j_del.java_method(:addAuthority, [Java::java.lang.String.java_class]).call(authority)
return self
end
raise ArgumentError, "Invalid arguments when calling add_authority(#{authority})"
end
|
- (void) authorize(user = nil) { ... }
This method returns an undefined value.
Authorizes the given user against all added authorities.
82
83
84
85
86
87
|
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-web/jwt_auth_handler.rb', line 82
def authorize(user=nil)
if user.class.method_defined?(:j_del) && block_given?
return @j_del.java_method(:authorize, [Java::IoVertxExtAuth::User.java_class,Java::IoVertxCore::Handler.java_class]).call(user.j_del,(Proc.new { |ar| yield(ar.failed ? ar.cause : nil) }))
end
raise ArgumentError, "Invalid arguments when calling authorize(#{user})"
end
|
- (void) handle(event = nil)
This method returns an undefined value.
Something has happened, so handle it.
40
41
42
43
44
45
|
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-web/jwt_auth_handler.rb', line 40
def handle(event=nil)
if event.class.method_defined?(:j_del) && !block_given?
return @j_del.java_method(:handle, [Java::IoVertxExtWeb::RoutingContext.java_class]).call(event.j_del)
end
raise ArgumentError, "Invalid arguments when calling handle(#{event})"
end
|
- (void) parse_credentials(context = nil) { ... }
This method returns an undefined value.
Parses the credentials from the request into a JsonObject. The implementation should
be able to extract the required info for the auth provider in the format the provider
expects.
72
73
74
75
76
77
|
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-web/jwt_auth_handler.rb', line 72
def parse_credentials(context=nil)
if context.class.method_defined?(:j_del) && block_given?
return @j_del.java_method(:parseCredentials, [Java::IoVertxExtWeb::RoutingContext.java_class,Java::IoVertxCore::Handler.java_class]).call(context.j_del,(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result != nil ? JSON.parse(ar.result.encode) : nil : nil) }))
end
raise ArgumentError, "Invalid arguments when calling parse_credentials(#{context})"
end
|
- (self) set_audience(audience = nil)
103
104
105
106
107
108
109
|
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-web/jwt_auth_handler.rb', line 103
def set_audience(audience=nil)
if audience.class == Array && !block_given?
@j_del.java_method(:setAudience, [Java::JavaUtil::List.java_class]).call(audience.map { |element| element })
return self
end
raise ArgumentError, "Invalid arguments when calling set_audience(#{audience})"
end
|
- (self) set_ignore_expiration(ignoreExpiration = nil)
Set whether expiration is ignored
123
124
125
126
127
128
129
|
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-web/jwt_auth_handler.rb', line 123
def set_ignore_expiration(ignoreExpiration=nil)
if (ignoreExpiration.class == TrueClass || ignoreExpiration.class == FalseClass) && !block_given?
@j_del.java_method(:setIgnoreExpiration, [Java::boolean.java_class]).call(ignoreExpiration)
return self
end
raise ArgumentError, "Invalid arguments when calling set_ignore_expiration(#{ignoreExpiration})"
end
|
- (self) set_issuer(issuer = nil)
113
114
115
116
117
118
119
|
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-web/jwt_auth_handler.rb', line 113
def set_issuer(issuer=nil)
if issuer.class == String && !block_given?
@j_del.java_method(:setIssuer, [Java::java.lang.String.java_class]).call(issuer)
return self
end
raise ArgumentError, "Invalid arguments when calling set_issuer(#{issuer})"
end
|