Class: Kaui::BundlesController

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

Constant Summary

Constants included from EngineControllerUtil

EngineControllerUtil::MAXIMUM_NUMBER_OF_RECORDS_DOWNLOAD, 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

Methods included from ErrorHandler

#perform_redirect_after_error

Instance Method Details

#do_pause_resumeObject



104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
# File 'app/controllers/kaui/bundles_controller.rb', line 104

def do_pause_resume
  bundle = Kaui::Bundle.new(bundle_id: params.require(:id))

  paused = false
  resumed = false

  if params[:pause_requested_date].present?
    bundle.pause(params[:pause_requested_date], current_user.kb_username, params[:reason], params[:comment], options_for_klient)
    paused = true
  end

  if params[:resume_requested_date].present?
    bundle.resume(params[:resume_requested_date], current_user.kb_username, params[:reason], params[:comment], options_for_klient)
    resumed = true
  end

  msg = 'Bundle was successfully '
  msg += if paused && !resumed
           'paused'
         elsif !paused && resumed
           'resumed'
         else
           'updated'
         end
  redirect_to kaui_engine.(@account.), notice: msg
end

#do_transferObject



83
84
85
86
87
88
89
90
91
92
# File 'app/controllers/kaui/bundles_controller.rb', line 83

def do_transfer
  cached_options_for_klient = options_for_klient

   = Kaui::Account.find_by_id_or_key(params.require(:new_account_key), false, false, cached_options_for_klient)

  bundle = Kaui::Bundle.new(bundle_id: params.require(:id), account_id: .)
  bundle.transfer(nil, params[:billing_policy], current_user.kb_username, params[:reason], params[:comment], cached_options_for_klient)

  redirect_to kaui_engine.(.), notice: 'Bundle was successfully transferred'
end

#indexObject

rubocop:disable Lint/HashCompareByIdentity



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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
# File 'app/controllers/kaui/bundles_controller.rb', line 6

def index
  cached_options_for_klient = options_for_klient
  @search_query = params[:q].presence
  @search_by = params[:search_by] || 'bundle_id'
  @per_page = (params[:per_page] || 10).to_i
  @page = (params[:page] || 1).to_i

  fetch_bundle_tags = promise do
    all_bundle_tags = @account.all_tags(:BUNDLE, false, 'NONE', cached_options_for_klient)
    all_bundle_tags.each_with_object({}) do |entry, hsh|
      (hsh[entry.object_id] ||= []) << entry
    end
  end
  fetch_subscription_tags = promise do
    all_subscription_tags = @account.all_tags(:SUBSCRIPTION, false, 'NONE', cached_options_for_klient)
    all_subscription_tags.each_with_object({}) do |entry, hsh|
      (hsh[entry.object_id] ||= []) << entry
    end
  end
  fetch_bundle_fields = promise do
    all_bundle_fields = @account.all_custom_fields(:BUNDLE, 'NONE', cached_options_for_klient)
    all_bundle_fields.each_with_object({}) do |entry, hsh|
      (hsh[entry.object_id] ||= []) << entry
    end
  end
  fetch_subscription_fields = promise do
    all_subscription_fields = @account.all_custom_fields(:SUBSCRIPTION, 'NONE', cached_options_for_klient)
    all_subscription_fields.each_with_object({}) do |entry, hsh|
      (hsh[entry.object_id] ||= []) << entry
    end
  end
  fetch_available_tags = promise { Kaui::TagDefinition.all_for_bundle(cached_options_for_klient) }
  fetch_available_subscription_tags = promise { Kaui::TagDefinition.all_for_subscription(cached_options_for_klient) }

  if @search_query.present?
    @bundles = search_bundles(@search_query, @search_by, cached_options_for_klient)
    @total_pages = 1
    @page = 1
  else
    fetched = Kaui::Account.paginated_bundles(@account., (@page - 1) * @per_page, @per_page, 'NONE', cached_options_for_klient)
    @bundles = fetched
    @total_pages = (fetched.pagination_max_nb_records.to_f / @per_page).ceil
  end

  @tags_per_bundle = wait(fetch_bundle_tags)
  @tags_per_subscription = wait(fetch_subscription_tags)
  @custom_fields_per_bundle = wait(fetch_bundle_fields)
  @custom_fields_per_subscription = wait(fetch_subscription_fields)
  @available_tags = wait(fetch_available_tags)
  @available_subscription_tags = wait(fetch_available_subscription_tags)

  # Collect the distinct start dates from subscriptions on this page, then fetch
  # only the catalog versions needed — one per unique date — to avoid loading all
  # historical versions into memory.
  start_dates = @bundles.flat_map(&:subscriptions).filter_map(&:start_date).uniq
  @catalogs = start_dates.filter_map do |date|
    Kaui::Catalog.(@account., date, cached_options_for_klient)&.last
  rescue StandardError
    nil
  end.uniq(&:effective_date)

  @subscription = {}
  @bundles.each do |bundle|
    bundle.subscriptions.each do |sub|
      next if sub.product_category == 'ADD_ON'

      @subscription[bundle.bundle_id] = sub
      break
    end
  end
end

#pause_resumeObject



99
100
101
102
# File 'app/controllers/kaui/bundles_controller.rb', line 99

def pause_resume
  @bundle = Kaui::Bundle.find_by_id_or_key(params.require(:id), options_for_klient)
  @base_subscription = @bundle.subscriptions.find { |sub| sub.product_category == 'BASE' }
end

#restful_showObject



94
95
96
97
# File 'app/controllers/kaui/bundles_controller.rb', line 94

def restful_show
  bundle = Kaui::Bundle.find_by_id_or_key(params.require(:id), options_for_klient)
  redirect_to kaui_engine.(bundle.)
end

#transferObject

rubocop:enable Lint/HashCompareByIdentity



79
80
81
# File 'app/controllers/kaui/bundles_controller.rb', line 79

def transfer
  @bundle_id = params.require(:id)
end