1
0
Fork 0
This repository has been archived on 2023-03-28. You can view files and clone it, but cannot push or open issues or pull requests.
lpr-partynest/db/seeds.rb

94 lines
2.2 KiB
Ruby
Raw Normal View History

2018-12-01 18:42:36 +00:00
# frozen_string_literal: true
require 'csv'
2018-12-01 18:42:36 +00:00
2019-09-30 23:24:18 +00:00
def csv_foreach(filename, &block)
CSV.foreach(
2019-10-01 22:13:01 +00:00
Rails.root.join('db', 'data', "#{filename}.csv"),
2019-09-30 23:24:18 +00:00
col_sep: '|',
&block
)
end
csv_foreach :federal_subjects \
do |(id, english_name, native_name, number, timezone, centre)|
2019-07-19 21:59:07 +00:00
id = Integer(id.strip)
english_name.strip!
2019-07-19 21:59:07 +00:00
native_name.strip!
2019-07-19 22:52:14 +00:00
number = Integer(number.strip.sub(/\A0*/, ''))
2019-07-20 02:40:56 +00:00
timezone.strip!
2019-07-22 09:14:14 +00:00
centre.strip!
2018-12-01 18:42:36 +00:00
2019-07-19 21:59:07 +00:00
FederalSubject.where(id: id).first_or_create! do |new_federal_subject|
new_federal_subject.english_name = english_name
2019-06-23 15:59:44 +00:00
new_federal_subject.native_name = native_name
2019-07-19 22:52:14 +00:00
new_federal_subject.number = number
2019-07-20 02:40:56 +00:00
new_federal_subject.timezone = timezone
2019-07-22 09:14:14 +00:00
new_federal_subject.centre = centre
2019-04-27 12:40:12 +00:00
end
2018-12-01 18:42:36 +00:00
end
2018-12-04 01:57:16 +00:00
2019-09-30 23:24:18 +00:00
csv_foreach :contact_networks \
do |(id, codename, name)|
2019-08-04 21:11:44 +00:00
id = Integer(id.strip)
codename.strip!
name.strip!
2019-08-04 21:11:44 +00:00
ContactNetwork.where(id: id).first_or_create! do |new_contact_network|
new_contact_network.codename = codename
new_contact_network.name = name
2019-08-04 21:11:44 +00:00
end
end
2019-09-30 23:24:18 +00:00
csv_foreach :org_unit_kinds \
do |(codename, parent, short_name, name)|
2019-09-30 23:12:04 +00:00
parent = parent.blank? ? nil : OrgUnitKind.find_by!(codename: parent.strip)
2019-09-30 22:37:59 +00:00
codename.strip!
short_name.strip!
name.strip!
next if OrgUnitKind.find_by codename: codename
OrgUnitKind.create!(
codename: codename,
short_name: short_name,
name: name,
2019-09-30 23:12:04 +00:00
parent_kind: parent,
2019-09-30 22:37:59 +00:00
)
end
2019-09-30 23:24:18 +00:00
csv_foreach :relation_statuses \
do |(org_unit_kind, codename, name)|
2019-09-30 23:12:04 +00:00
org_unit_kind =
if org_unit_kind.blank?
nil
else
OrgUnitKind.find_by!(codename: org_unit_kind.strip)
end
2019-09-21 14:39:28 +00:00
codename.strip!
name.strip!
RelationStatus.where(codename: codename).first_or_create! \
do |new_relation_status|
new_relation_status.org_unit_kind = org_unit_kind
2019-09-21 14:39:28 +00:00
new_relation_status.name = name
end
end
2018-12-09 03:56:06 +00:00
Rails.application.settings(:superuser).tap do |config|
2019-08-11 19:27:06 +00:00
user = User.where(email: config[:email]).first_or_create! do |new_user|
2018-12-09 03:07:39 +00:00
new_user.password = config[:password]
2018-12-09 02:14:33 +00:00
new_user.confirmed_at = Time.zone.now
new_user.account = Account.create!(
2019-04-28 13:34:46 +00:00
nickname: config[:nickname],
public_name: config[:public_name],
2019-04-28 13:34:46 +00:00
biography: config[:biography],
2019-09-04 22:05:00 +00:00
contact_list: ContactList.new,
)
2019-08-11 19:27:06 +00:00
end
user.account.update! superuser: true
2018-12-09 02:14:33 +00:00
end