Sha256: b0ce441a9fb10da92b27c59140d451c7c1089eaadfaec3e2b147ae18764e5579

Contents?: true

Size: 1.64 KB

Versions: 46

Compression:

Stored size: 1.64 KB

Contents

#!/usr/bin/env ruby
lib = File.expand_path('../../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'gillbus'
require 'pry'
require 'securerandom'

GILLBUS_SERVER = 'http://mdc.demo.gillbus.com'.freeze
GILLBUS_PASSWORD = '3DVG/x1AOk+xwNlAEXytMCxZMsb73r39DOg97k8b8c4YaMrlOar071diefS0IyZT'.freeze

require 'logger'

driver = Faraday.new(url: GILLBUS_SERVER) do |c|
  c.response :logger, Logger.new(STDOUT), bodies: true
  c.request :url_encoded
  c.adapter Faraday.default_adapter
end

g = Gillbus.new(driver: driver).login(
  password: GILLBUS_PASSWORD,
  locale: :ru,
)

# getCities

cities = g.get_cities.cities

kiiv_id = cities.find { |c| c.name == 'Киев' }.id
odessa_id = cities.find { |c| c.name == 'Львов' }.id

# searchTrips

search_date = Date.today + 7
trips = g.search_trips(
  start_city_id: kiiv_id,
  end_city_id: odessa_id,
  start_date_search: search_date,
  ticket_count: 2,
  selected_modes: 1,
).trips

trip_id = trips.find { |trip| trip.reservation_enabled == true }.id

# lockSeats

tl = g.lock_seats(trip_id: trip_id).time_limit

# ticketsBooking
order_id = SecureRandom.uuid

puts "making order: #{order_id}"
passengers = [
  { first_name: 'Иван', last_name: 'Иванов' },
  { first_name: 'Петр', last_name: 'Петров' },
]

rt = g.reserve_tickets(
  order_id: order_id,
  mail_address: 'ivan@mail.ru',
  note: 'test',
  passengers: passengers,
)

# отмена брони
order_number = rt.tickets.first.order_number
canceling = g.cancel_order(order_number: order_number, cancel_reason: 'no_reason')
puts 'canceling: ' + canceling.inspect
puts 'success? ' + canceling.order_cancel.confirmation.inspect

Version data entries

46 entries across 46 versions & 1 rubygems

Version Path
gillbus-0.23.0 script/example_canceling_reservation.rb
gillbus-0.22.9 script/example_canceling_reservation.rb
gillbus-0.22.8 script/example_canceling_reservation.rb
gillbus-0.22.7 script/example_canceling_reservation.rb
gillbus-0.22.6 script/example_canceling_reservation.rb
gillbus-0.22.5 script/example_canceling_reservation.rb
gillbus-0.22.4 script/example_canceling_reservation.rb
gillbus-0.22.3 script/example_canceling_reservation.rb
gillbus-0.22.2 script/example_canceling_reservation.rb
gillbus-0.22.1 script/example_canceling_reservation.rb
gillbus-0.22.0 script/example_canceling_reservation.rb
gillbus-0.21.0 script/example_canceling_reservation.rb
gillbus-0.20.9 script/example_canceling_reservation.rb
gillbus-0.20.8 script/example_canceling_reservation.rb
gillbus-0.20.7 script/example_canceling_reservation.rb
gillbus-0.20.6 script/example_canceling_reservation.rb
gillbus-0.20.5 script/example_canceling_reservation.rb
gillbus-0.20.4 script/example_canceling_reservation.rb
gillbus-0.20.3 script/example_canceling_reservation.rb
gillbus-0.20.2 script/example_canceling_reservation.rb