Sha256: ccc40041911c6351c81c0a53da05fc1ba3f413cbdf420b4c22618e6b327509ca

Contents?: true

Size: 1.88 KB

Versions: 4

Compression:

Stored size: 1.88 KB

Contents

# frozen_string_literal: true

module Kaui
  class TenantsController < Kaui::EngineController
    skip_before_action :check_for_redirect_to_tenant_screen

    def index
      # Retrieve current user and extract allowed list of tenants
      allowed_user = Kaui::AllowedUser.find_by_kb_username(current_user.kb_username)
      @tenants = allowed_user&.kaui_tenants || []

      #
      # If there is nothing, we check for override with KillBillClient.api_key/KillBillClient.api_secret
      # If there is only one, we skip the tenant screen since the choice is obvious
      # If not, we allow user to choose what he wants
      #
      case @tenants.size
      when 0
        tenant = KillBillClient.api_key.nil? ? nil : KillBillClient::Model::Tenant.find_by_api_key(KillBillClient.api_key, session_id: current_user.kb_session_id)
        if tenant.present?
          select_tenant_for_tenant_id(tenant.tenant_id, tenant.external_key, nil)
        else
          redirect_to new_admin_tenant_path
        end
      when 1
        # If there is only one tenant defined we skip the screen and set the tenant for the user
        select_tenant_for_tenant_id(@tenants[0].kb_tenant_id, @tenants[0].name, @tenants[0].id)
        # else jump to default view allowing to chose which tenant to pick
      end
    end

    def select_tenant
      tenant = Kaui::Tenant.find_by_kb_tenant_id(params.require(:kb_tenant_id))
      select_tenant_for_tenant_id(tenant.kb_tenant_id, tenant.name, tenant.id)
    end

    private

    def select_tenant_for_tenant_id(kb_tenant_id, kb_tenant_name_or_key, tenant_id)
      # Set kb_tenant_id in the session
      session[:kb_tenant_id] = kb_tenant_id
      session[:kb_tenant_name] = kb_tenant_name_or_key
      session[:tenant_id] = tenant_id

      # Devise will have stored the requested url while signed-out
      redirect_to stored_location_for(:user) || Kaui.home_path.call
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
kaui-3.0.4 app/controllers/kaui/tenants_controller.rb
kaui-3.0.2 app/controllers/kaui/tenants_controller.rb
kaui-2.2.1 app/controllers/kaui/tenants_controller.rb
kaui-3.0.1 app/controllers/kaui/tenants_controller.rb