stadtratmonitor/app/controllers/import_controller.rb

25 lines
826 B
Ruby
Raw Normal View History

2020-03-09 12:13:27 +01:00
# frozen_string_literal: true
class ImportController < ApplicationController
2020-03-09 12:13:27 +01:00
skip_before_action :verify_authenticity_token, only: [:new_papers_callback]
2016-04-10 15:31:35 +02:00
def new_papers_callback
2023-04-29 22:58:51 +02:00
received_secret = params[:secret]
expected_secret = Rails.application.config.shared_import_secret
if received_secret != expected_secret
print("secrets not match")
return
end
require 'open-uri'
2020-09-20 22:44:44 +02:00
#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")
print("before parse")
uri = URI.parse("https://joergreichert.de/srm/input.json")
print("after parse")
2023-04-29 22:58:51 +02:00
Paper.import_from_json(uri.read)
2020-09-20 22:44:44 +02:00
print("after import")
2023-04-29 22:58:51 +02:00
head :no_content
end
2020-03-09 12:13:27 +01:00
end