2012-10-05 20:40:30 +00:00
|
|
|
class Synapse < ActiveRecord::Base
|
2014-08-12 22:14:04 +00:00
|
|
|
belongs_to :user
|
2012-10-05 20:40:30 +00:00
|
|
|
|
2014-08-12 22:14:04 +00:00
|
|
|
belongs_to :topic1, :class_name => "Topic", :foreign_key => "node1_id"
|
|
|
|
belongs_to :topic2, :class_name => "Topic", :foreign_key => "node2_id"
|
2012-10-05 20:40:30 +00:00
|
|
|
|
2015-10-02 08:04:30 +00:00
|
|
|
has_many :mappings, as: :mappable, dependent: :destroy
|
2014-08-12 22:14:04 +00:00
|
|
|
has_many :maps, :through => :mappings
|
2012-10-26 10:04:52 +00:00
|
|
|
|
2015-10-23 15:34:18 +00:00
|
|
|
validates :desc, length: { minimum: 0, allow_nil: false }
|
|
|
|
|
2015-12-18 01:25:54 +00:00
|
|
|
validates :permission, presence: true
|
2016-03-11 06:16:04 +00:00
|
|
|
validates :node1_id, presence: true
|
|
|
|
validates :node2_id, presence: true
|
2015-12-18 01:25:54 +00:00
|
|
|
validates :permission, inclusion: { in: Perm::ISSIONS.map(&:to_s) }
|
|
|
|
|
2016-02-09 06:25:39 +00:00
|
|
|
validates :category, inclusion: { in: ['from-to', 'both'], allow_nil: true }
|
|
|
|
|
2016-02-01 09:25:06 +00:00
|
|
|
# :nocov:
|
2014-08-12 16:01:01 +00:00
|
|
|
def user_name
|
2016-02-09 06:25:39 +00:00
|
|
|
user.name
|
2014-08-12 16:01:01 +00:00
|
|
|
end
|
2016-02-01 09:25:06 +00:00
|
|
|
# :nocov:
|
2014-08-12 16:01:01 +00:00
|
|
|
|
2016-02-01 09:25:06 +00:00
|
|
|
# :nocov:
|
2014-08-12 16:01:01 +00:00
|
|
|
def user_image
|
2016-02-09 06:25:39 +00:00
|
|
|
user.image.url
|
2014-08-12 16:01:01 +00:00
|
|
|
end
|
2016-02-01 09:25:06 +00:00
|
|
|
# :nocov:
|
2014-08-12 16:01:01 +00:00
|
|
|
|
2016-02-01 09:25:06 +00:00
|
|
|
# :nocov:
|
2014-08-12 16:01:01 +00:00
|
|
|
def as_json(options={})
|
|
|
|
super(:methods =>[:user_name, :user_image])
|
|
|
|
end
|
2016-02-01 09:25:06 +00:00
|
|
|
# :nocov:
|
2014-08-12 16:01:01 +00:00
|
|
|
|
2012-10-05 20:40:30 +00:00
|
|
|
end
|