Class: Caboose::StoreController

Inherits:
ApplicationController show all
Defined in:
app/controllers/caboose/store_controller.rb

Instance Method Summary collapse

Methods inherited from ApplicationController

#admin_add, #admin_bulk_add, #admin_bulk_delete, #admin_bulk_update, #admin_delete, #admin_index, #admin_json, #admin_json_single, #before_action, #before_before_action, #hashify_query_string, #init_cart, #logged_in?, #logged_in_user, #login_user, #logout_user, #parse_url_params, #reject_param, #user_is_allowed, #user_is_allowed_to, #validate_cookie, #validate_token, #var, #verify_logged_in

Instance Method Details

#admin_editObject

GET /admin/store



8
9
10
11
12
# File 'app/controllers/caboose/store_controller.rb', line 8

def admin_edit
  return if !user_is_allowed('sites', 'edit')
  @store_config = @site.store_config
  @store_config = StoreConfig.create(:site_id => @site.id) if @store_config.nil?      
end

#admin_updateObject

PUT /admin/store



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/caboose/store_controller.rb', line 15

def admin_update
  return if !user_is_allowed('sites', 'edit')

  resp = StdClass.new     
  sc = @site.store_config
  sc = StoreConfig.create(:site_id => @site.id) if sc.nil?
      
  save = true
  params.each do |name,value|
    case name
      when 'site_id'                  then sc.site_id                 = value
      when 'pp_name'                  then sc.pp_name                 = value
      when 'pp_username'              then sc.pp_username             = value
      when 'pp_password'              then sc.pp_password             = value
      when 'pp_testing'               then sc.pp_testing              = value
      when 'pp_relay_domain'          then sc.pp_relay_domain         = value
      when 'ups_username'             then sc.ups_username            = value
      when 'ups_password'             then sc.ups_password            = value
      when 'ups_key'                  then sc.ups_key                 = value
      when 'ups_origin_account'       then sc.      = value
      when 'usps_username'            then sc.usps_username           = value
      when 'usps_secret_key'          then sc.usps_secret_key         = value
      when 'usps_publishable_key'     then sc.usps_publishable_key    = value
      when 'fedex_username'           then sc.fedex_username          = value
      when 'fedex_password'           then sc.fedex_password          = value
      when 'fedex_key'                then sc.fedex_key               = value
      when 'fedex_account'            then sc.           = value
      when 'origin_country'           then sc.origin_country          = value
      when 'origin_state'             then sc.origin_state            = value
      when 'origin_city'              then sc.origin_city             = value
      when 'origin_zip'               then sc.origin_zip              = value
      when 'fulfillment_email'        then sc.fulfillment_email       = value
      when 'shipping_email'           then sc.shipping_email          = value
      when 'handling_percentage'      then sc.handling_percentage     = value
      when 'calculate_packages'       then sc.calculate_packages      = value
      when 'shipping_rates_function'  then sc.shipping_rates_function = value
      when 'length_unit'              then sc.length_unit             = value
      when 'weight_unit'              then sc.weight_unit             = value                      
	  end
	end
	
	resp.success = save && sc.save
	render :json => resp
end

#length_unit_optionsObject

GET /admin/store/length-unit-options



71
72
73
74
75
76
77
78
79
80
81
# File 'app/controllers/caboose/store_controller.rb', line 71

def length_unit_options
  return if !user_is_allowed('sites', 'view')
  options = [
    { 'value' => 'in' , 'text' => 'Inches (in)'     },
    { 'value' => 'ft' , 'text' => 'Feet (ft)'       },
    { 'value' => 'mm' , 'text' => 'Millimeter (mm)' },
    { 'value' => 'cm' , 'text' => 'Centimeter (cm)' },
    { 'value' => 'm'  , 'text' => 'Meter (m)'       }
  ]
  render :json => options
end

#payment_processor_optionsObject

GET /admin/store/payment-processor-options



61
62
63
64
65
66
67
68
# File 'app/controllers/caboose/store_controller.rb', line 61

def payment_processor_options
  return if !user_is_allowed('sites', 'view')
  options = [
    { 'value' => 'authorize.net'  , 'text' => 'Authorize.net' },
    { 'value' => 'stripe'         , 'text' => 'Stripe' }        
  ]
  render :json => options
end

#weight_unit_optionsObject

GET /admin/store/weight-unit-options



84
85
86
87
88
89
90
91
92
93
# File 'app/controllers/caboose/store_controller.rb', line 84

def weight_unit_options
  return if !user_is_allowed('sites', 'view')
  options = [
    { 'value' => 'oz' , 'text' => 'Ounces (oz)'    },
    { 'value' => 'lb' , 'text' => 'Pounds (lb)'    },
    { 'value' => 'g'  , 'text' => 'Grams (g)'      },
    { 'value' => 'kg' , 'text' => 'Kilograms (kg)' }
  ]
  render :json => options
end