#GET request get '/sample20' do haml :sample20 end #POST request post '/sample20' do #Set variables set :client_id, params[:clientId] set :private_key, params[:privateKey] set :resultFileId, params[:resultFileId] set :base_path, params[:basePath] begin #Check required variables raise 'Please enter all required parameters' if settings.client_id.empty? or settings.private_key.empty? or settings.resultFileId.empty? #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 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 = base_path # default is 'https://api.groupdocs.com' end #Construct new storage file file = GroupDocs::Storage::File.new(guid: settings.resultFileId) #Construct new document document = GroupDocs::Document.new(file: file) #Get compare changes changes = document.changes!() result = '' result += "
Change Name | Change |
id | #{change.id} |
type | #{change.type} |
text | #{change.text} |
page id | #{change.page[:Id]} |
page weight | #{change.page[:Width]} |
page height | #{change.page[:Height]} |
box x | #{change.box.x} |
box y | #{change.box.y} |
box weight | #{change.box.width} |
box height | #{change.box.height} |