Class: Deliveries::Couriers::Envialia::Pickups::Trace
- Inherits:
-
Object
- Object
- Deliveries::Couriers::Envialia::Pickups::Trace
- Includes:
- Authentication, HTTParty
- Defined in:
- lib/deliveries/couriers/envialia/pickups/trace.rb,
lib/deliveries/couriers/envialia/pickups/trace/format_response.rb
Defined Under Namespace
Classes: FormatResponse
Instance Attribute Summary collapse
-
#tracking_code ⇒ Object
Returns the value of attribute tracking_code.
Instance Method Summary collapse
- #api_endpoint ⇒ Object
- #body ⇒ Object
- #execute ⇒ Object
- #headers ⇒ Object
-
#initialize(tracking_code:) ⇒ Trace
constructor
A new instance of Trace.
Methods included from Authentication
#login_body, #login_endpoint, #login_headers, #session_id
Constructor Details
#initialize(tracking_code:) ⇒ Trace
Returns a new instance of Trace.
13 14 15 |
# File 'lib/deliveries/couriers/envialia/pickups/trace.rb', line 13 def initialize(tracking_code:) self.tracking_code = tracking_code end |
Instance Attribute Details
#tracking_code ⇒ Object
Returns the value of attribute tracking_code.
11 12 13 |
# File 'lib/deliveries/couriers/envialia/pickups/trace.rb', line 11 def tracking_code @tracking_code end |
Instance Method Details
#api_endpoint ⇒ Object
58 59 60 61 62 63 64 |
# File 'lib/deliveries/couriers/envialia/pickups/trace.rb', line 58 def api_endpoint if Envialia.live? Envialia::ENVIALIA_ENDPOINT_LIVE else Envialia::ENVIALIA_ENDPOINT_TEST end end |
#body ⇒ Object
37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 |
# File 'lib/deliveries/couriers/envialia/pickups/trace.rb', line 37 def body <<~XML <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> <soapenv:Header> <tns:ROClientIDHeader xmlns:tns="http://tempuri.org/"> <tns:ID>#{session_id}</tns:ID> </tns:ROClientIDHeader> </soapenv:Header> <soapenv:Body> <tns:WebServService___ConsRecEstados xmlns:tns="http://tempuri.org/"> <tns:strCodRec>#{tracking_code}</tns:strCodRec> </tns:WebServService___ConsRecEstados> </soapenv:Body> </soapenv:Envelope> XML end |
#execute ⇒ Object
17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 |
# File 'lib/deliveries/couriers/envialia/pickups/trace.rb', line 17 def execute response = self.class.post( api_endpoint, body: body, headers: headers, debug_output: Deliveries.debug ? Deliveries.logger : nil ) raise Deliveries::ClientError unless response.success? if response.dig('Envelope', 'Body', 'WebServService___ConsRecEstadosResponse', 'strRecEstados').nil? raise Deliveries::APIError.new( 'No se han encontrado datos para este envĂo', '402' ) else response end end |
#headers ⇒ Object
54 55 56 |
# File 'lib/deliveries/couriers/envialia/pickups/trace.rb', line 54 def headers { 'Content-Type' => 'application/json;charset=UTF-8', 'Accept' => 'application/json' } end |