examples/api-samples/samples/sample27.rb in groupdocs-1.5.7 vs examples/api-samples/samples/sample27.rb in groupdocs-1.5.8

- old
+ new

@@ -3,20 +3,21 @@ haml :sample27 end # POST request post '/sample27' do - # set variables - set :client_id, params[:client_id] - set :private_key, params[:private_key] + # Set variables + set :client_id, params[:clientId] + set :private_key, params[:privateKey] set :file_id, params[:fileId] set :source, params[:source] set :sex, params[:sex] set :age, params[:age] set :sunrise, params[:sunrise] set :name, params[:name] set :type, params[:type] + set :base_path, params[:basePath] # Set download path downloads_path = "#{File.dirname(__FILE__)}/../public/downloads" # Remove all files from download directory or create folder if it not there @@ -28,25 +29,35 @@ begin # Check required variables raise 'Please enter all required parameters' if settings.client_id.empty? or settings.private_key.empty? - # get document by file GUID + if settings.base_path.empty? then settings.base_path = 'https://api.groupdocs.com' end + + # Configure your access to API server + GroupDocs.configure do |groupdocs| + groupdocs.client_id = settings.client_id + groupdocs.private_key = settings.private_key + # Optionally specify API server and version + groupdocs.api_server = settings.base_path # default is 'https://api.groupdocs.com' + end + + # Get document by file GUID case settings.source when 'guid' # Create instance of File file = GroupDocs::Storage::File.new({:guid => settings.file_id}) when 'local' # Construct path file_path = "#{Dir.tmpdir}/#{params[:file][:filename]}" # Open file File.open(file_path, 'wb') { |f| f.write(params[:file][:tempfile].read) } # Make a request to API using client_id and private_key - file = GroupDocs::Storage::File.upload!(file_path, {}, {:client_id => settings.client_id, :private_key => settings.private_key}) + file = GroupDocs::Storage::File.upload!(file_path, {}) when 'url' # Upload file from defined url - file = GroupDocs::Storage::File.upload_web!(settings.url, {:client_id => settings.client_id, :private_key => settings.private_key}) + file = GroupDocs::Storage::File.upload_web!(settings.url) else raise 'Wrong GUID source.' end # Raise exception if something went wrong @@ -64,37 +75,52 @@ # Create Field instance and fill the fields datasource.fields = enteredData.map { |key, value| GroupDocs::DataSource::Field.new(name: key, type: :text, values: Array.new() << value) } # Adds datasource. - datasource.add!({:client_id => settings.client_id, :private_key => settings.private_key}) + datasource.add!() # Creates new job to merge datasource into document. - job = document.datasource!(datasource, {:new_type => settings.type}, {:client_id => settings.client_id, :private_key => settings.private_key}) + job = document.datasource!(datasource, {:new_type => settings.type}) sleep 10 # wait for merge and convert # Returns an hash of input and output documents associated to job. - document = job.documents!({:client_id => settings.client_id, :private_key => settings.private_key}) + document = job.documents!() # Download file - document[:inputs][0].outputs[0].download!(downloads_path, {:client_id => settings.client_id, :private_key => settings.private_key}) + document[:inputs][0].outputs[0].download!(downloads_path) # Set converted document GUID guid = document[:inputs][0].outputs[0].guid # Set converted document Name file_name = document[:inputs][0].outputs[0].name + #Get url from request + case settings.base_path + + when 'https://stage-api-groupdocs.dynabic.com' + url = "http://stage-apps-groupdocs.dynabic.com/document-viewer/embed/#{guid}" + when 'https://dev-api-groupdocs.dynabic.com' + url = "http://dev-apps-groupdocs.dynabic.com/document-viewer/embed/#{guid}" + else + url = "https://apps.groupdocs.com/document-viewer/embed/#{guid}" + end + + # Add the signature to url the request + + iframe = GroupDocs::Api::Request.new(:path => url).prepare_and_sign_url + # Set iframe with document GUID or raise an error if guid - iframe = "<iframe width='100%' height='600' frameborder='0' src='https://apps.groupdocs.com/document-viewer/embed/#{guid}'></iframe>" + iframe = "<iframe width='100%' height='600' frameborder='0' src='#{iframe}'></iframe>" else raise 'File was not converted' end rescue Exception => e err = e.message end - # set variables for template + # Set variables for template haml :sample27, :locals => {:userId => settings.client_id, :privateKey => settings.private_key, :sex => settings.sex, :age => settings.age, :sunrise => settings.sunrise, :name => settings.name, :type => settings.type, :iframe => iframe, :file_name => file_name, :err => err} end \ No newline at end of file