docbrown/app/models/data_update_script.rb
rhymes 5a2cae4fbb
Rubocop: enable and fix new Rails cops (#9537)
* Enable new Rails/* cops and use autocorrect on them

* Fixed Rails/PluckInWhere leftovers

* Fix Rails/DefaultScope

* Enable and fix Rails/PluckId

* Fix manual mistake with forcing autocorrection on Rails/PluckId

* Apply PR feedback to remove Rails/PluckId inline disables

* Apply PR feedback to get rid of Rails/PluckInWhere inline
2020-07-29 11:14:19 +02:00

69 lines
1.6 KiB
Ruby

class DataUpdateScript < ApplicationRecord
DIRECTORY = Rails.root.join("lib/data_update_scripts").freeze
NAMESPACE = "DataUpdateScripts".freeze
STATUSES = { enqueued: 0, working: 1, succeeded: 2, failed: 3 }.freeze
enum status: STATUSES
validates :file_name, uniqueness: true
class << self
def scripts_to_run
insert_new_scripts
enqueued.where(id: ids).order(file_name: :asc)
end
# true if there are more files on disk or any scripts to run, false otherwise
def scripts_to_run?
db_scripts = DataUpdateScript.pluck(:file_name, :status).to_h
return true if filenames.size > db_scripts.size
return true if db_scripts.values.any? { |s| s.to_sym == :enqueued }
false
end
private
def filenames
Dir.glob("*.rb", base: DIRECTORY).map do |f|
Pathname.new(f).basename(".rb").to_s
end
end
def insert_new_scripts
now = Time.current
scripts_params = filenames.map do |fn|
{ file_name: fn, created_at: now, updated_at: now }
end
DataUpdateScript.insert_all(scripts_params)
end
end
def mark_as_run!
update!(run_at: Time.current, status: :working)
end
def mark_as_finished!
update!(finished_at: Time.current, status: :succeeded)
end
def mark_as_failed!
update!(finished_at: Time.current, status: :failed)
end
def file_path
"#{self.class::DIRECTORY}/#{file_name}.rb"
end
def file_class
"#{self.class::NAMESPACE}::#{parsed_file_name.camelcase}".safe_constantize
end
private
def parsed_file_name
file_name.match(/\d{14}_(.*)/)[1]
end
end