sample5.rb | |
---|---|
GET request | get '/sample5' do
haml :sample5
end
|
POST request |
post '/sample5' do
|
set variables |
set :client_id, params[:client_id]
set :private_key, params[:private_key]
set :file_id, params[:file_id]
set :url, params[:url]
set :copy, params[:copy]
set :move, params[:move]
set :dest_path, params[:dest_path]
begin
|
check required variables |
raise 'Please enter all required parameters' if settings.client_id.empty? or settings.private_key.empty? or settings.file_id.empty?
file = nil
|
get document by file GUID |
case settings.source
when 'guid'
file = GroupDocs::Storage::File.new({:guid => settings.file_id})
when 'local'
|
construct path |
filepath = "#{Dir.tmpdir}/#{params[:file][:filename]}"
|
open file |
File.open(filepath, 'wb') { |f| f.write(params[:file][:tempfile].read) }
|
make a request to API using clientid and privatekey |
file = GroupDocs::Storage::File.upload!(filepath, {}, client_id: settings.client_id, private_key: settings.private_key)
when 'url'
file = GroupDocs::Storage::File.upload_web!(settings.url, client_id: settings.client_id, private_key: settings.private_key)
else
raise 'Wrong GUID source.'
end
|
copy file using request to API |
unless settings.copy.nil?
file = file.copy!(settings.dest_path, {}, {:client_id => settings.client_id, :private_key => settings.private_key})
button = settings.copy
end
|
move file using request to API |
unless settings.move.nil?
file = file.move!(settings.dest_path, {}, {:client_id => settings.client_id, :private_key => settings.private_key})
button = settings.move
end
|
result message |
if file
massage = "File was #{button}'ed to the #{settings.dest_path} folder"
end
rescue Exception => e
err = e.message
end
|
set variables for template |
haml :sample5, :locals => {:userId => settings.client_id, :privateKey => settings.private_key, :file_id => settings.file_id, :dest_path => settings.dest_path, :massage => massage, :err => err}
end
|