Class: PusherPlatform::Instance
- Inherits:
-
Object
- Object
- PusherPlatform::Instance
- Defined in:
- lib/pusher-platform/instance.rb
Instance Method Summary collapse
- #authenticate(auth_payload, options) ⇒ Object
- #authenticate_with_refresh_token(auth_payload, options) ⇒ Object
- #authenticate_with_refresh_token_and_request(auth_payload, options) ⇒ Object
- #authenticate_with_request(request, options) ⇒ Object
- #generate_access_token(options) ⇒ Object
-
#initialize(options) ⇒ Instance
constructor
A new instance of Instance.
- #request(options) ⇒ Object
Constructor Details
#initialize(options) ⇒ Instance
Returns a new instance of Instance.
11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 |
# File 'lib/pusher-platform/instance.rb', line 11 def initialize() raise "No instance locator provided" if [:locator].nil? raise "No service name provided" if [:service_name].nil? raise "No service version provided" if [:service_version].nil? locator = [:locator] @service_name = [:service_name] @service_version = [:service_version] key_parts = [:key].match(/^([^:]+):(.+)$/) raise "Invalid key" if key_parts.nil? @key_id = key_parts[1] @key_secret = key_parts[2] split_locator = locator.split(':') @platform_version = split_locator[0] @cluster = split_locator[1] @instance_id = split_locator[2] @client = if [:client] [:client] else BaseClient.new( host: [:host] || "#{@cluster}.#{HOST_BASE}", port: [:port], instance_id: @instance_id, service_name: @service_name, service_version: @service_version ) end @authenticator = Authenticator.new(@instance_id, @key_id, @key_secret) end |
Instance Method Details
#authenticate(auth_payload, options) ⇒ Object
55 56 57 |
# File 'lib/pusher-platform/instance.rb', line 55 def authenticate(auth_payload, ) @authenticator.authenticate(auth_payload, ) end |
#authenticate_with_refresh_token(auth_payload, options) ⇒ Object
63 64 65 |
# File 'lib/pusher-platform/instance.rb', line 63 def authenticate_with_refresh_token(auth_payload, ) @authenticator.authenticate_with_refresh_token(auth_payload, ) end |
#authenticate_with_refresh_token_and_request(auth_payload, options) ⇒ Object
67 68 69 |
# File 'lib/pusher-platform/instance.rb', line 67 def authenticate_with_refresh_token_and_request(auth_payload, ) @authenticator.authenticate_with_refresh_token_and_request(auth_payload, ) end |
#authenticate_with_request(request, options) ⇒ Object
59 60 61 |
# File 'lib/pusher-platform/instance.rb', line 59 def authenticate_with_request(request, ) @authenticator.authenticate_with_request(request, ) end |
#generate_access_token(options) ⇒ Object
71 72 73 |
# File 'lib/pusher-platform/instance.rb', line 71 def generate_access_token() @authenticator.generate_access_token() end |
#request(options) ⇒ Object
46 47 48 49 50 51 52 53 |
# File 'lib/pusher-platform/instance.rb', line 46 def request() if [:jwt].nil? = .merge( { jwt: @authenticator.generate_access_token({ su: true })[:token] } ) end @client.request() end |