mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-12 20:24:43 +08:00
52 lines
1.6 KiB
Ruby
52 lines
1.6 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
class RepositoryRow < ApplicationRecord
|
|
include SearchableModel
|
|
include SearchableByNameModel
|
|
|
|
belongs_to :repository, class_name: 'RepositoryBase'
|
|
belongs_to :created_by, foreign_key: :created_by_id, class_name: 'User'
|
|
belongs_to :last_modified_by, foreign_key: :last_modified_by_id, class_name: 'User'
|
|
has_many :repository_cells, -> { order(:id) }, dependent: :destroy
|
|
has_many :repository_columns, through: :repository_cells
|
|
has_many :my_module_repository_rows,
|
|
inverse_of: :repository_row, dependent: :destroy
|
|
has_many :my_modules, through: :my_module_repository_rows
|
|
|
|
auto_strip_attributes :name, nullify: false
|
|
validates :name,
|
|
presence: true,
|
|
length: { maximum: Constants::NAME_MAX_LENGTH }
|
|
validates :created_by, presence: true
|
|
|
|
def self.viewable_by_user(user, teams)
|
|
where(repository: Repository.viewable_by_user(user, teams))
|
|
end
|
|
|
|
def self.name_like(query)
|
|
where('repository_rows.name ILIKE ?', "%#{query}%")
|
|
end
|
|
|
|
def self.change_owner(team, user, new_owner)
|
|
joins(:repository)
|
|
.where('repositories.team_id = ? and repository_rows.created_by_id = ?', team, user)
|
|
.update_all(created_by_id: new_owner.id)
|
|
end
|
|
|
|
def editable?
|
|
true
|
|
end
|
|
|
|
def snapshot!(repository_snapshot)
|
|
row_snapshot = dup
|
|
row_snapshot.assign_attributes(
|
|
repository: repository_snapshot,
|
|
parent_id: id,
|
|
created_at: created_at,
|
|
updated_at: updated_at
|
|
)
|
|
row_snapshot.save!
|
|
|
|
repository_cells.each { |cell| cell.snapshot!(row_snapshot) }
|
|
end
|
|
end
|