Class: Medivo::LabsController

Inherits:
ActionController::Base
  • Object
show all
Defined in:
app/controllers/medivo/labs_controller.rb

Instance Method Summary collapse

Instance Method Details

#appointment_error_handler(e) ⇒ Object



32
33
34
35
36
37
38
39
40
41
# File 'app/controllers/medivo/labs_controller.rb', line 32

def appointment_error_handler(e)
  case e
    when RestClient::RequestTimeout, RestClient::InternalServerError
      render :status=> e.http_code, json: {message: "Could be lab_code is wrong, or labcorp server is down"}
    when RestClient::Exception
      render :status=> e.http_code, json: {message: e.response}
    else
      render :status=> 500, json: {message: e.message}
  end
end

#cancel_appointmentObject



25
26
27
28
29
30
# File 'app/controllers/medivo/labs_controller.rb', line 25

def cancel_appointment
  data = Medivo::Appointment.cancel(params[:confirmation], params[:first_name], params[:last_name])
  render :json=> data
rescue Exception => e
  render :status=> 500, json: {message: e.message}
end

#find_appointmentObject



9
10
11
12
13
14
15
# File 'app/controllers/medivo/labs_controller.rb', line 9

def find_appointment
  date = Date.strptime(params[:date], "%m/%d/%Y")
  data = Medivo::Appointment.find(params[:lab_code], date, params[:am_pm])
  render :json=> {times: data}
rescue => e
  appointment_error_handler(e)
end

#indexObject



4
5
6
7
# File 'app/controllers/medivo/labs_controller.rb', line 4

def index
  lab_data = Medivo::Lab.data_for_zip(params[:zip_code])
  render :json=> lab_data
end

#make_appointmentObject



17
18
19
20
21
22
23
# File 'app/controllers/medivo/labs_controller.rb', line 17

def make_appointment
  time = Time.parse(params[:time])
  data = Medivo::Appointment.make(params[:lab_code], time, params[:user])
  render :json=> data
rescue Exception => e
  appointment_error_handler(e)
end