2019-02-15 15:39:39 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module Shardable
|
|
|
|
extend ActiveSupport::Concern
|
|
|
|
|
|
|
|
included do
|
|
|
|
belongs_to :shard
|
2021-01-03 14:25:43 +05:30
|
|
|
|
|
|
|
scope :for_repository_storage, -> (repository_storage) { joins(:shard).where(shards: { name: repository_storage }) }
|
|
|
|
scope :excluding_repository_storage, -> (repository_storage) { joins(:shard).where.not(shards: { name: repository_storage }) }
|
2021-02-22 17:27:13 +05:30
|
|
|
scope :for_shard, -> (shard) { where(shard_id: shard) }
|
2021-01-03 14:25:43 +05:30
|
|
|
|
2019-02-15 15:39:39 +05:30
|
|
|
validates :shard, presence: true
|
|
|
|
end
|
|
|
|
|
|
|
|
def shard_name
|
|
|
|
shard&.name
|
|
|
|
end
|
|
|
|
|
|
|
|
def shard_name=(name)
|
|
|
|
self.shard = Shard.by_name(name)
|
|
|
|
end
|
|
|
|
end
|