Class: Caboose::StoreController

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

Instance Method Summary collapse

Methods inherited from ApplicationController

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

Instance Method Details

#admin_edit_generalObject



15
16
17
18
19
# File 'app/controllers/caboose/store_controller.rb', line 15

def admin_edit_general
  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_edit_packagesObject



43
44
45
46
47
# File 'app/controllers/caboose/store_controller.rb', line 43

def admin_edit_packages
  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_edit_paymentObject



22
23
24
25
26
# File 'app/controllers/caboose/store_controller.rb', line 22

def admin_edit_payment
  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_edit_shippingObject



29
30
31
32
33
# File 'app/controllers/caboose/store_controller.rb', line 29

def admin_edit_shipping
  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_edit_taxObject



36
37
38
39
40
# File 'app/controllers/caboose/store_controller.rb', line 36

def admin_edit_tax
  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_json_singleObject



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

def admin_json_single
  return if !user_is_allowed('invoices', 'view')
  sc = @site.store_config
  render :json => sc      
end

#admin_optionsObject



116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
# File 'app/controllers/caboose/store_controller.rb', line 116

def admin_options
  return if !user_is_allowed('sites', 'view')
  
  options = []
  case params[:field]
    when 'payment-processor'            
      options = [
        { 'value' => 'authorize.net'  , 'text' => 'Authorize.net' },
        { 'value' => 'stripe'         , 'text' => 'Stripe' }        
      ]
    when 'length-unit'
      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)'       }
      ]
    when 'weight-unit'
      options = [
        { 'value' => 'oz' , 'text' => 'Ounces (oz)'    },
        { 'value' => 'lb' , 'text' => 'Pounds (lb)'    },
        { 'value' => 'g'  , 'text' => 'Grams (g)'      },
        { 'value' => 'kg' , 'text' => 'Kilograms (kg)' }
      ]
    when 'default-payment-terms'
      options = [
        { 'value' => Invoice::PAYMENT_TERMS_PIA   , 'text' => 'Pay In Advance' },
        { 'value' => Invoice::PAYMENT_TERMS_NET7  , 'text' => 'Net 7'          },
        { 'value' => Invoice::PAYMENT_TERMS_NET10 , 'text' => 'Net 10'         },
        { 'value' => Invoice::PAYMENT_TERMS_NET30 , 'text' => 'Net 30'         },
        { 'value' => Invoice::PAYMENT_TERMS_NET60 , 'text' => 'Net 60'         },
        { 'value' => Invoice::PAYMENT_TERMS_NET90 , 'text' => 'Net 90'         },
        { 'value' => Invoice::PAYMENT_TERMS_EOM   , 'text' => 'End of Month'   }            
      ]
  end
  render :json => options
end

#admin_updateObject



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
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
107
108
109
110
111
112
113
# File 'app/controllers/caboose/store_controller.rb', line 50

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_testing'                       then sc.pp_testing                       = value                              
      when 'authnet_api_login_id'             then sc.             = value
      when 'authnet_api_transaction_key'      then sc.authnet_api_transaction_key      = value
      when 'authnet_relay_domain'             then sc.authnet_relay_domain             = value
      when 'stripe_secret_key'                then sc.stripe_secret_key                = value
      when 'stripe_publishable_key'           then sc.stripe_publishable_key           = 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 'ups_min'                          then sc.ups_min                          = value
      when 'ups_max'                          then sc.ups_max                          = value
      when 'usps_min'                         then sc.usps_min                         = value
      when 'usps_max'                         then sc.usps_max                         = value
      when 'fedex_min'                        then sc.fedex_min                        = value                
      when 'fedex_max'                        then sc.fedex_max                        = value        
      when 'taxcloud_api_id'                  then sc.taxcloud_api_id                  = value
      when 'taxcloud_api_key'                 then sc.taxcloud_api_key                 = value
      when 'origin_address1'                  then sc.origin_address1                  = value
      when 'origin_address2'                  then sc.origin_address2                  = 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 'origin_country'                   then sc.origin_country                   = 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 'auto_calculate_packages'          then sc.auto_calculate_packages          = value
      when 'auto_calculate_shipping'          then sc.auto_calculate_shipping          = value
      when 'auto_calculate_tax'               then sc.auto_calculate_tax               = value          
      when 'custom_packages_function'         then sc.custom_packages_function         = value
      when 'custom_shipping_function'         then sc.custom_shipping_function         = value   
      when 'custom_tax_function'              then sc.custom_tax_function              = value        
      when 'length_unit'                      then sc.length_unit                      = value
      when 'weight_unit'                      then sc.weight_unit                      = value
      when 'download_instructions'            then sc.download_instructions            = value
      when 'download_url_expires_in'          then sc.download_url_expires_in          = value            
      when 'starting_invoice_number'          then sc.starting_invoice_number          = value
      when 'default_payment_terms'            then sc.default_payment_terms            = value
	  end
	end
	
	resp.success = save && sc.save
	render :json => resp
end