2019-05-07 19:47:50 +08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-06-23 21:19:08 +08:00
|
|
|
class RepositoryTextValue < ApplicationRecord
|
2020-02-17 07:26:20 +08:00
|
|
|
belongs_to :created_by, foreign_key: :created_by_id,
|
|
|
|
class_name: 'User',
|
|
|
|
inverse_of: :created_repository_text_values
|
|
|
|
belongs_to :last_modified_by, foreign_key: :last_modified_by_id,
|
|
|
|
class_name: 'User',
|
|
|
|
inverse_of: :modified_repository_text_values
|
|
|
|
has_one :repository_cell, as: :value, dependent: :destroy
|
2017-05-16 21:27:36 +08:00
|
|
|
accepts_nested_attributes_for :repository_cell
|
|
|
|
|
|
|
|
validates :repository_cell, presence: true
|
2020-01-10 18:09:47 +08:00
|
|
|
validates :data, presence: true, length: { maximum: Constants::TEXT_MAX_LENGTH }
|
2017-06-06 23:35:29 +08:00
|
|
|
|
2019-06-06 23:28:59 +08:00
|
|
|
SORTABLE_COLUMN_NAME = 'repository_text_values.data'
|
|
|
|
|
2017-06-06 23:35:29 +08:00
|
|
|
def formatted
|
|
|
|
data
|
|
|
|
end
|
2018-08-23 20:52:00 +08:00
|
|
|
|
2022-01-31 18:10:39 +08:00
|
|
|
def self.add_filter_condition(repository_rows, join_alias, filter_element)
|
2021-12-21 19:38:52 +08:00
|
|
|
case filter_element.operator
|
|
|
|
when 'contains'
|
|
|
|
repository_rows
|
2022-01-31 18:10:39 +08:00
|
|
|
.where("#{join_alias}.data ILIKE ?", "%#{sanitize_sql_like(filter_element.parameters['text'])}%")
|
2021-12-21 19:38:52 +08:00
|
|
|
when 'doesnt_contain'
|
|
|
|
repository_rows
|
2022-01-31 18:10:39 +08:00
|
|
|
.where.not("#{join_alias}.data ILIKE ?", "%#{sanitize_sql_like(filter_element.parameters['text'])}%")
|
2021-12-21 19:38:52 +08:00
|
|
|
else
|
|
|
|
raise ArgumentError, 'Wrong operator for RepositoryTextValue!'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2022-02-21 19:08:35 +08:00
|
|
|
def data_different?(new_data)
|
2018-08-24 17:26:49 +08:00
|
|
|
new_data != data
|
|
|
|
end
|
|
|
|
|
|
|
|
def update_data!(new_data, user)
|
|
|
|
self.data = new_data
|
|
|
|
self.last_modified_by = user
|
|
|
|
save!
|
|
|
|
end
|
|
|
|
|
2020-04-09 18:33:04 +08:00
|
|
|
def snapshot!(cell_snapshot)
|
|
|
|
value_snapshot = dup
|
|
|
|
value_snapshot.assign_attributes(
|
|
|
|
repository_cell: cell_snapshot,
|
|
|
|
created_at: created_at,
|
|
|
|
updated_at: updated_at
|
|
|
|
)
|
|
|
|
value_snapshot.save!
|
|
|
|
end
|
|
|
|
|
2018-08-23 20:52:00 +08:00
|
|
|
def self.new_with_payload(payload, attributes)
|
|
|
|
value = new(attributes)
|
|
|
|
value.data = payload
|
|
|
|
value
|
|
|
|
end
|
2020-01-10 16:29:20 +08:00
|
|
|
|
2020-03-05 21:34:31 +08:00
|
|
|
def self.import_from_text(text, attributes, _options = {})
|
2020-02-11 20:51:34 +08:00
|
|
|
return nil if text.blank?
|
|
|
|
|
|
|
|
new(attributes.merge(data: text.truncate(Constants::TEXT_MAX_LENGTH)))
|
2020-02-03 22:20:01 +08:00
|
|
|
end
|
|
|
|
|
2020-01-10 16:29:20 +08:00
|
|
|
alias export_formatted formatted
|
2017-05-16 21:27:36 +08:00
|
|
|
end
|