Class: KPM::EngineController

Inherits:
ApplicationController
  • Object
show all
Defined in:
app/controllers/kpm/engine_controller.rb

Direct Known Subclasses

NodesInfoController, PluginsController

Instance Method Summary collapse

Instance Method Details

#current_tenant_userObject



11
12
13
14
15
16
# File 'app/controllers/kpm/engine_controller.rb', line 11

def current_tenant_user
  # If the rails application on which that engine is mounted defines such method (Devise), we extract the current user,
  # if not we default to nil, and serve our static mock configuration
  user = current_user if respond_to?(:current_user)
  KPM.current_tenant_user.call(session, user)
end

#get_layoutObject



7
8
9
# File 'app/controllers/kpm/engine_controller.rb', line 7

def get_layout
  layout ||= KPM.config[:layout]
end

#options_for_klientObject



18
19
20
21
22
23
24
25
26
27
# File 'app/controllers/kpm/engine_controller.rb', line 18

def options_for_klient
  user = current_tenant_user
  {
    :username => user[:username],
    :password => user[:password],
    :session_id => user[:session_id],
    :api_key => user[:api_key],
    :api_secret => user[:api_secret]
  }
end