2016-09-24 11:00:46 +08:00
|
|
|
# frozen_string_literal: true
|
2016-09-22 01:22:40 +08:00
|
|
|
class Synapse < ApplicationRecord
|
2014-08-12 18:14:04 -04:00
|
|
|
belongs_to :user
|
2016-07-26 08:14:23 +08:00
|
|
|
belongs_to :defer_to_map, class_name: 'Map', foreign_key: 'defer_to_map_id'
|
2012-10-05 16:40:30 -04:00
|
|
|
|
2016-07-26 08:14:23 +08:00
|
|
|
belongs_to :topic1, class_name: 'Topic', foreign_key: 'node1_id'
|
|
|
|
belongs_to :topic2, class_name: 'Topic', foreign_key: 'node2_id'
|
2012-10-05 16:40:30 -04:00
|
|
|
|
2015-10-02 16:04:30 +08:00
|
|
|
has_many :mappings, as: :mappable, dependent: :destroy
|
2016-07-26 08:14:23 +08:00
|
|
|
has_many :maps, through: :mappings
|
2012-10-26 06:04:52 -04:00
|
|
|
|
2015-10-23 23:34:18 +08:00
|
|
|
validates :desc, length: { minimum: 0, allow_nil: false }
|
|
|
|
|
2015-12-18 09:25:54 +08:00
|
|
|
validates :permission, presence: true
|
2016-03-11 17:16:04 +11:00
|
|
|
validates :node1_id, presence: true
|
|
|
|
validates :node2_id, presence: true
|
2015-12-18 09:25:54 +08:00
|
|
|
validates :permission, inclusion: { in: Perm::ISSIONS.map(&:to_s) }
|
|
|
|
|
2016-02-09 14:25:39 +08:00
|
|
|
validates :category, inclusion: { in: ['from-to', 'both'], allow_nil: true }
|
|
|
|
|
2016-07-26 08:14:23 +08:00
|
|
|
scope :for_topic, ->(topic_id = nil) {
|
|
|
|
where('node1_id = ? OR node2_id = ?', topic_id, topic_id)
|
|
|
|
}
|
2016-03-12 11:10:30 +11:00
|
|
|
|
2016-02-01 17:25:06 +08:00
|
|
|
# :nocov:
|
2016-07-26 08:14:23 +08:00
|
|
|
delegate :name, to: :user, prefix: true
|
2016-02-01 17:25:06 +08:00
|
|
|
# :nocov:
|
2014-08-12 12:01:01 -04:00
|
|
|
|
2016-02-01 17:25:06 +08:00
|
|
|
# :nocov:
|
2014-08-12 12:01:01 -04:00
|
|
|
def user_image
|
2016-02-09 14:25:39 +08:00
|
|
|
user.image.url
|
2014-08-12 12:01:01 -04:00
|
|
|
end
|
2016-02-01 17:25:06 +08:00
|
|
|
# :nocov:
|
2014-08-12 12:01:01 -04:00
|
|
|
|
2016-04-24 11:50:35 -04:00
|
|
|
# :nocov:
|
|
|
|
def collaborator_ids
|
|
|
|
if defer_to_map
|
2016-07-26 08:14:23 +08:00
|
|
|
defer_to_map.editors.select { |mapper| mapper != user }.map(&:id)
|
2016-04-24 11:50:35 -04:00
|
|
|
else
|
|
|
|
[]
|
|
|
|
end
|
|
|
|
end
|
|
|
|
# :nocov:
|
2016-07-26 08:14:23 +08:00
|
|
|
|
|
|
|
# :nocov:
|
2016-04-24 11:50:35 -04:00
|
|
|
def calculated_permission
|
|
|
|
if defer_to_map
|
2016-09-24 11:00:46 +08:00
|
|
|
defer_to_map&.permission
|
2016-04-24 11:50:35 -04:00
|
|
|
end
|
|
|
|
# :nocov:
|
2016-07-26 08:14:23 +08:00
|
|
|
|
2016-02-01 17:25:06 +08:00
|
|
|
# :nocov:
|
2016-07-26 08:14:23 +08:00
|
|
|
def as_json(_options = {})
|
|
|
|
super(methods: [:user_name, :user_image, :calculated_permission, :collaborator_ids])
|
2014-08-12 12:01:01 -04:00
|
|
|
end
|
2016-02-01 17:25:06 +08:00
|
|
|
# :nocov:
|
2012-10-05 16:40:30 -04:00
|
|
|
end
|