Class: Kaui::QueuesController

Inherits:
EngineController show all
Defined in:
app/controllers/kaui/queues_controller.rb

Constant Summary

Constants included from EngineControllerUtil

EngineControllerUtil::SIMPLE_PAGINATION_THRESHOLD

Instance Method Summary collapse

Methods inherited from EngineController

#check_for_redirect_to_tenant_screen, #current_ability, #current_user, #options_for_klient, #populate_account_details, #retrieve_allowed_users_for_current_user, #retrieve_tenants_for_current_user

Instance Method Details

#indexObject

rubocop:disable Lint/SuppressedException,Lint/EnsureReturn



6
7
8
9
10
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
45
46
47
48
49
# File 'app/controllers/kaui/queues_controller.rb', line 6

def index
  @account_id = params[:account_id]

  unless params[:max_date].blank?
    begin
      max_date_test = Time.parse(params[:max_date]).iso8601
    rescue StandardError
    ensure
      if max_date_test.nil?
        flash[:error] = I18n.translate('errors.messages.invalid_max_date')
        redirect_to (@account.) and return
      end
    end
  end

  unless params[:min_date].blank?
    begin
      min_date_test = Time.parse(params[:min_date]).iso8601
    rescue StandardError
    ensure
      if min_date_test.nil?
        flash[:error] = I18n.translate('errors.messages.invalid_min_date')
        redirect_to (@account.) and return
      end
    end
  end

  begin
    @now = Kaui::Admin.get_clock(nil, options_for_klient)['currentUtcTime'].to_datetime
  rescue KillBillClient::API::NotFound
    # If TestResource is not bound, then clock has not been manipulated, we can default to NOW
    @now = DateTime.now.in_time_zone('UTC')
  end

  min_date = (Time.parse(params[:min_date]).iso8601 unless params[:min_date].blank?) || '1970-01-01'
  max_date = (Time.parse(params[:max_date]).iso8601 unless params[:max_date].blank?) || Time.now.iso8601

  with_history = params[:with_history] || false
  @queues_entries = Kaui::Admin.get_queues_entries(@account_id,
                                                   options_for_klient.merge(withHistory: with_history,
                                                                            minDate: min_date, maxDate: max_date))

  params.permit!
end