Class: KaveRestApi::Tts

Inherits:
RequestBase show all
Includes:
Validatable
Defined in:
lib/kave_rest_api/requests/tts.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(args = {}) ⇒ Tts

Returns a new instance of Tts.



12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# File 'lib/kave_rest_api/requests/tts.rb', line 12

def initialize(args = {})
  super
  @ACTION_NAME    = [:maketts,@FORMAT].join('.').freeze
  @receptor    = args.fetch(:receptor)
  if @receptor.kind_of?(Array)
    @valid_receptor= false if @receptor.length > 200
    @receptor      = @receptor.join(',') 
  end
  @receptor    = @receptor.ctsd
  @date        = args.fetch(:date,nil)
  @message     = args.fetch(:message)
  @message     = @message.ctsd if args.fetch(:standard_digit,false)
  @repeat      = args.fetch(:repeat,nil)
  @localid     = args.fetch(:localid,nil)
  @response    = ResponseSendSimple.new
end

Instance Attribute Details

#configObject (readonly)

Returns the value of attribute config.



5
6
7
# File 'lib/kave_rest_api/requests/tts.rb', line 5

def config
  @config
end

#costObject (readonly)

Returns the value of attribute cost.



5
6
7
# File 'lib/kave_rest_api/requests/tts.rb', line 5

def cost
  @cost
end

#dateObject

Returns the value of attribute date.



4
5
6
# File 'lib/kave_rest_api/requests/tts.rb', line 4

def date
  @date
end

#localidObject

Returns the value of attribute localid.



4
5
6
# File 'lib/kave_rest_api/requests/tts.rb', line 4

def localid
  @localid
end

#messageObject

Returns the value of attribute message.



4
5
6
# File 'lib/kave_rest_api/requests/tts.rb', line 4

def message
  @message
end

#receptorObject

Returns the value of attribute receptor.



4
5
6
# File 'lib/kave_rest_api/requests/tts.rb', line 4

def receptor
  @receptor
end

#repeatObject

Returns the value of attribute repeat.



4
5
6
# File 'lib/kave_rest_api/requests/tts.rb', line 4

def repeat
  @repeat
end

#responseObject (readonly)

Returns the value of attribute response.



5
6
7
# File 'lib/kave_rest_api/requests/tts.rb', line 5

def response
  @response
end

#senderObject (readonly)

Returns the value of attribute sender.



5
6
7
# File 'lib/kave_rest_api/requests/tts.rb', line 5

def sender
  @sender
end

#statusObject (readonly)

Returns the value of attribute status.



5
6
7
# File 'lib/kave_rest_api/requests/tts.rb', line 5

def status
  @status
end

#statustextObject (readonly)

Returns the value of attribute statustext.



5
6
7
# File 'lib/kave_rest_api/requests/tts.rb', line 5

def statustext
  @statustext
end

Instance Method Details

#callObject



33
34
35
36
37
38
39
40
41
# File 'lib/kave_rest_api/requests/tts.rb', line 33

def call
    connection = Faraday.new(url: "#{@API_URL}/call/") do |faraday|
      faraday.adapter Faraday.default_adapter
      faraday.response @FORMAT.to_sym
    end
    
      response = connection.get(@ACTION_NAME, receptor: @receptor , message: @message,localid: @localid,date: @date,repeat: @repeat)
      @response.validate(response.body)
end

#valid_receptor?Boolean

Returns:

  • (Boolean)


29
30
31
# File 'lib/kave_rest_api/requests/tts.rb', line 29

def valid_receptor?
  @valid_receptor
end