require 'json' require 'rest_client' require 'calais-utils' module Jkl LICENSE_ID = YAML::load_file('config/keys.yml')['calais'] C_URI = URI.parse('http://api.opencalais.com/enlighten/rest/') def get_from_calais(content) post_args = { 'licenseID' => LICENSE_ID, 'content' => content, 'paramsXML' => paramsXML('application/json') } post_to(C_URI, post_args) end def get_tag_from_json(response) result = JSON.parse response result.delete_if {|key, value| key == "doc" } # ditching the doc cleaned_result = [] result.each do |key,tag| tag = clean_unwanted_items_from_hash tag cleaned_result << tag yield tag if block_given? end cleaned_result end def get_calais_metadata(response) ce = CalaisExtractor.new( response ) ce.prettify end #jkl doesn't work with these aspects of the calais response, also removing blanks def clean_unwanted_items_from_hash h h.delete_if {|k, v| k == "relevance" } h.delete_if {|k, v| k == "instances" } h.delete_if {|k, v| v == "N/A"} h.delete_if {|k, v| v == []} h.delete_if {|k, v| v == ""} h.delete_if {|k, v| k == "_typeGroup"} h end private def paramsXML(format) <<-paramsXML; paramsXML end end