Class: TokyoMetro::Factory::Get::Api::DataSearch::Fare

Inherits:
MetaClass::Search::DataSearch show all
Includes:
ClassNameLibrary::Api::Fare
Defined in:
lib/tokyo_metro/factory/get/api/data_search/fare.rb

Overview

API から運賃 odpt:RailwayFare のデータを取得するための Factory Pattern のクラス

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from MetaClass::Fundamental

#get_data

Constructor Details

#initialize(id, same_as, operator, from_station, to_station, ticket, child_ticket, ic_card, child_ic_card, parse_json, generate_instance, to_inspect) ⇒ Fare

Constructor



7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# File 'lib/tokyo_metro/factory/get/api/data_search/fare.rb', line 7

def initialize( id , same_as , operator ,
  from_station , to_station ,
  ticket , child_ticket , ic_card , child_ic_card ,
  parse_json , generate_instance , to_inspect )

  super( parse_json , generate_instance , to_inspect )

  @id = id
  @same_as = same_as
  @operator = operator

  @from_station = from_station
  @to_station = to_station

  @ticket = ticket
  @child_ticket = child_ticket
  @ic_card = ic_card
  @child_ic_card = child_ic_card
end

Class Method Details

.process(http_client, id, same_as, operator, from_station, to_station, ticket, child_ticket, ic_card, child_ic_card, parse_json, generate_instance, to_inspect) ⇒ Object

API からデータを取得するメソッド

Parameters:

  • http_client (HTTPClient)

    HTTPClient のインスタンス【必須】

  • parse_json (Boolean)

    JSONを配列とするか否かの設定(false の場合は文字列とする)【必須】

  • generate_instance (Boolean)

    データ取得後に Ruby のインスタンスを作成するか否かの設定【必須】

  • to_inspect (Boolean)

    データ取得後にコマンドツールに内容を表示するか否かの設定【必須】



51
52
53
54
55
56
57
58
59
60
61
62
# File 'lib/tokyo_metro/factory/get/api/data_search/fare.rb', line 51

def self.process( http_client , id , same_as , operator ,
  from_station , to_station ,
  ticket , child_ticket , ic_card , child_ic_card ,
  parse_json , generate_instance , to_inspect )

  info = self.new( id , same_as , operator ,
    from_station , to_station ,
    ticket , child_ticket , ic_card , child_ic_card ,
    parse_json , generate_instance , to_inspect )

  info.get_data( http_client )
end

Instance Method Details

#parametersHash

HTTPClient に送るパラメーター

Returns:

  • (Hash)


29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# File 'lib/tokyo_metro/factory/get/api/data_search/fare.rb', line 29

def parameters
  h = super

  set_parameter_send_to_api( h , "\@id" , @id , String )
  set_parameter_send_to_api( h , "owl:sameAs" , @same_as , String )
  set_parameter_send_to_api( h , "odpt:operator" , @operator , String )
  set_parameter_send_to_api( h , "odpt:fromStation" , @from_station , String )
  set_parameter_send_to_api( h , "odpt:toStation" , @to_station , String )

  set_parameter_send_to_api( h , "odpt:ticketFare" , @ticket , Integer )
  set_parameter_send_to_api( h , "odpt:childTicketFare" , @child_ticket , Integer )
  set_parameter_send_to_api( h , "odpt:icCardFare" , @ic_card , Integer )
  set_parameter_send_to_api( h , "odpt:childIcCardFare" , @child_ic_card , Integer )

  h
end