examples/api-samples/samples/sample06.rb in groupdocs-1.5.8 vs examples/api-samples/samples/sample06.rb in groupdocs-1.5.9
- old
+ new
@@ -1,80 +1,86 @@
-# GET request
+#GET request
get '/sample06' do
haml :sample06
end
-# POST request
+#POST request
post '/sample06' do
- # set variables
+ #Set variables
set :client_id, params[:clientId]
set :private_key, params[:privateKey]
set :base_path, params[:basePath]
require 'net/http'
begin
- # Check required variables
+ #Check required variables
raise 'Please enter all required parameters' if settings.client_id.empty? or settings.private_key.empty?
- if settings.base_path.empty? then settings.base_path = 'https://api.groupdocs.com' end
+ #Prepare base path
+ if settings.base_path.empty?
+ base_path = 'https://api.groupdocs.com'
+ elsif settings.base_path.match('/v2.0')
+ base_path = settings.base_path.split('/v2.0')[0]
+ else
+ base_path = settings.base_path
+ end
- # Configure your access to API server
+ #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'
+ #Optionally specify API server and version
+ groupdocs.api_server = base_path # default is 'https://api.groupdocs.com'
end
- # Construct file path and open file
+ #Construct file path and open file
file_one_path = "#{File.dirname(__FILE__)}/#{params[:fiDocument][:filename]}"
File.open(file_one_path, 'wb') { |f| f.write(params[:fiDocument][:tempfile].read) }
- # Create new file
+ #Create new file
file_one = GroupDocs::Storage::File.new(name: params[:fiDocument][:filename], local_path: file_one_path)
document_one = file_one.to_document
- # Construct signature path and open file
+ #Construct signature path and open file
signature_one_path = "#{Dir.tmpdir}/#{params[:fiSignature][:filename]}"
File.open(signature_one_path, 'wb') { |f| f.write(params[:fiSignature][:tempfile].read) }
- # Add signature to file using API
+ #Add signature to file using API
signature_one = GroupDocs::Signature.new(name: params[:fiSignature][:filename], image_path: signature_one_path)
signature_one.position = {top: 0.83319, left: 0.72171, width: 100, height: 40}
-
- # Make a request to API using client_id and private_key
+ #Make a request to API using client_id and private_key
signed_documents = GroupDocs::Document.sign_documents!([document_one], [signature_one], {})
sleep(5)
- # Get the document guid
+ #Get the document guid
document = GroupDocs::Signature.sign_document_status!(signed_documents)
-
- # Create request from servers
- case settings.base_path
-
- when 'https://stage-api-groupdocs.dynabic.com'
- url = "http://stage-apps-groupdocs.dynabic.com/document-viewer/embed/#{document.guid}"
-
- when 'https://dev-api-groupdocs.dynabic.com'
- url = "http://dev-apps-groupdocs.dynabic.com/document-viewer/embed/#{document.guid}"
- else
- url = "https://apps.groupdocs.com/document-viewer/embed/#{document.guid}"
+ to
+ #Prepare to sign url
+ iframe = "/document-viewer/embed/#{document.guid}"
+ # Construct result string
+ url = GroupDocs::Api::Request.new(:path => iframe).prepare_and_sign_url
+ #Generate iframe URL
+ case base_path
+ when 'https://stage-api-groupdocs.dynabic.com'
+ iframe = "https://stage-api-groupdocs.dynabic.com#{url}"
+ when 'https://dev-api-groupdocs.dynabic.com'
+ iframe = "https://dev-apps.groupdocs.com#{url}"
+ else
+ iframe = "https://apps.groupdocs.com#{url}"
end
- # Add the signature to url request
- iframe = GroupDocs::Api::Request.new(:path => url).prepare_and_sign_url
-
- # Generate result
+ #Generate result
if signed_documents
- iframe = "<iframe src='#{iframe}' frameborder='0' width='720' height='600'></iframe>"
+ #Make iframe
+ iframe = "<iframe id='downloadframe' src='#{iframe}' width='800' height='1000'></iframe>"
end
rescue Exception => e
err = e.message
end
- # Set variables for template
+ #Set variables for template
haml :sample06, :locals => {:clientId => settings.client_id, :privateKey => settings.private_key, :iframe => iframe, :err => err}
end
\ No newline at end of file