Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Passenger API | Ticketing #379

Merged
merged 4 commits into from
May 8, 2024
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions lib/ioki/apis/endpoints/create.rb
Original file line number Diff line number Diff line change
Expand Up @@ -29,14 +29,14 @@ def full_path
def call(client, model, args = [], options = {})
outgoing_model_class = @outgoing_model_class || options[:outgoing_model_class] || model_class

unless model.is_a?(outgoing_model_class)
unless model.blank? || model.is_a?(outgoing_model_class)
tom-ioki marked this conversation as resolved.
Show resolved Hide resolved
raise(ArgumentError, "#{model} is not an instance of #{outgoing_model_class}")
end

parsed_response, response = client.request(
url: client.build_request_url(*Endpoints.url_elements(full_path, *args)),
method: :post,
body: { data: model.serialize(:create) },
body: { data: model&.serialize(:create) },
params: options[:params]
)

Expand Down
35 changes: 35 additions & 0 deletions lib/ioki/apis/passenger_api.rb
Original file line number Diff line number Diff line change
Expand Up @@ -230,6 +230,41 @@ class PassengerApi
base_path: [API_BASE_PATH],
model_class: Ioki::Model::Passenger::RedeemedPromoCode,
only: [:index, :create]
),
Endpoints.crud_endpoints(
:ticketing_voucher,
base_path: [API_BASE_PATH, 'ticketing'],
paths: { index: 'vouchers', show: 'vouchers' },
model_class: Ioki::Model::Passenger::Ticketing::Voucher,
only: [:index, :show]
),
Endpoints::Create.new(
:ticketing_voucher_renewal,
base_path: [API_BASE_PATH, 'ticketing', 'vouchers', :id],
path: 'renewal',
model_class: Ioki::Model::Passenger::Ticketing::Voucher,
outgoing_model_class: Ioki::Model::Passenger::Ticketing::VoucherRenewal
),
Endpoints::Create.new(
:ticketing_voucher_subscription_cancellation,
base_path: [API_BASE_PATH, 'ticketing', 'vouchers', :id],
path: 'subscription_cancellation',
model_class: Ioki::Model::Passenger::Ticketing::Voucher,
outgoing_model_class: nil
tom-ioki marked this conversation as resolved.
Show resolved Hide resolved
),
Endpoints.crud_endpoints(
:ticketing_product,
base_path: [API_BASE_PATH, 'ticketing'],
paths: { index: 'products', show: 'products' },
model_class: Ioki::Model::Passenger::Ticketing::Product,
only: [:index, :show]
),
Endpoints::Create.new(
:ticketing_product_purchase,
base_path: [API_BASE_PATH, 'ticketing', 'products', :id],
path: 'purchase',
model_class: Ioki::Model::Passenger::Ticketing::Voucher,
outgoing_model_class: Ioki::Model::Passenger::Ticketing::ProductPurchase
)
].freeze
end
Expand Down
5 changes: 3 additions & 2 deletions lib/ioki/model.rb
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,9 @@
Dir[File.join(__dir__, 'model', 'platform', '*')].reject do |filename|
filename == File.join(__dir__, 'model', 'platform', 'base.rb')
end.sort.each { |file| require file }
Dir[File.join(__dir__, 'model', 'passenger', '*')].reject do |filename|
filename == File.join(__dir__, 'model', 'passenger', 'base.rb')
Dir[File.join(__dir__, 'model', 'passenger', '**', '*')].reject do |filename|
filename == File.join(__dir__, 'model', 'passenger', 'base.rb') ||
!File.file?(filename)
end.sort.each { |file| require file }
Dir[File.join(__dir__, 'model', 'driver', '*')].reject do |filename|
filename == File.join(__dir__, 'model', 'driver', 'base.rb')
Expand Down
15 changes: 15 additions & 0 deletions lib/ioki/model/passenger/enum_item.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# frozen_string_literal: true

module Ioki
module Model
module Passenger
class EnumItem < Base
attribute :type, on: :read, type: :string
attribute :slug, on: :read, type: :string
attribute :name, on: :read, type: :string
attribute :description, on: :read, type: :string
attribute :value, on: :read, type: :string
end
end
end
end
15 changes: 15 additions & 0 deletions lib/ioki/model/passenger/ticketing/option_value.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# frozen_string_literal: true

module Ioki
module Model
module Passenger
module Ticketing
class OptionValue < Base
attribute :type, on: :read, type: :string
attribute :slug, on: :read, type: :string
attribute :value, on: :read, type: :string
end
end
end
end
end
29 changes: 29 additions & 0 deletions lib/ioki/model/passenger/ticketing/product.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# frozen_string_literal: true

module Ioki
module Model
module Passenger
module Ticketing
class Product < Base
attribute :type, on: :read, type: :string
attribute :id, on: :read, type: :string
attribute :created_at, on: :read, type: :date_time
attribute :updated_at, on: :read, type: :date_time
attribute :provider_id, on: :read, type: :string
attribute :ticketing_vendor_id, on: :read, type: :string
attribute :slug, on: :read, type: :string
attribute :name, on: :read, type: :string
attribute :description, on: :read, type: :string
attribute :purchasable, on: :read, type: :boolean
attribute :purchasable_from, on: :read, type: :date_time
attribute :purchasable_until, on: :read, type: :date_time
attribute :price_type, on: :read, type: :string
attribute :icon_type, on: :read, type: :string
attribute :price, on: :read, type: :object, class_name: 'Ioki::Model::Passenger::Money'
attribute :purchase_options, on: :read, type: :array, class_name: 'PurchaseOption'
attribute :redemption_options, on: :read, type: :array, class_name: 'RedemptionOption'
end
end
end
end
end
17 changes: 17 additions & 0 deletions lib/ioki/model/passenger/ticketing/product_purchase.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# frozen_string_literal: true

module Ioki
module Model
module Passenger
module Ticketing
class ProductPurchase < Base
attribute :purchase_options, on: :create, type: :array, class_name: 'PurchaseOption'
attribute :redemption_options, on: :create, type: :array, class_name: 'RedemptionOption'
attribute :ride_id, on: :create, type: :string
attribute :payment_method, on: :create, type: :object, class_name: 'Ioki::Model::Passenger::PaymentMethod'
attribute :paypal_secure_element, on: :create, type: :string
end
end
end
end
end
22 changes: 22 additions & 0 deletions lib/ioki/model/passenger/ticketing/purchase_option.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# frozen_string_literal: true

module Ioki
module Model
module Passenger
module Ticketing
class PurchaseOption < Base
attribute :type, on: :read, type: :string
attribute :slug, on: [:read, :create], type: :string
attribute :name, on: :read, type: :string
attribute :description, on: :read, type: :string
attribute :data_type, on: :read, type: :string
attribute :data_format, on: :read, type: :string
attribute :data_enum, on: :read, type: :boolean
attribute :required, on: :read, type: :boolean
attribute :enum_items, on: :read, type: :array, class_name: 'Ioki::Model::Passenger::EnumItem'
attribute :value, on: :create, type: :string
end
end
end
end
end
22 changes: 22 additions & 0 deletions lib/ioki/model/passenger/ticketing/redemption_option.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# frozen_string_literal: true

module Ioki
module Model
module Passenger
module Ticketing
class RedemptionOption < Base
attribute :type, on: :read, type: :string
attribute :slug, on: [:read, :create], type: :string
attribute :name, on: :read, type: :string
attribute :description, on: :read, type: :string
attribute :data_type, on: :read, type: :string
attribute :data_format, on: :read, type: :string
attribute :data_enum, on: :read, type: :boolean
attribute :required, on: :read, type: :boolean
attribute :enum_items, on: :read, type: :array, class_name: 'Ioki::Model::Passenger::EnumItem'
attribute :value, on: :create, type: :string
end
end
end
end
end
23 changes: 23 additions & 0 deletions lib/ioki/model/passenger/ticketing/ticket.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# frozen_string_literal: true

module Ioki
module Model
module Passenger
module Ticketing
class Ticket < Base
attribute :type, on: :read, type: :string
attribute :id, on: :read, type: :string
attribute :created_at, on: :read, type: :date_time
attribute :updated_at, on: :read, type: :date_time
attribute :voucher_id, on: :read, type: :string
attribute :issuer_slug, on: :read, type: :string
attribute :access_token, on: :read, type: :string
attribute :webview_url, on: :read, type: :string
attribute :validity_information, on: :read, type: :string
attribute :valid_from, on: :read, type: :date_time
attribute :valid_until, on: :read, type: :date_time
end
end
end
end
end
27 changes: 27 additions & 0 deletions lib/ioki/model/passenger/ticketing/voucher.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# frozen_string_literal: true

module Ioki
module Model
module Passenger
module Ticketing
class Voucher < Base
attribute :type, on: :read, type: :string
attribute :id, on: :read, type: :string
attribute :created_at, on: :read, type: :date_time
attribute :updated_at, on: :read, type: :date_time
attribute :provider_id, on: :read, type: :string
attribute :user_id, on: :read, type: :string
attribute :ride_id, on: :read, type: :string
attribute :state, on: :read, type: :string
attribute :product, on: :read, type: :object, class_name: 'Product'
attribute :ticket, on: :read, type: :object, class_name: 'Ticket'
attribute :payment_method, on: :read, type: :object, class_name: 'Ioki::Model::Passenger::PaymentMethod'
attribute :price, on: :read, type: :object, class_name: 'Ioki::Model::Passenger::Money'
attribute :purchase_option_values, on: :read, type: :array, class_name: 'OptionValue'
attribute :redemption_option_values, on: :read, type: :array, class_name: 'OptionValue'
attribute :renewal_information, on: :read, type: :object, class_name: 'VoucherRenewalInformation'
end
end
end
end
end
14 changes: 14 additions & 0 deletions lib/ioki/model/passenger/ticketing/voucher_renewal.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# frozen_string_literal: true

module Ioki
module Model
module Passenger
module Ticketing
class VoucherRenewal < Base
attribute :payment_method, on: :create, type: :object, class_name: 'Ioki::Model::Passenger::PaymentMethod'
attribute :paypal_secure_element, on: :create, type: :string
end
end
end
end
end
16 changes: 16 additions & 0 deletions lib/ioki/model/passenger/ticketing/voucher_renewal_information.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# frozen_string_literal: true

module Ioki
module Model
module Passenger
module Ticketing
class VoucherRenewalInformation < Base
attribute :type, on: :read, type: :string
attribute :renewable, on: :read, type: :boolean
attribute :valid_from, on: :read, type: :date_time
attribute :valid_until, on: :read, type: :date_time
end
end
end
end
end
84 changes: 84 additions & 0 deletions spec/ioki/passenger_api_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -553,4 +553,88 @@
expect(passenger_client.single_ride_series('0815', options)).to be_a Ioki::Model::Passenger::RideSeries
end
end

describe '#ticketing_vouchers' do
it 'calls request on the client with expected params' do
expect(passenger_client).to receive(:request) do |params|
expect(params[:url].to_s).to eq('passenger/ticketing/vouchers')
result_with_index_data
end

expect(passenger_client.ticketing_vouchers(options)).to all(be_a(Ioki::Model::Passenger::Ticketing::Voucher))
end
end

describe '#ticketing_voucher' do
it 'calls request on the client with expected params' do
expect(passenger_client).to receive(:request) do |params|
expect(params[:url].to_s).to eq('passenger/ticketing/vouchers/0815')
[result_with_data, full_response]
end

expect(passenger_client.ticketing_voucher('0815', options)).to be_a(Ioki::Model::Passenger::Ticketing::Voucher)
end
end

describe '#create_ticketing_voucher_renewal' do
let(:voucher_renewal) { Ioki::Model::Passenger::Ticketing::VoucherRenewal.new }

it 'calls request on the client with expected params' do
expect(passenger_client).to receive(:request) do |params|
expect(params[:url].to_s).to eq('passenger/ticketing/vouchers/0815/renewal')
[result_with_data, full_response]
end

expect(passenger_client.create_ticketing_voucher_renewal('0815', voucher_renewal, options))
.to be_a Ioki::Model::Passenger::Ticketing::Voucher
end
end

describe '#create_ticketing_voucher_subscription_cancellation' do
it 'calls request on the client with expected params' do
expect(passenger_client).to receive(:request) do |params|
expect(params[:url].to_s).to eq('passenger/ticketing/vouchers/0815/subscription_cancellation')
[result_with_data, full_response]
end

expect(passenger_client.create_ticketing_voucher_subscription_cancellation('0815', nil, options))
.to be_a Ioki::Model::Passenger::Ticketing::Voucher
end
end

describe '#ticketing_products' do
it 'calls request on the client with expected params' do
expect(passenger_client).to receive(:request) do |params|
expect(params[:url].to_s).to eq('passenger/ticketing/products')
result_with_index_data
end

expect(passenger_client.ticketing_products(options)).to all(be_a(Ioki::Model::Passenger::Ticketing::Product))
end
end

describe '#ticketing_product' do
it 'calls request on the client with expected params' do
expect(passenger_client).to receive(:request) do |params|
expect(params[:url].to_s).to eq('passenger/ticketing/products/0815')
[result_with_data, full_response]
end

expect(passenger_client.ticketing_product('0815', options)).to be_a(Ioki::Model::Passenger::Ticketing::Product)
end
end

describe '#create_ticketing_product_purchase' do
let(:purchase) { Ioki::Model::Passenger::Ticketing::ProductPurchase.new }

it 'calls request on the client with expected params' do
expect(passenger_client).to receive(:request) do |params|
expect(params[:url].to_s).to eq('passenger/ticketing/products/0815/purchase')
[result_with_data, full_response]
end

expect(passenger_client.create_ticketing_product_purchase('0815', purchase, options))
.to be_a Ioki::Model::Passenger::Ticketing::Voucher
end
end
end