mirror of
https://github.com/CodeforLeipzig/stadtratmonitor.git
synced 2025-04-20 07:11:33 +02:00
use SHARED_IMPORT_SECRET
This commit is contained in:
parent
19c29ef021
commit
ac5350c461
6 changed files with 12 additions and 5 deletions
|
@ -4,14 +4,21 @@ class ImportController < ApplicationController
|
|||
skip_before_action :verify_authenticity_token, only: [:new_papers_callback]
|
||||
|
||||
def new_papers_callback
|
||||
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'
|
||||
#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")
|
||||
#Paper.import_from_json(uri.read)
|
||||
Paper.import_from_json(uri.read)
|
||||
print("after import")
|
||||
render nothing: true
|
||||
head :no_content
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue