2019-07-26 21:58:51 +08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-03-10 00:04:54 +08:00
|
|
|
class RepositoryAssetValue < ApplicationRecord
|
|
|
|
belongs_to :created_by,
|
|
|
|
foreign_key: :created_by_id,
|
|
|
|
class_name: 'User',
|
|
|
|
optional: true
|
|
|
|
belongs_to :last_modified_by,
|
|
|
|
foreign_key: :last_modified_by_id,
|
|
|
|
class_name: 'User',
|
|
|
|
optional: true
|
|
|
|
belongs_to :asset,
|
|
|
|
inverse_of: :repository_asset_value,
|
|
|
|
dependent: :destroy
|
|
|
|
has_one :repository_cell, as: :value, dependent: :destroy, inverse_of: :value
|
|
|
|
accepts_nested_attributes_for :repository_cell
|
|
|
|
|
|
|
|
validates :asset, :repository_cell, presence: true
|
|
|
|
|
2019-08-09 20:56:00 +08:00
|
|
|
SORTABLE_COLUMN_NAME = 'active_storage_blobs.filename'
|
|
|
|
SORTABLE_VALUE_INCLUDE = { repository_asset_value: { asset: { file_attachment: :blob } } }.freeze
|
2020-02-03 22:20:01 +08:00
|
|
|
PRELOAD_INCLUDE = { repository_asset_value: { asset: { file_attachment: :blob } } }.freeze
|
2019-06-06 23:28:59 +08:00
|
|
|
|
2018-03-10 00:04:54 +08:00
|
|
|
def formatted
|
2019-07-09 16:28:15 +08:00
|
|
|
asset.file_name
|
2018-03-10 00:04:54 +08:00
|
|
|
end
|
2018-03-13 17:40:27 +08:00
|
|
|
|
|
|
|
def data
|
2019-07-09 16:28:15 +08:00
|
|
|
asset.file_name
|
2018-03-13 17:40:27 +08:00
|
|
|
end
|
2018-08-23 20:52:00 +08:00
|
|
|
|
2018-08-24 17:26:49 +08:00
|
|
|
def data_changed?(_new_data)
|
|
|
|
true
|
|
|
|
end
|
|
|
|
|
|
|
|
def update_data!(new_data, user)
|
2019-12-10 20:11:50 +08:00
|
|
|
if new_data.is_a?(String) # assume it's a signed_id_token
|
2019-12-10 15:41:09 +08:00
|
|
|
asset.file.attach(new_data)
|
2019-12-10 20:11:50 +08:00
|
|
|
elsif new_data[:file_data]
|
|
|
|
asset.file.attach(io: StringIO.new(Base64.decode64(new_data[:file_data])), filename: new_data[:file_name])
|
2019-12-08 23:53:59 +08:00
|
|
|
end
|
|
|
|
|
2018-08-24 17:26:49 +08:00
|
|
|
asset.last_modified_by = user
|
|
|
|
self.last_modified_by = user
|
|
|
|
asset.save! && save!
|
|
|
|
end
|
|
|
|
|
2018-08-23 20:52:00 +08:00
|
|
|
def self.new_with_payload(payload, attributes)
|
|
|
|
value = new(attributes)
|
|
|
|
team = value.repository_cell.repository_column.repository.team
|
2019-12-09 20:48:24 +08:00
|
|
|
value.asset = Asset.create!(created_by: value.created_by, last_modified_by: value.created_by, team: team)
|
|
|
|
|
2019-12-10 20:11:50 +08:00
|
|
|
if payload.is_a?(String) # assume it's a signed_id_token
|
2019-12-10 15:41:09 +08:00
|
|
|
value.asset.file.attach(payload)
|
2019-12-10 20:11:50 +08:00
|
|
|
elsif payload[:file_data]
|
|
|
|
value.asset.file.attach(io: StringIO.new(Base64.decode64(payload[:file_data])), filename: payload[:file_name])
|
2019-12-09 20:48:24 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
value.asset.post_process_file(team)
|
2018-08-23 20:52:00 +08:00
|
|
|
value
|
|
|
|
end
|
2020-01-10 16:29:20 +08:00
|
|
|
|
|
|
|
alias export_formatted formatted
|
2018-03-10 00:04:54 +08:00
|
|
|
end
|