2016-09-24 11:00:46 +08:00
|
|
|
# frozen_string_literal: true
|
2017-11-25 11:23:47 -08:00
|
|
|
|
2016-09-22 01:22:40 +08:00
|
|
|
class Synapse < ApplicationRecord
|
2017-02-09 16:53:19 -05:00
|
|
|
ATTRS_TO_WATCH = %w(desc category permission defer_to_map_id).freeze
|
|
|
|
|
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'
|
2017-02-09 16:53:19 -05:00
|
|
|
belongs_to :updated_by, class_name: 'User'
|
2012-10-05 16:40:30 -04:00
|
|
|
|
2016-09-28 10:32:28 +08:00
|
|
|
belongs_to :topic1, class_name: 'Topic', foreign_key: 'topic1_id'
|
|
|
|
belongs_to :topic2, class_name: 'Topic', foreign_key: 'topic2_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-09-28 10:32:28 +08:00
|
|
|
validates :topic1_id, presence: true
|
|
|
|
validates :topic2_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) {
|
2016-09-28 10:32:28 +08:00
|
|
|
where(topic1_id: topic_id).or(where(topic2_id: topic_id))
|
2016-07-26 08:14:23 +08:00
|
|
|
}
|
2016-03-12 11:10:30 +11:00
|
|
|
|
2017-01-28 16:40:41 -05:00
|
|
|
before_create :set_perm_by_defer
|
2017-02-11 00:20:42 -05:00
|
|
|
after_create :after_created_async
|
2016-12-16 16:51:52 -05:00
|
|
|
after_update :after_updated
|
2017-02-11 00:20:42 -05:00
|
|
|
before_destroy :before_destroyed
|
2016-12-16 16:51:52 -05:00
|
|
|
|
2016-07-26 08:14:23 +08:00
|
|
|
delegate :name, to: :user, prefix: true
|
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-04-24 11:50:35 -04:00
|
|
|
def collaborator_ids
|
|
|
|
if defer_to_map
|
2017-11-25 11:23:47 -08:00
|
|
|
defer_to_map.editors.reject { |mapper| mapper == user }.map(&:id)
|
2016-04-24 11:50:35 -04:00
|
|
|
else
|
|
|
|
[]
|
|
|
|
end
|
|
|
|
end
|
2016-07-26 08:14:23 +08:00
|
|
|
|
2017-01-03 16:12:58 -05:00
|
|
|
def filtered
|
|
|
|
{
|
|
|
|
id: id,
|
|
|
|
permission: permission,
|
|
|
|
user_id: user_id,
|
|
|
|
collaborator_ids: collaborator_ids
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
2016-07-26 08:14:23 +08:00
|
|
|
def as_json(_options = {})
|
2017-11-25 11:23:47 -08:00
|
|
|
super(methods: %i(user_name user_image collaborator_ids))
|
2014-08-12 12:01:01 -04:00
|
|
|
end
|
2016-12-16 16:51:52 -05:00
|
|
|
|
2017-01-22 16:42:04 -05:00
|
|
|
def as_rdf
|
|
|
|
output = ''
|
|
|
|
output += %(d:synapse_#{id} a mm:Synapse ;\n)
|
|
|
|
output += %( mm:topic1 d:topic_#{topic1_id} ;\n)
|
|
|
|
output += %( mm:topic2 d:topic_#{topic2_id} ;\n)
|
|
|
|
output += %( mm:direction "#{category}" ;\n)
|
|
|
|
output += %( rdfs:comment "#{desc}" ;\n) if desc.present?
|
|
|
|
output[-2] = '.'
|
|
|
|
output += %(\n)
|
|
|
|
output
|
|
|
|
end
|
2017-03-06 22:49:46 -05:00
|
|
|
|
2017-01-28 16:40:41 -05:00
|
|
|
protected
|
2017-03-06 22:49:46 -05:00
|
|
|
|
2017-01-28 16:40:41 -05:00
|
|
|
def set_perm_by_defer
|
|
|
|
permission = defer_to_map.permission if defer_to_map
|
|
|
|
end
|
2017-03-06 22:49:46 -05:00
|
|
|
|
2017-02-11 00:20:42 -05:00
|
|
|
def after_created_async
|
|
|
|
follow_ids = NotificationService.notify_followers(topic1, TOPIC_CONNECTED_1, self)
|
|
|
|
NotificationService.notify_followers(topic2, TOPIC_CONNECTED_2, self, nil, follow_ids)
|
|
|
|
end
|
|
|
|
handle_asynchronously :after_created_async
|
2017-01-22 16:42:04 -05:00
|
|
|
|
2016-12-16 16:51:52 -05:00
|
|
|
def after_updated
|
2017-02-09 16:53:19 -05:00
|
|
|
if ATTRS_TO_WATCH.any? { |k| changed_attributes.key?(k) }
|
|
|
|
new = attributes.select { |k| ATTRS_TO_WATCH.include?(k) }
|
|
|
|
old = changed_attributes.select { |k| ATTRS_TO_WATCH.include?(k) }
|
2017-01-23 19:30:13 -05:00
|
|
|
meta = new.merge(old) # we are prioritizing the old values, keeping them
|
2017-02-09 16:53:19 -05:00
|
|
|
meta['changed'] = changed_attributes.keys.select { |k| ATTRS_TO_WATCH.include?(k) }
|
|
|
|
Events::SynapseUpdated.publish!(self, updated_by, meta)
|
2017-01-23 19:30:13 -05:00
|
|
|
maps.each do |map|
|
2017-01-03 16:12:58 -05:00
|
|
|
ActionCable.server.broadcast 'map_' + map.id.to_s, type: 'synapseUpdated', id: id
|
2017-01-23 19:30:13 -05:00
|
|
|
end
|
2016-12-16 16:51:52 -05:00
|
|
|
end
|
|
|
|
end
|
2017-03-06 22:49:46 -05:00
|
|
|
|
2017-02-11 00:20:42 -05:00
|
|
|
def before_destroyed
|
|
|
|
# hard to know how to do this yet, because the synapse actually gets destroyed
|
2017-11-25 11:23:47 -08:00
|
|
|
# NotificationService.notify_followers(topic1, 'topic_disconnected', self)
|
|
|
|
# NotificationService.notify_followers(topic2, 'topic_disconnected', self)
|
2017-02-11 00:20:42 -05:00
|
|
|
end
|
2012-10-05 16:40:30 -04:00
|
|
|
end
|