examples/api-samples/samples/sample17.rb in groupdocs-1.5.8 vs examples/api-samples/samples/sample17.rb in groupdocs-1.5.9
- old
+ new
@@ -1,58 +1,66 @@
-# GET request
+#GET request
get '/sample17' do
haml :sample17
end
-# POST request
+#POST request
post '/sample17' do
- # set variables
+ #Set variables
set :client_id, params[:clientId]
set :private_key, params[:privateKey]
set :file, params[:file]
set :base_path, params[:basePath]
begin
- # check required variables
+ #Check required variables
raise 'Please enter all required parameters' if settings.client_id.empty? or settings.private_key.empty? or settings.file.nil?
- 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 path
+ #Construct path
filepath = "#{Dir.tmpdir}/#{params[:file][:filename]}"
- # open file
+ #Open file
File.open(filepath, 'wb') { |f| f.write(params[:file][:tempfile].read) }
- # upload file
+ #Upload file
file = GroupDocs::Storage::File.upload!(filepath, {})
- # compress file
+ #Compress file
file.compress!()
- # construct result messages
+ #Construct result messages
massage = "<p>Archive created and saved successfully. Here you can see your <strong>#{params[:file][:filename]}</strong> file in the GroupDocs Embedded Viewer.</p>"
- #Get url from request
- case settings.base_path
-
+ #Prepare to sign url
+ iframe = "/document-viewer/embed/#{file.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'
- url = "http://stage-apps-groupdocs.dynabic.com/document-viewer/embed/#{file.guid}"
+ iframe = "https://stage-api-groupdocs.dynabic.com#{url}"
when 'https://dev-api-groupdocs.dynabic.com'
- url = "http://dev-apps-groupdocs.dynabic.com/document-viewer/embed/#{file.guid}"
+ iframe = "https://dev-apps.groupdocs.com#{url}"
else
- url = "https://apps.groupdocs.com/document-viewer/embed/#{file.guid}"
+ iframe = "https://apps.groupdocs.com#{url}"
end
- # Add the signature to the url request
- iframe = GroupDocs::Api::Request.new(:path => url).prepare_and_sign_url
- # Construct result iframe
- iframe = "<iframe src='#{iframe}' frameborder='0' width='100%' height='600'></iframe>"
+ #Make iframe
+ iframe = "<iframe id='downloadframe' src='#{iframe}' width='800' height='1000'></iframe>"
rescue Exception => e
err = e.message
end