Class: LocatorRecordsController

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

Overview

Controller: locator records.

Constant Summary

Constants included from Controllers::AnalyticsEvents

Controllers::AnalyticsEvents::MAX_QUEUED_EVENTS, Controllers::AnalyticsEvents::SESSION_KEY

Constants included from Controllers::ErrorRendering

Controllers::ErrorRendering::NON_CONTENT_PATH_PREFIXES

Instance Method Summary collapse

Methods inherited from ApplicationController

#account_impersonated?, #add_to_flash, #after_sign_in_path_for, #bypass_forgery_protection?, #chat_enabled?, #cloudflare_cleared?, #default_catalog, #default_url_options, #enable_turbo_frames, #find_publication, #fix_invalid_accept_header, #init_js_utils, #is_globals_call?, #layout_by_resource, #locale_store, #redirect_to, #require_employee_for_crm, #set_base_host, #set_real_ip, #set_report_errors_for, #should_render_layout?, #skip_layout_for_turbo_frame?, #stamp_impersonation_context, #tab_frame_breakout_request?, #warmlyyours_canada_ip?, #warmlyyours_ip?, #y

Methods included from Controllers::ReturnPathHandling

#check_for_return_path, #redirect_to_return_path_or_default

Methods included from Controllers::AnalyticsEvents

#consume_queued_analytics_events, #registration_lead_type, #track_event

Methods included from Controllers::DeviceDetection

#device_detector, #is_ie?

Methods included from Controllers::SubdomainDetection

#is_crm_request?, #is_www_request?, #json_request?

Methods included from Controllers::TurboSafeRedirect

#redirect_to

Methods included from Controllers::TrackingDetection

#bot_request?, #gdpr_country?, #gdpr_country_data, #prevent_bots, #set_tracking_cookie, #track_visitor?

Methods included from Controllers::AcceleratedFileSending

#send_file_accelerated, #send_upload_accelerated

Methods included from Controllers::ErrorRendering

#excp_string, #mail_to_for_error_reporting, #render_400, #render_404, #render_406, #render_410, #render_500, #render_invalid_authenticity_token, #render_ip_spoof_error, #render_unpermitted_parameters, #safe_referer_or_fallback

Methods included from Controllers::TurnstileVerification

#load_turnstile_script_tag, #turnstile_lazy_widget, #turnstile_script_tag, #turnstile_widget, #validate_turnstile!

Methods included from Controllers::CloudflareCaching

edge_cached, #edge_cached_action?, #reset_cloudflare_cache, #set_cloudflare_cache, #skip_edge_cache!, #skip_session

Methods included from Controllers::Webpackable

#preload_webpack_fonts, #webpack_css_include, #webpack_css_url, #webpack_js_include, #wpd_is_running?

Methods included from Controllers::Localizable

#cloudflare_country_locale, #determine_request_locale, #geocoder_locale, #guest_user_locale_check, #locale_optional_www_auth_path?, #param_locale, #set_locale, #set_request_locale, #skip_localization?, #warmlyyours_ip_locale

Methods included from Controllers::Authenticable

#access_denied, #authenticate_account, #authenticate_account!, #authenticate_account_from_login_token!, #check_is_a_manager, #check_is_a_sales_manager, #check_is_an_admin, #check_is_an_employee, #check_party, #clear_mismatched_guest_user, #create_guest_user, #credentials?, #current_or_guest_user, #current_or_guest_user_id_read_only, #current_user, #devise_mapping, #fully_logged_in?, #generate_bot_id, #guest_user, #identifiable?, #init_current_user, #initialize_guest, #load_context_user, #logging_in, #resource, #resource_name, #restrict_access_for_non_employees, #scrubbed_request_path, #user_object, #warn_on_session_guest_id_leak

Methods included from UrlsHelper

#catalog_breadcrumb_links, #catalog_link, #catalog_link_for_product_line, #catalog_link_for_sku, #cms_link, #delocalized_path, #path_to_sales_product_sku, #path_to_sales_product_sku_for_product_line, #path_to_sales_product_sku_for_product_line_slug, #product_line_from_catalog_link, #protocol_neutral_url, #sanitize_external_url, #valid_external_url?

Instance Method Details

#complete_dealer_confirmation_legacyvoid

This method returns an undefined value.

Processes the legacy dealer confirmation form submission.



157
158
159
160
161
162
163
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
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
# File 'app/controllers/locator_records_controller.rb', line 157

def complete_dealer_confirmation_legacy
  set_variables
  errs = []
  address_id = params[:locator_record].delete(:address_id).to_i
  # puts "address_id: #{address_id}"
  if address_id > 0
    @locator_record.address = Address.find(address_id)
    address_ok = true # address required
  else
    @new_address = @customer.addresses.new(params[:new_address])
    @locator_record.address = @new_address
    address_ok = @new_address.valid?
  end
  phone_ok = true
  phone_id = params[:locator_record].delete(:phone_id).to_i
  # puts "phone_id: #{phone_id}"
  if params[:new_phone][:detail].present?
    @new_phone = @customer.contact_points.create(params[:new_phone])
    # need fancy footwork here since contact points remove dupes after save and after cleaning up detail format etc.
    @locator_record.phone_id = begin
      @customer.contact_points.find_by(detail: @new_phone.detail, category: @new_phone.category).id
    rescue StandardError
      nil
    end
    phone_ok = @locator_record.phone.present?
  elsif phone_id > 0
    @locator_record.phone_id = phone_id
  end
  fax_ok = true
  fax_id = params[:locator_record].delete(:fax_id).to_i
  # puts "fax_id: #{fax_id}"
  if params[:new_fax][:detail].present?
    @new_fax = @customer.contact_points.create(params[:new_fax])
    # need fancy footwork here since contact points remove dupes after save and after cleaning up detail format etc.
    @locator_record.fax_id = begin
      @customer.contact_points.find_by(detail: @new_fax.detail, category: @new_fax.category).id
    rescue StandardError
      nil
    end
    fax_ok = @locator_record.fax.present?
  elsif fax_id > 0
    @locator_record.fax_id = fax_id
  end
  email_id = params[:locator_record].delete(:email_id).to_i
  # puts "email_id: #{email_id}"
  if params[:new_email][:detail].present?
    @new_email = @customer.contact_points.create(params[:new_email])
    # need fancy footwork here since contact points remove dupes after save and after cleaning up detail format etc.
    @locator_record.email_id = begin
      @customer.contact_points.find_by(detail: @new_email.detail, category: @new_email.category).id
    rescue StandardError
      nil
    end
    email_ok = @locator_record.email.present?
  elsif email_id > 0
    @locator_record.email_id = email_id
    email_ok = true # email required
  else
    errs << 'Please provide an email address and check it is correct '
  end
  web_ok = true
  website_id = params[:locator_record].delete(:website_id).to_i
  # puts "website_id: #{website_id}"
  if params[:new_website][:detail].present?
    @new_website = @customer.contact_points.create(params[:new_website])
    # need fancy footwork here since contact points remove dupes after save and after cleaning up detail format etc.
    @locator_record.website_id = begin
      @customer.contact_points.find_by(detail: @new_website.detail, category: @new_website.category).id
    rescue StandardError
      nil
    end
    web_ok = @locator_record.website.present?
  elsif website_id > 0
    @locator_record.website_id = website_id
    web_ok = true
  end
  # puts "params[:locator_record]: #{params[:locator_record].inspect}"
  # puts "@locator_record, BEFORE: #{@locator_record.inspect}"
  @locator_record.attributes = params[:locator_record]
  # puts "@locator_record, AFTER: #{@locator_record.inspect}"
  if @locator_record.valid? && address_ok && phone_ok && fax_ok && email_ok && web_ok
    @locator_record.save
    @locator_record.dealer_confirm
    @locator_record.send_confirmation_email
    # market_materials_order_msg = ""
    # materials = []
    # check to see if the dealer ordered display materials. Removed per Elodies request on Jan 17th 2019
    # if (params[:order_materials][:order_infloor_display] == "1")
    #   @locator_record.schedule_dealer_locator_activity(task_type="DISPINF")
    #   materials << "in floor display"
    # end
    # if (params[:order_materials][:order_countertop_display] == "1")
    #   @locator_record.schedule_dealer_locator_activity(task_type="DISPHCTD")
    #   materials << "countertop display"
    # end
    # if (params[:order_materials][:order_marketing_materials] == "1")
    #   @locator_record.schedule_dealer_locator_activity(task_type="BINDER")
    #   materials << "binder of marketing materials"
    # end
    # if (params[:order_materials][:order_infloor_display] == "1" || params[:order_materials][:order_countertop_display] == "1" || params[:order_materials][:order_marketing_materials] == "1")
    #   market_materials_order_msg += "You requested: #{materials.join(', ')}."
    # end
    flash[:info] = 'Thank you for confirming your dealer/installer listing.' # {market_materials_order_msg}" removed per Elodies request
    add_to_flash(@locator_record.address.autocorrect_message, :warning) if @locator_record.address.autocorrect_message.present?
    redirect_to cms_link('/')
  else

    errs << @locator_record.errors_to_s
    errs << @new_address.errors_to_s unless address_ok
    errs << @new_phone.errors_to_s unless phone_ok
    errs << @new_fax.errors_to_s unless fax_ok
    errs << @new_email.errors_to_s if @new_email && !email_ok
    errs << @new_website.errors_to_s unless web_ok
    error_msg = errs.join(', ')

    @new_address ||= @customer.addresses.new(state_code: begin
      @customer.shipping_address.state_code
    rescue StandardError
      nil
    end)
    @new_phone ||= @customer.contact_points.new(category: ContactPoint::PHONE)
    flash.now[:error] =
      "There was an issue posting your dealer locator listing data: #{error_msg}. Please try again, or contact <a href='mailto:webmaster@warmlyyours.com?subject=#{CGI.escape('WarmlyYours Dealer/Installer Confirmation Form Issue')}&body=#{CGI.escape("I had an issue trying to confirm my dealer/installer listing on the WarmlyYours Dealer/Installer Locator: #{error_msg}.")}'>webmaster@warmlyyours.com</a>."
    render :dealer_confirmation_legacy, layout: 'www/cms_page', status: :unprocessable_content
  end
end

This method returns an undefined value.

Confirms a dealer listing from the emailed link, applying the submitted params.



112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
# File 'app/controllers/locator_records_controller.rb', line 112

def confirm_by_email_link
  res = 'locator record not found!'
  lr_id = begin
    Encryption.decrypt_string(params[:locator_record_id].to_s)
  rescue StandardError
    nil
  end
  @locator_record = LocatorRecord.find(lr_id) if lr_id
  res = @locator_record.update_from_user_params(params) if @locator_record
  respond_to do |format|
    format.html { render xml: { result: res }, content_type: 'application/xml' }
    format.xml { render xml: { result: res } }
    format.json { render json: { result: res } }
  end
end

#createvoid

This method returns an undefined value.

Creates the locator record for the customer.



56
57
58
59
60
61
62
63
64
# File 'app/controllers/locator_records_controller.rb', line 56

def create
  @locator_record = LocatorRecord.new(params[:locator_record])
  if @locator_record.save && @customer.save
    redirect_to_return_path_or_default customer_path(@customer)
  else
    flash.now[:error] = "Something happened creating the locator record: Errors are: #{@locator_record.errors_to_s}"
    render :new, status: :unprocessable_content
  end
end

#dealer_confirmation_legacyvoid

This method returns an undefined value.

Renders the legacy dealer confirmation form for the emailed link.



131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
# File 'app/controllers/locator_records_controller.rb', line 131

def dealer_confirmation_legacy
  lr_id = begin
    Encryption.decrypt_string(params[:locator_record_id].to_s)
  rescue StandardError
    nil
  end
  @locator_record = LocatorRecord.find(lr_id) if lr_id.present?
  if @locator_record
    @customer = @locator_record.customer
    @new_address = @customer.addresses.new(state_code: begin
      @customer.shipping_address.state_code
    rescue StandardError
      nil
    end)
    @new_phone = @customer.contact_points.new(category: ContactPoint::PHONE)
  else
    flash[:error] =
      "Dealer Locator record not found! Please try again, or contact <a href='mailto:webmaster@warmlyyours.com?subject=#{CGI.escape('WarmlyYours Dealer/Installer Confirmation Form Issue: Record Not Found')}&body=#{CGI.escape("I had an issue trying to confirm my dealer/installer listing on the WarmlyYours Dealer/Installer Locator. locator_record_id: #{params[:locator_record_id]}")}'>webmaster@warmlyyours.com</a>."
  end
  @hide_new_address_form = true
  render layout: 'www/cms_page'
end

#dealer_five_month_warnvoid

This method returns an undefined value.

Re-sends the five-month dealer warning email.



314
315
316
317
318
# File 'app/controllers/locator_records_controller.rb', line 314

def dealer_five_month_warn
  stat = @locator_record.send_dealer_five_month_warning
  flash[:info] = "Result of re-sending dealer 5 month warning: status: #{stat[:status_code]}, message: #{stat[:status_message]}"
  redirect_to_return_path_or_default locator_record_path(@locator_record)
end

#dealer_invitevoid

This method returns an undefined value.

Re-sends the dealer invite email.



287
288
289
290
291
# File 'app/controllers/locator_records_controller.rb', line 287

def dealer_invite
  stat = @locator_record.send_dealer_invite(false)
  flash[:info] = "Result of re-sending dealer invite: status: #{stat[:status_code]}, message: #{stat[:status_message]}"
  redirect_to_return_path_or_default locator_record_path(@locator_record)
end

#dealer_invite_remindervoid

This method returns an undefined value.

Re-sends the 30-day dealer invite reminder email.



296
297
298
299
300
# File 'app/controllers/locator_records_controller.rb', line 296

def dealer_invite_reminder
  stat = @locator_record.send_invited_dealers_30_day_reminder
  flash[:info] = "Result of re-sending dealer invite reminder: status: #{stat[:status_code]}, message: #{stat[:status_message]}"
  redirect_to_return_path_or_default locator_record_path(@locator_record)
end

#dealer_three_month_warnvoid

This method returns an undefined value.

Re-sends the three-month dealer warning email.



305
306
307
308
309
# File 'app/controllers/locator_records_controller.rb', line 305

def dealer_three_month_warn
  stat = @locator_record.send_dealer_three_month_warning
  flash[:info] = "Result of re-sending dealer 3 month warning: status: #{stat[:status_code]}, message: #{stat[:status_message]}"
  redirect_to_return_path_or_default locator_record_path(@locator_record)
end

#destroyvoid

This method returns an undefined value.

Marks the locator record inactive.



82
83
84
85
86
# File 'app/controllers/locator_records_controller.rb', line 82

def destroy
  @locator_record.update({ is_inactive: true })
  flash[:info] = 'Locator Record marked inactive'
  redirect_to_return_path_or_default customer_path(@customer)
end

#editvoid

This method returns an undefined value.

Renders the edit form, loading the customer's white/black listings.



48
49
50
51
# File 'app/controllers/locator_records_controller.rb', line 48

def edit
  @locator_white_listing = @customer.locator_white_listing
  @locator_black_listing = @customer.locator_black_listing
end

#get_dealer_locator_record_xmlvoid

This method returns an undefined value.

Public XML endpoint reporting whether an encrypted locator record id exists.



91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
# File 'app/controllers/locator_records_controller.rb', line 91

def get_dealer_locator_record_xml
  @status_code = 'error'
  @status_message = 'locator record not found!'
  if params[:locator_record_id].present?
    lr_id = Encryption.decrypt_string(params[:locator_record_id].to_s)
    @locator_record = begin
      LocatorRecord.find(lr_id)
    rescue StandardError
      nil
    end
  end
  if @locator_record
    @status_code = 'ok'
    @status_message = ''
  end
  render action: 'get_dealer_locator_record_xml.xml.builder', layout: false
end

#indexvoid

This method returns an undefined value.

Lists all locator records with confirmed and active subsets.



13
14
15
16
17
18
# File 'app/controllers/locator_records_controller.rb', line 13

def index
  @locator_records = LocatorRecord.all
  @confirmed_records = @locator_records.are_confirmed
  @active_records = @locator_records.active
  # meet_criteria =
end

#newvoid

This method returns an undefined value.

Builds a new locator record for the customer, redirecting if one exists.



37
38
39
40
41
42
43
# File 'app/controllers/locator_records_controller.rb', line 37

def new
  if @customer.locator_record
    redirect_to locator_record_path(@customer.locator_record)
  else
    @locator_record = CustomerLocatorUtility.new_locator_record_with_defaults @customer
  end
end

#showvoid

This method returns an undefined value.

Shows a locator record with the customer's recent sales activity.



23
24
25
26
27
28
29
30
31
32
# File 'app/controllers/locator_records_controller.rb', line 23

def show
  @last_order = begin
    @customer.orders.where(state: 'invoiced').order(created_at: :desc).first
  rescue StandardError
    nil
  end
  @orders_last_year = @customer.orders.where(state: 'invoiced').where(Order[:created_at].gt(1.year.ago)).size
  @revenue_last_year = @customer.orders.where(state: 'invoiced').where(Order[:created_at].gt(1.year.ago)).sum(:total)
  @opportunities_last_year = @customer.opportunities.where(opportunity_type: 'S').where(Opportunity[:created_at].gt(1.year.ago)).size
end

#updatevoid

This method returns an undefined value.

Updates the locator record.



69
70
71
72
73
74
75
76
77
# File 'app/controllers/locator_records_controller.rb', line 69

def update
  authorize! :update, @locator_record
  if @locator_record.update(params[:locator_record])
    redirect_to_return_path_or_default customer_path(@customer)
  else
    flash.now[:error] = @locator_record.errors_to_s.presence || 'Could not update locator record.'
    render :edit, status: :unprocessable_content
  end
end