mirror of
https://github.com/CodeforLeipzig/stadtratmonitor.git
synced 2024-12-23 08:03:14 +01:00
23 lines
583 B
Ruby
23 lines
583 B
Ruby
require 'elasticsearch/model'
|
|
require 'json'
|
|
|
|
class Paper < ActiveRecord::Base
|
|
include Elasticsearch::Model
|
|
include Elasticsearch::Model::Callbacks
|
|
|
|
class << self
|
|
def import_from_json(json_string)
|
|
JSON.parse(json_string).each do |record|
|
|
attributes = {
|
|
name: record['name'],
|
|
url: record['url'],
|
|
reference: record['reference'],
|
|
paper_type: record['paper_type'],
|
|
originator: record['originator'],
|
|
published_at: record['published_at'],
|
|
}
|
|
create!(attributes)
|
|
end
|
|
end
|
|
end
|
|
end
|