mirror of
https://github.com/CodeforLeipzig/stadtratmonitor.git
synced 2024-12-22 23:53:15 +01:00
Use data originated from OParl API
This commit is contained in:
parent
f8a3c3eb83
commit
857ff4f164
3 changed files with 14 additions and 7 deletions
|
@ -5,9 +5,13 @@ class ImportController < ApplicationController
|
||||||
|
|
||||||
def new_papers_callback
|
def new_papers_callback
|
||||||
require 'open-uri'
|
require 'open-uri'
|
||||||
api_key = Rails.application.config_for(:morph)['key']
|
#api_key = Rails.application.config_for(:morph)['key']
|
||||||
uri = URI.parse("https://api.morph.io/jrlover/city_council_leipzig_recent_papers/data.json?key=#{api_key}&query=select%20*%20from%20%27data%27")
|
#uri = URI.parse("https://api.morph.io/jrlover/city_council_leipzig_recent_papers/data.json?key=#{api_key}&query=select%20*%20from%20%27data%27")
|
||||||
Paper.import_from_json(uri.read)
|
print("before parse")
|
||||||
|
uri = URI.parse("https://joergreichert.de/srm/input.json")
|
||||||
|
print("after parse")
|
||||||
|
#Paper.import_from_json(uri.read)
|
||||||
|
print("after import")
|
||||||
render nothing: true
|
render nothing: true
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
|
@ -92,7 +92,10 @@ class Paper < ActiveRecord::Base
|
||||||
url: record['url']
|
url: record['url']
|
||||||
}
|
}
|
||||||
record = find_or_initialize_by(url: attributes[:url])
|
record = find_or_initialize_by(url: attributes[:url])
|
||||||
record.update_attributes(attributes)
|
out = record.update_attributes(attributes)
|
||||||
|
if !out
|
||||||
|
puts "Not imported #{attributes[:name]}: #{record.errors.messages}"
|
||||||
|
end
|
||||||
end
|
end
|
||||||
puts "Imported #{count - old_count} Papers!"
|
puts "Imported #{count - old_count} Papers!"
|
||||||
end
|
end
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
desc 'Import Paper records from setup importers'
|
desc 'Import Paper records from setup importers'
|
||||||
task import_papers: :environment do
|
task import_papers: :environment do
|
||||||
require 'open-uri'
|
require 'open-uri'
|
||||||
OpenSSL::SSL::VERIFY_PEER = OpenSSL::SSL::VERIFY_NONE
|
#OpenSSL::SSL::VERIFY_PEER = OpenSSL::SSL::VERIFY_NONE
|
||||||
api_key = Rails.application.config_for(:morph)['key']
|
#api_key = Rails.application.config_for(:morph)['key']
|
||||||
uri = URI.parse("https://api.morph.io/jrlover/city_council_leipzig_recent_papers/data.json?key=#{api_key}&query=select%20*%20from%20%27data%27")
|
uri = URI.parse("https://joergreichert.de/srm/input.json")
|
||||||
Paper.import_from_json(uri.read)
|
Paper.import_from_json(uri.read)
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue