Class: Kaui::AdminTenantsController

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

#add_allowed_userObject



334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
# File 'app/controllers/kaui/admin_tenants_controller.rb', line 334

def add_allowed_user
  current_tenant = safely_find_tenant_by_id(params[:tenant_id])
  allowed_user = Kaui::AllowedUser.find_by_kb_username(params.require(:allowed_user).require(:kb_username))

  if !current_user.root?
    flash[:error] = 'Only the root user can add users from tenants'
    redirect_to admin_tenant_path(current_tenant.id)
    return
  end

  if allowed_user.nil?
    flash[:error] = "User #{params.require(:allowed_user).require(:kb_username)} does not exist!"
    redirect_to admin_tenant_path(current_tenant.id)
    return
  end

  tenants_ids = allowed_user.kaui_tenants.map(&:id) || []
  tenants_ids << current_tenant.id
  allowed_user.kaui_tenant_ids = tenants_ids
  redirect_to admin_tenant_path(current_tenant.id), :notice => 'Allowed user was successfully added'
end

#allowed_usersObject



356
357
358
359
360
361
362
363
# File 'app/controllers/kaui/admin_tenants_controller.rb', line 356

def allowed_users
  json_response do
    tenant = safely_find_tenant_by_id(params[:tenant_id])
    actual_allowed_users = tenant.kaui_allowed_users.map {|au| au.id}

    retrieve_allowed_users_for_current_user.select {|au| !actual_allowed_users.include? au.id }
  end
end

#catalog_by_effective_dateObject



380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
# File 'app/controllers/kaui/admin_tenants_controller.rb', line 380

def catalog_by_effective_date
  json_response do
    current_tenant = safely_find_tenant_by_id(params[:id])
    effective_date = params.require(:effective_date)

    options = tenant_options_for_client
    options[:api_key] = current_tenant.api_key
    options[:api_secret] = current_tenant.api_secret

    catalog = []
    result = Kaui::Catalog::get_catalog_json(false, effective_date, options) rescue catalog = []

    # convert result to a full hash since dynamic attributes of a class are ignored when converting to json
    result.each do |data|
      plans = []
      data[:plans].each do |plan|
        plans << plan.instance_variables.each_with_object({}) {|var, hash_plan| hash_plan[var.to_s.delete("@")] = plan.instance_variable_get(var) }
      end

      catalog << {:version_date => data[:version_date],
          :currencies => data[:currencies],
          :plans => plans
        }
    end

    {:catalog => catalog }
  end
end

#createObject



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

def create
  param_tenant = params[:tenant]

  old_tenant = Kaui::Tenant.find_by_name(param_tenant[:name]) || Kaui::Tenant.find_by_api_key(param_tenant[:api_key])
  if old_tenant
    old_tenant.kaui_allowed_users << Kaui::AllowedUser.where(:kb_username => current_user.kb_username).first_or_create
    redirect_to admin_tenant_path(old_tenant[:id]), :notice => 'Tenant was successfully configured' and return
  end

  begin
    options = tenant_options_for_client
    new_tenant = nil

    begin
      options[:api_key] = param_tenant[:api_key]
      options[:api_secret] = param_tenant[:api_secret]
      new_tenant = Kaui::AdminTenant.find_by_api_key(param_tenant[:api_key], options)
    rescue KillBillClient::API::Unauthorized, KillBillClient::API::NotFound

      # Create the tenant in Kill Bill
      new_tenant = Kaui::AdminTenant.new
      new_tenant.external_key = param_tenant[:name]
      new_tenant.api_key = param_tenant[:api_key]
      new_tenant.api_secret = param_tenant[:api_secret]
      new_tenant = new_tenant.create(false, options[:username], nil, comment, options)
    end

    # Transform object to Kaui model
    tenant_model = Kaui::Tenant.new
    tenant_model.name = param_tenant[:name]
    tenant_model.api_key = param_tenant[:api_key]
    tenant_model.api_secret = param_tenant[:api_secret]
    tenant_model.kb_tenant_id = new_tenant.tenant_id

    # Save in KAUI tables
    tenant_model.save!
    # Make sure at least the current user can access the tenant
    tenant_model.kaui_allowed_users << Kaui::AllowedUser.where(:kb_username => current_user.kb_username).first_or_create
  rescue KillBillClient::API::Conflict => e
    # tenant api_key was found but has a wrong api_secret
    flash[:error] = "Submitted credentials for #{param_tenant[:api_key]} did not match the expected credentials."
    redirect_to admin_tenants_path and return
  rescue => e
    flash[:error] = "Failed to create the tenant: #{as_string(e)}"
    redirect_to admin_tenants_path and return
  end

  # Select the tenant, see TenantsController
  session[:kb_tenant_id] = tenant_model.kb_tenant_id
  session[:kb_tenant_name] = tenant_model.name
  session[:tenant_id] = tenant_model.id

  redirect_to admin_tenant_path(tenant_model[:id]), :notice => 'Tenant was successfully configured'
end

#create_simple_planObject



191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
# File 'app/controllers/kaui/admin_tenants_controller.rb', line 191

def create_simple_plan
  current_tenant = safely_find_tenant_by_id(params[:id])

  options = tenant_options_for_client
  options[:api_key] = current_tenant.api_key
  options[:api_secret] = current_tenant.api_secret

  simple_plan = params.require(:simple_plan).delete_if { |e, value| value.blank? }
  # Fix issue in Rails where first entry in the multi-select array is an empty string
  simple_plan["available_base_products"].reject!(&:blank?) if simple_plan["available_base_products"]

  simple_plan = KillBillClient::Model::SimplePlanAttributes.new(simple_plan)

  Kaui::Catalog.add_tenant_catalog_simple_plan(simple_plan, options[:username], nil, comment, options)

  redirect_to admin_tenant_path(current_tenant.id), :notice => 'Catalog plan was successfully added'
end

#delete_catalogObject



147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
# File 'app/controllers/kaui/admin_tenants_controller.rb', line 147

def delete_catalog
  tenant = safely_find_tenant_by_id(params[:id])

  options = tenant_options_for_client
  options[:api_key] = tenant.api_key
  options[:api_secret] = tenant.api_secret

  begin
    Kaui::Catalog.delete_catalog(options[:username], 'KAUI wrong catalog', comment, options)
  rescue  NoMethodError => _
    flash[:error] = 'Failed to delete catalog: only available in KB 0.19+ versions'
    redirect_to admin_tenants_path and return
  end

  redirect_to admin_tenant_path(tenant.id), :notice => 'Catalog was successfully deleted'
end

#display_catalog_xmlObject



365
366
367
368
# File 'app/controllers/kaui/admin_tenants_controller.rb', line 365

def display_catalog_xml
  catalog_xml = fetch_catalog_xml(params[:id], params.require(:effective_date))
  render xml: catalog_xml
end

#display_overdue_xmlObject



376
377
378
# File 'app/controllers/kaui/admin_tenants_controller.rb', line 376

def display_overdue_xml
  render xml: params.require(:xml)
end

#download_catalog_xmlObject



370
371
372
373
374
# File 'app/controllers/kaui/admin_tenants_controller.rb', line 370

def download_catalog_xml
  effective_date = params.require(:effective_date)
  catalog_xml = fetch_catalog_xml(params[:id], effective_date)
  send_data catalog_xml, filename: "catalog_#{effective_date}.xml", type: :xml
end

#indexObject



5
6
7
8
9
# File 'app/controllers/kaui/admin_tenants_controller.rb', line 5

def index
  # Display the configured tenants in KAUI (which could be different than the existing tenants known by Kill Bill)
  tenants_for_current_user = retrieve_tenants_for_current_user
  @tenants = Kaui::Tenant.all.select { |tenant| tenants_for_current_user.include?(tenant.kb_tenant_id) }
end

#modify_overdue_configObject



218
219
220
221
222
223
224
225
226
227
228
229
230
231
# File 'app/controllers/kaui/admin_tenants_controller.rb', line 218

def modify_overdue_config
  current_tenant = safely_find_tenant_by_id(params[:id])

  options = tenant_options_for_client
  options[:api_key] = current_tenant.api_key
  options[:api_secret] = current_tenant.api_secret

  view_form_model = params.require(:kill_bill_client_model_overdue).delete_if { |e, value| value.blank? }
  view_form_model['states'] = view_form_model['states'].values unless view_form_model['states'].blank?

  overdue = Kaui::Overdue::from_overdue_form_model(view_form_model)
  Kaui::Overdue::upload_tenant_overdue_config_json(overdue.to_json,options[:username], nil, comment, options)
  redirect_to admin_tenant_path(current_tenant.id), :notice => 'Overdue config was successfully added '
end

#newObject



11
12
13
# File 'app/controllers/kaui/admin_tenants_controller.rb', line 11

def new
  @tenant = Kaui::Tenant.new
end

#new_catalogObject



123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
# File 'app/controllers/kaui/admin_tenants_controller.rb', line 123

def new_catalog
  @tenant = safely_find_tenant_by_id(params[:id])

  options = tenant_options_for_client
  options[:api_key] = @tenant.api_key
  options[:api_secret] = @tenant.api_secret

  latest_catalog = Kaui::Catalog::get_catalog_json(true, nil, options)

  @ao_mapping = Kaui::Catalog::build_ao_mapping(latest_catalog)

  @available_base_products = latest_catalog && latest_catalog.products ?
      latest_catalog.products.select { |p| p.type == 'BASE' }.map { |p| p.name } : []
  @available_ao_products = latest_catalog && latest_catalog.products ?
      latest_catalog.products.select { |p| p.type == 'ADD_ON' }.map { |p| p.name } : []
  @available_standalone_products = latest_catalog && latest_catalog.products ?
      latest_catalog.products.select { |p| p.type == 'STANDALONE' }.map { |p| p.name } : []
  @product_categories = [:BASE, :ADD_ON, :STANDALONE]
  @billing_period = [:DAILY, :WEEKLY, :BIWEEKLY, :THIRTY_DAYS, :MONTHLY, :QUARTERLY, :BIANNUAL, :ANNUAL, :BIENNIAL]
  @time_units = [:UNLIMITED, :DAYS, :WEEKS, :MONTHS, :YEARS]

  @simple_plan = Kaui::SimplePlan.new
end

#new_overdue_configObject



209
210
211
212
213
214
215
216
# File 'app/controllers/kaui/admin_tenants_controller.rb', line 209

def new_overdue_config
  @tenant = safely_find_tenant_by_id(params[:id])

  options = tenant_options_for_client
  options[:api_key] = @tenant.api_key
  options[:api_secret] = @tenant.api_secret
  @overdue = Kaui::Overdue::get_overdue_json(options)
end

#new_plan_currencyObject



164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
# File 'app/controllers/kaui/admin_tenants_controller.rb', line 164

def new_plan_currency
  @tenant = safely_find_tenant_by_id(params[:id])

  is_plan_id_found = false
  plan_id = params[:plan_id]

  options = tenant_options_for_client
  options[:api_key] = @tenant.api_key
  options[:api_secret] = @tenant.api_secret

  catalog = Kaui::Catalog::get_catalog_json(true, nil, options)

  # seek if plan id exists
  catalog.products.each do |product|
    product.plans.each { |plan| is_plan_id_found |= plan.name == plan_id }
    break if is_plan_id_found
  end

  unless is_plan_id_found
    flash[:error] = "Plan id #{plan_id} was not found."
    redirect_to admin_tenant_path(@tenant[:id])
  end

  @simple_plan = Kaui::SimplePlan.new
  @simple_plan.plan_id = params[:plan_id]
end

#remove_allowed_userObject



320
321
322
323
324
325
326
327
328
329
330
331
332
# File 'app/controllers/kaui/admin_tenants_controller.rb', line 320

def remove_allowed_user
  current_tenant = safely_find_tenant_by_id(params[:id])
  au = Kaui::AllowedUser.find(params.require(:allowed_user).require(:id))

  if !current_user.root?
    render :json => {:alert => 'Only the root user can remove users from tenants'}.to_json, :status => 401
    return
  end

  # remove the association
  au.kaui_tenants.delete current_tenant
  render :json => '{}', :status => 200
end

#showObject



70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
# File 'app/controllers/kaui/admin_tenants_controller.rb', line 70

def show
  @tenant = safely_find_tenant_by_id(params[:id])
  @allowed_users = @tenant.kaui_allowed_users & retrieve_allowed_users_for_current_user

  set_tenant_if_nil(@tenant)

  options = tenant_options_for_client
  options[:api_key] = @tenant.api_key
  options[:api_secret] = @tenant.api_secret

  fetch_catalog_versions = promise { Kaui::Catalog::get_tenant_catalog_versions(options) rescue @catalog_versions = []}
  fetch_overdue = promise { Kaui::Overdue::get_overdue_json(options) rescue @overdue = nil }
  fetch_overdue_xml = promise { Kaui::Overdue::get_tenant_overdue_config('xml', options) rescue @overdue_xml = nil }

  plugin_repository = Kaui::AdminTenant::get_plugin_repository
  # hack:: replace paypal key with paypal_express, to set configuration and allow the ui to find the right configuration inputs
  plugin_repository = plugin_repository.inject({}) { |p, (k,v)| p[k.to_s.sub(/\Apaypal/, 'paypal_express').to_sym] = v; p }

  fetch_plugin_config = promise { Kaui::AdminTenant::get_oss_plugin_info(plugin_repository) }
  fetch_tenant_plugin_config = promise { Kaui::AdminTenant::get_tenant_plugin_config(plugin_repository, options) }

  @catalog_versions = []
  wait(fetch_catalog_versions).each_with_index do |effective_date, idx|
    @catalog_versions << {:version => idx,
                          :version_date => effective_date}
  end

  @latest_version = @catalog_versions[@catalog_versions.length - 1][:version_date] rescue nil

  @overdue = wait(fetch_overdue)
  @overdue_xml = wait(fetch_overdue_xml)
  @plugin_config = wait(fetch_plugin_config) rescue ''
  @tenant_plugin_config = wait(fetch_tenant_plugin_config) rescue ''

  # When reloading page from the view, it sends the last tab that was active
  @active_tab = params[:active_tab] || 'CatalogShow'
end

#suggest_plugin_nameObject



409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
# File 'app/controllers/kaui/admin_tenants_controller.rb', line 409

def suggest_plugin_name
  json_response do
    message = nil
    entered_plugin_name = params.require(:plugin_name)
    plugin_repository = view_context.plugin_repository

    found_plugin, weights = fuzzy_match(entered_plugin_name, plugin_repository)

    if weights.size > 0
      plugin_anchor = view_context.link_to(weights[0][:plugin_name], '#', id: 'suggested',
                                          data: {
                                              plugin_name: weights[0][:plugin_name],
                                              plugin_key: weights[0][:plugin_key],
                                              plugin_type: weights[0][:plugin_type],
                                          })
      message = "Similar plugin already installed: '#{plugin_anchor}'" if weights[0][:worth_weight].to_f >= 1.0 && weights[0][:installed]
      message = "Did you mean '#{plugin_anchor}'?" if weights[0][:worth_weight].to_f < 1.0 || !weights[0][:installed]
    end
    { suggestion: message, plugin: found_plugin }
  end
end

#switch_tenantObject



431
432
433
434
435
436
437
438
439
440
# File 'app/controllers/kaui/admin_tenants_controller.rb', line 431

def switch_tenant
  tenant = Kaui::Tenant.find_by_kb_tenant_id(params.require(:kb_tenant_id))

  # Select the tenant, see TenantsController
  session[:kb_tenant_id] = tenant.kb_tenant_id
  session[:kb_tenant_name] = tenant.name
  session[:tenant_id] = tenant.id

  redirect_to admin_tenant_path(tenant.id), :notice => "Tenant was switched to #{tenant.name}"
end

#upload_catalogObject



108
109
110
111
112
113
114
115
116
117
118
119
120
121
# File 'app/controllers/kaui/admin_tenants_controller.rb', line 108

def upload_catalog
  current_tenant = safely_find_tenant_by_id(params[:id])

  options = tenant_options_for_client
  options[:api_key] = current_tenant.api_key
  options[:api_secret] = current_tenant.api_secret

  uploaded_catalog = params[:catalog]
  catalog_xml = uploaded_catalog.read

  Kaui::AdminTenant.upload_catalog(catalog_xml, options[:username], nil, comment, options)

  redirect_to admin_tenant_path(current_tenant.id), :notice => 'Catalog was successfully uploaded'
end

#upload_catalog_translationObject



280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
# File 'app/controllers/kaui/admin_tenants_controller.rb', line 280

def upload_catalog_translation
  current_tenant = safely_find_tenant_by_id(params[:id])

  options = tenant_options_for_client
  options[:api_key] = current_tenant.api_key
  options[:api_secret] = current_tenant.api_secret

  locale = params[:translation_locale]
  uploaded_catalog_translation = params[:catalog_translation]
  catalog_translation = uploaded_catalog_translation.read

  Kaui::AdminTenant.upload_catalog_translation(catalog_translation, locale, true, options[:username], nil, comment, options)

  redirect_to admin_tenant_path(current_tenant.id), :notice => 'Catalog translation was successfully uploaded'
end

#upload_invoice_templateObject



248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
# File 'app/controllers/kaui/admin_tenants_controller.rb', line 248

def upload_invoice_template
  current_tenant = safely_find_tenant_by_id(params[:id])

  options = tenant_options_for_client
  options[:api_key] = current_tenant.api_key
  options[:api_secret] = current_tenant.api_secret

  is_manual_pay = params[:manual_pay]
  uploaded_invoice_template = params[:invoice_template]
  invoice_template = uploaded_invoice_template.read

  Kaui::AdminTenant.upload_invoice_template(invoice_template, is_manual_pay, true, options[:username], nil, comment, options)

  redirect_to admin_tenant_path(current_tenant.id), :notice => 'Invoice template was successfully uploaded'
end

#upload_invoice_translationObject



264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
# File 'app/controllers/kaui/admin_tenants_controller.rb', line 264

def upload_invoice_translation
  current_tenant = safely_find_tenant_by_id(params[:id])

  options = tenant_options_for_client
  options[:api_key] = current_tenant.api_key
  options[:api_secret] = current_tenant.api_secret

  locale = params[:translation_locale]
  uploaded_invoice_translation = params[:invoice_translation]
  invoice_translation = uploaded_invoice_translation.read

  Kaui::AdminTenant.upload_invoice_translation(invoice_translation, locale, true, options[:username], nil, comment, options)

  redirect_to admin_tenant_path(current_tenant.id), :notice => 'Invoice translation was successfully uploaded'
end

#upload_overdue_configObject



233
234
235
236
237
238
239
240
241
242
243
244
245
246
# File 'app/controllers/kaui/admin_tenants_controller.rb', line 233

def upload_overdue_config
  current_tenant = safely_find_tenant_by_id(params[:id])

  options = tenant_options_for_client
  options[:api_key] = current_tenant.api_key
  options[:api_secret] = current_tenant.api_secret

  uploaded_overdue_config = params[:overdue]
  overdue_config_xml = uploaded_overdue_config.read

  Kaui::AdminTenant.upload_overdue_config(overdue_config_xml, options[:username], nil, comment, options)

  redirect_to admin_tenant_path(current_tenant.id), :notice => 'Overdue config was successfully uploaded'
end

#upload_plugin_configObject



296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
# File 'app/controllers/kaui/admin_tenants_controller.rb', line 296

def upload_plugin_config
  current_tenant = safely_find_tenant_by_id(params[:id])

  options = tenant_options_for_client
  options[:api_key] = current_tenant.api_key
  options[:api_secret] = current_tenant.api_secret

  plugin_name = params[:plugin_name]
  plugin_properties = params[:plugin_properties]
  plugin_type = params[:plugin_type]
  plugin_key = params[:plugin_key]

  if plugin_properties.blank?
    flash[:error] = 'Plugin properties cannot be blank'
  else
    plugin_config = Kaui::AdminTenant.format_plugin_config(plugin_key, plugin_type, plugin_properties)

    Kaui::AdminTenant.upload_tenant_plugin_config(plugin_name, plugin_config, options[:username], nil, comment, options)
    flash[:notice] = 'Config for plugin was successfully uploaded'
  end

  redirect_to admin_tenant_path(current_tenant.id)
end