Last active
August 29, 2015 14:26
-
-
Save jrgns/a8110a38a5c2fcd14a84 to your computer and use it in GitHub Desktop.
Import The Guardian articles into Elasticsearch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# encoding: UTF-8 | |
require 'elasticsearch' | |
require 'rest-client' | |
require 'json' | |
require 'pp' | |
require 'hashie' | |
# Default options | |
def params | |
{ | |
'api-key' => ENV['GUARDIAN_API_KEY'], | |
'page-size' => 20 | |
} | |
end | |
guardian_url = 'http://content.guardianapis.com/search' | |
client = Elasticsearch::Client.new log: false, host: ENV['ELASTICSEARCH_HOST'] | |
# Page through the first available 20 pages | |
(1..20).each do |page| | |
puts "Fetching page #{page}" | |
begin | |
# page | |
response = RestClient.get guardian_url, params: params.merge( | |
# Custom options | |
{ page: page, section: 'books|business|education|environment|news|science' } | |
) | |
rescue => e | |
pp e.response | |
raise e | |
end | |
response = Hashie::Mash.new JSON.parse(response) | |
response = response.response | |
response.results.each do |article| | |
puts "Recording #{article.id}" | |
content = RestClient.get(article.apiUrl, params: params.merge({'show-fields' => 'all', 'show-tags' => 'all'})) | |
content = Hashie::Mash.new JSON.parse(content) | |
tags = content.response.content.tags.select{ |tag| tag.type == 'keyword' }.collect(&:webTitle) | |
content = content.response.content.fields.body | |
body = { | |
title: article.webTitle, | |
date: article.webPublicationDate, | |
categories: tags, | |
content: content, | |
section: article.sectionName | |
} | |
client.index index: 'static-elastic', type: 'guardian', id: article.id.gsub(/\//, '-'), body: body | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment