2012-10-24 06:47:08 +00:00
|
|
|
class Map < ActiveRecord::Base
|
2012-10-26 10:04:52 +00:00
|
|
|
|
2014-08-12 22:14:04 +00:00
|
|
|
belongs_to :user
|
2012-10-26 10:04:52 +00:00
|
|
|
|
2015-10-01 03:02:39 +00:00
|
|
|
has_many :topicmappings, -> { Mapping.topicmapping }, class_name: :Mapping, dependent: :destroy
|
|
|
|
has_many :synapsemappings, -> { Mapping.synapsemapping }, class_name: :Mapping, dependent: :destroy
|
2015-10-02 08:04:30 +00:00
|
|
|
has_many :topics, through: :topicmappings, source: :mappable, source_type: "Topic"
|
|
|
|
has_many :synapses, through: :synapsemappings, source: :mappable, source_type: "Synapse"
|
2015-12-11 19:23:41 +00:00
|
|
|
has_many :messages, as: :resource, dependent: :destroy
|
2012-10-26 10:04:52 +00:00
|
|
|
|
2014-08-15 22:04:22 +00:00
|
|
|
# This method associates the attribute ":image" with a file attachment
|
|
|
|
has_attached_file :screenshot, :styles => {
|
2014-11-10 03:10:13 +00:00
|
|
|
:thumb => ['188x126#', :png]
|
|
|
|
#:full => ['940x630#', :png]
|
2014-10-08 04:07:54 +00:00
|
|
|
},
|
2015-10-30 06:30:24 +00:00
|
|
|
:default_url => 'https://s3.amazonaws.com/metamaps-assets/site/missing-map.png'
|
2015-12-22 18:16:03 +00:00
|
|
|
|
2015-12-17 01:10:52 +00:00
|
|
|
validates :name, presence: true
|
|
|
|
validates :arranged, inclusion: { in: [true, false] }
|
|
|
|
validates :permission, presence: true
|
2015-12-17 01:16:02 +00:00
|
|
|
validates :permission, inclusion: { in: Perm::ISSIONS.map(&:to_s) }
|
2016-01-22 01:59:09 +00:00
|
|
|
|
2014-08-15 22:04:22 +00:00
|
|
|
# Validate the attached image is image/jpg, image/png, etc
|
|
|
|
validates_attachment_content_type :screenshot, :content_type => /\Aimage\/.*\Z/
|
|
|
|
|
2015-12-22 18:16:03 +00:00
|
|
|
def mappings
|
2014-08-12 22:14:04 +00:00
|
|
|
topicmappings + synapsemappings
|
|
|
|
end
|
2013-01-18 22:08:06 +00:00
|
|
|
|
2014-08-12 22:14:04 +00:00
|
|
|
def mk_permission
|
2015-12-17 01:03:51 +00:00
|
|
|
Perm.short(permission)
|
2013-01-18 22:08:06 +00:00
|
|
|
end
|
2014-01-29 03:46:58 +00:00
|
|
|
|
|
|
|
#return an array of the contributors to the map
|
|
|
|
def contributors
|
|
|
|
contributors = []
|
2015-12-22 18:16:03 +00:00
|
|
|
|
2014-01-29 03:46:58 +00:00
|
|
|
self.mappings.each do |m|
|
|
|
|
contributors.push(m.user) if !contributors.include?(m.user)
|
|
|
|
end
|
2015-12-22 18:16:03 +00:00
|
|
|
|
2014-01-29 03:46:58 +00:00
|
|
|
return contributors
|
|
|
|
end
|
2014-08-12 15:09:53 +00:00
|
|
|
|
|
|
|
def topic_count
|
2016-02-09 03:48:07 +00:00
|
|
|
topics.length
|
2014-08-12 15:09:53 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def synapse_count
|
2016-02-09 03:48:07 +00:00
|
|
|
synapses.length
|
2014-08-12 15:09:53 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def user_name
|
2016-02-09 03:48:07 +00:00
|
|
|
user.name
|
2014-08-12 15:09:53 +00:00
|
|
|
end
|
|
|
|
|
2014-08-12 16:01:01 +00:00
|
|
|
def user_image
|
2016-02-09 03:48:07 +00:00
|
|
|
user.image.url
|
2014-08-12 16:01:01 +00:00
|
|
|
end
|
|
|
|
|
2014-08-15 22:04:22 +00:00
|
|
|
def contributor_count
|
2016-02-09 03:48:07 +00:00
|
|
|
contributors.length
|
2014-08-15 22:04:22 +00:00
|
|
|
end
|
|
|
|
|
2014-10-08 04:07:54 +00:00
|
|
|
def screenshot_url
|
2016-02-09 03:48:07 +00:00
|
|
|
screenshot.url(:thumb)
|
2014-10-08 04:07:54 +00:00
|
|
|
end
|
|
|
|
|
2014-08-27 02:51:50 +00:00
|
|
|
def created_at_str
|
2016-02-09 03:48:07 +00:00
|
|
|
created_at.strftime("%m/%d/%Y")
|
2014-08-27 02:51:50 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def updated_at_str
|
2016-02-09 03:48:07 +00:00
|
|
|
updated_at.strftime("%m/%d/%Y")
|
2014-08-27 02:51:50 +00:00
|
|
|
end
|
|
|
|
|
2014-08-12 15:09:53 +00:00
|
|
|
def as_json(options={})
|
2015-01-31 17:39:48 +00:00
|
|
|
json = super(:methods =>[:user_name, :user_image, :topic_count, :synapse_count, :contributor_count, :screenshot_url], :except => [:screenshot_content_type, :screenshot_file_size, :screenshot_file_name, :screenshot_updated_at])
|
2016-02-09 03:48:07 +00:00
|
|
|
json[:created_at_clean] = created_at_str
|
|
|
|
json[:updated_at_clean] = updated_at_str
|
2014-08-27 02:51:50 +00:00
|
|
|
json
|
2014-08-12 15:09:53 +00:00
|
|
|
end
|
2014-10-07 23:11:55 +00:00
|
|
|
|
2016-02-05 09:49:59 +00:00
|
|
|
def to_csv(options = {})
|
|
|
|
CSV.generate(options) do |csv|
|
|
|
|
csv << ["id", "name", "metacode", "desc", "link", "user.name", "permission", "synapses"]
|
|
|
|
self.topics.each do |topic|
|
|
|
|
csv << [
|
|
|
|
topic.id,
|
|
|
|
topic.name,
|
|
|
|
topic.metacode.name,
|
|
|
|
topic.desc,
|
|
|
|
topic.link,
|
|
|
|
topic.user.name,
|
|
|
|
topic.permission,
|
|
|
|
topic.synapses_csv("text")
|
|
|
|
]
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2012-10-27 08:30:56 +00:00
|
|
|
##### PERMISSIONS ######
|
2015-12-22 18:16:03 +00:00
|
|
|
|
2014-10-27 17:26:24 +00:00
|
|
|
def authorize_to_delete(user)
|
|
|
|
if (self.user != user)
|
|
|
|
return false
|
|
|
|
end
|
|
|
|
return self
|
|
|
|
end
|
|
|
|
|
2012-10-27 08:30:56 +00:00
|
|
|
# returns false if user not allowed to 'show' Topic, Synapse, or Map
|
2014-10-13 23:27:30 +00:00
|
|
|
def authorize_to_show(user)
|
|
|
|
if (self.permission == "private" && self.user != user)
|
2014-08-12 22:14:04 +00:00
|
|
|
return false
|
|
|
|
end
|
|
|
|
return self
|
2012-10-27 08:30:56 +00:00
|
|
|
end
|
2015-12-22 18:16:03 +00:00
|
|
|
|
2012-10-27 08:30:56 +00:00
|
|
|
# returns false if user not allowed to 'edit' Topic, Synapse, or Map
|
2015-12-22 18:16:03 +00:00
|
|
|
def authorize_to_edit(user)
|
2014-10-13 23:27:30 +00:00
|
|
|
if !user
|
|
|
|
return false
|
|
|
|
elsif (self.permission == "private" && self.user != user)
|
2014-08-12 22:14:04 +00:00
|
|
|
return false
|
|
|
|
elsif (self.permission == "public" && self.user != user)
|
|
|
|
return false
|
|
|
|
end
|
|
|
|
return self
|
2012-10-27 08:30:56 +00:00
|
|
|
end
|
2015-12-22 18:16:03 +00:00
|
|
|
|
2014-10-08 04:07:54 +00:00
|
|
|
def decode_base64(imgBase64)
|
|
|
|
decoded_data = Base64.decode64(imgBase64)
|
2015-12-22 18:16:03 +00:00
|
|
|
|
2014-10-08 04:07:54 +00:00
|
|
|
data = StringIO.new(decoded_data)
|
|
|
|
data.class_eval do
|
|
|
|
attr_accessor :content_type, :original_filename
|
|
|
|
end
|
|
|
|
|
|
|
|
data.content_type = "image/png"
|
2014-10-13 23:27:30 +00:00
|
|
|
data.original_filename = File.basename('map-' + self.id.to_s + '-screenshot.png')
|
2014-10-08 04:07:54 +00:00
|
|
|
|
|
|
|
self.screenshot = data
|
|
|
|
self.save
|
|
|
|
end
|
|
|
|
|
2012-10-24 06:47:08 +00:00
|
|
|
end
|