Class: Kaui::BundlesController

Inherits:
EngineController show all
Defined in:
app/controllers/kaui/bundles_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

#do_pause_resumeObject



86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
# File 'app/controllers/kaui/bundles_controller.rb', line 86

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



65
66
67
68
69
70
71
72
73
74
# File 'app/controllers/kaui/bundles_controller.rb', line 65

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
# File 'app/controllers/kaui/bundles_controller.rb', line 6

def index
  cached_options_for_klient = options_for_klient

  fetch_bundles = promise { @account.bundles(cached_options_for_klient) }
  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) }

  @bundles = wait(fetch_bundles)
  @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)

  # TODO: This doesn't take into account catalog versions
  catalogs = Kaui::Catalog.(@account., nil, cached_options_for_klient) || []
  @catalog = catalogs[-1]

  @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



81
82
83
84
# File 'app/controllers/kaui/bundles_controller.rb', line 81

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



76
77
78
79
# File 'app/controllers/kaui/bundles_controller.rb', line 76

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



61
62
63
# File 'app/controllers/kaui/bundles_controller.rb', line 61

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