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

Added files to make setup easier, fixed indentation and more error handling and fixed the default file handling #9

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all 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
5 changes: 5 additions & 0 deletions Speech/Ruby/app1/Gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
source "http://rubygems.org"
gem "json"
gem "rest-client"
gem "sinatra"
gem "sinatra-contrib"
2 changes: 2 additions & 0 deletions Speech/Ruby/app1/config.ru
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
require './speech.rb'
run Sinatra::Application
2 changes: 1 addition & 1 deletion Speech/Ruby/app1/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# For more information contact [email protected]

port: 4567
api_key:
api_key:
secret_key:
tokens_file: tokens
FQDN: https://api.att.com
Expand Down
56 changes: 29 additions & 27 deletions Speech/Ruby/app1/speech.rb
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,15 @@

SCOPE = 'SPEECH'

error do
@error = e.message
end

['/SpeechToText'].each do |path|
if settings.api_key.nil? || settings.secret_key.nil?
raise RuntimeError, "The API and Secret keys must be set the config.yml file"
end

before path do
obtain_tokens(settings.FQDN, settings.api_key, settings.secret_key, SCOPE, settings.tokens_file)
end
Expand All @@ -32,32 +40,29 @@
end

post '/SpeechToText' do
if params[:f1] != nil
speech_to_text
else
speech_default_file
end
if params[:f1] != nil
speech_to_text
else
speech_default_file
end
end


def speech_to_text


@type = params[:f1][:type]
temp_file = params[:f1][:tempfile]
temp_file = params[:f1][:tempfile]

@file_contents = File.read(temp_file.path)
@file_contents = File.read(temp_file.path)

if @type == "application/octet-stream"
@type = "audio/amr"
end

url = "#{settings.FQDN}/rest/1/SpeechToText"
if @type == "application/octet-stream"
@type = "audio/amr"
end

response = RestClient.post "#{settings.FQDN}/rest/1/SpeechToText", "#{@file_contents}", :Authorization => "Bearer #{@access_token}", :Content_Transfer_Encoding => 'chunked', :X_SpeechContext => 'Generic', :Content_Type => "#{@type}" , :Accept => 'application/json'
url = "#{settings.FQDN}/rest/1/SpeechToText"

@result = JSON.parse response
response = RestClient.post "#{settings.FQDN}/rest/1/SpeechToText", "#{@file_contents}", :Authorization => "Bearer #{@access_token}", :Content_Transfer_Encoding => 'chunked', :X_SpeechContext => 'Generic', :Content_Type => "#{@type}" , :Accept => 'application/json'

@result = JSON.parse response
rescue => e
@error = e.message
ensure
Expand All @@ -67,24 +72,21 @@ def speech_to_text


def speech_default_file
@filename = 'bostonSeltics.wav'

@type = ' audio/wav'
@filename = 'bostonSeltics.wav'
@type = 'audio/wav'


fullname = File.expand_path(File.dirname(File.dirname(__FILE__)))
final = fullname + '/' + @filename
@file_contents = File.read(final)
fullname = File.expand_path(File.dirname(File.dirname(__FILE__)))
final = fullname + '/app1/' + @filename
@file_contents = File.read(final)

url = "#{settings.FQDN}/rest/1/SpeechToText"

response = RestClient.post "#{settings.FQDN}/rest/1/SpeechToText", "#{@file_contents}", :Authorization => "Bearer #{@access_token}", :Content_Transfer_Encoding => 'chunked', :X_SpeechContext => 'Generic', :Content_Type => "#{@type}" , :Accept => 'application/json'

@result = JSON.parse response
response = RestClient.post "#{settings.FQDN}/rest/1/SpeechToText", "#{@file_contents}", :Authorization => "Bearer #{@access_token}", :Content_Transfer_Encoding => 'chunked', :X_SpeechContext => 'Generic', :Content_Type => "#{@type}" , :Accept => 'application/json'

@result = JSON.parse response
rescue => e
@error = e.message
ensure
return erb:speech
end

end