metamaps--metamaps/app/models/map.rb

165 lines
4.5 KiB
Ruby
Raw Normal View History

2016-09-24 03:00:46 +00:00
# frozen_string_literal: true
class Map < ApplicationRecord
2014-08-12 22:14:04 +00:00
belongs_to :user
has_many :topicmappings, -> { Mapping.topicmapping }, class_name: :Mapping, dependent: :destroy
has_many :synapsemappings, -> { Mapping.synapsemapping }, class_name: :Mapping, dependent: :destroy
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
has_many :stars
has_many :user_maps, dependent: :destroy
has_many :collaborators, through: :user_maps, source: :user
has_many :webhooks, as: :hookable
has_many :events, -> { includes :user }, as: :eventable, dependent: :destroy
# This method associates the attribute ":image" with a file attachment
has_attached_file :screenshot, styles: {
thumb: ['188x126#', :png]
#:full => ['940x630#', :png]
2014-10-08 04:07:54 +00:00
},
2016-09-24 03:00:46 +00:00
default_url: 'https://s3.amazonaws.com/metamaps-assets/site/missing-map-white.png'
2015-12-22 18:16:03 +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
# 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
topicmappings + synapsemappings
2014-08-12 22:14:04 +00:00
end
2014-08-12 22:14:04 +00:00
def mk_permission
Perm.short(permission)
end
# return an array of the contributors to the map
def contributors
contributors = []
2015-12-22 18:16:03 +00:00
mappings.each do |m|
contributors.push(m.user) unless contributors.include?(m.user)
end
2015-12-22 18:16:03 +00:00
contributors
end
2014-08-12 15:09:53 +00:00
def editors
collaborators + [user]
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
delegate :name, to: :user, prefix: true
2014-08-12 15:09:53 +00:00
def user_image
2016-02-09 03:48:07 +00:00
user.image.url
end
def contributor_count
2016-02-09 03:48:07 +00:00
contributors.length
end
def collaborator_ids
collaborators.map(&:id)
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
created_at.strftime('%m/%d/%Y')
2014-08-27 02:51:50 +00:00
end
def updated_at_str
updated_at.strftime('%m/%d/%Y')
2014-08-27 02:51:50 +00:00
end
def as_json(_options = {})
json = super(methods: [:user_name, :user_image, :topic_count, :synapse_count, :contributor_count, :collaborator_ids, :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-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'
data.original_filename = File.basename('map-' + id.to_s + '-screenshot.png')
2014-10-08 04:07:54 +00:00
self.screenshot = data
save
2014-10-08 04:07:54 +00:00
end
2016-09-23 08:41:15 +00:00
# user param helps determine what records are visible
def contains(user)
allmappers = contributors
allcollaborators = editors
alltopics = Pundit.policy_scope(user, topics).to_a
allsynapses = Pundit.policy_scope(user, synapses).to_a
allmappings = Pundit.policy_scope(user, mappings).to_a
json = {}
json['map'] = self
json['topics'] = alltopics
json['synapses'] = allsynapses
json['mappings'] = allmappings
json['mappers'] = allmappers
json['collaborators'] = allcollaborators
json['messages'] = messages.sort_by(&:created_at)
json['stars'] = stars
end
2016-09-23 09:02:52 +00:00
def add_new_collaborators(user_ids)
added = []
users = User.where(id: user_ids)
users.each do |user|
if user && user != current_user && !collaborators.include?(user)
UserMap.create(user_id: uid.to_i, map_id: id)
user = User.find(uid.to_i)
added << user.id
end
end
added
end
def remove_old_collaborators(user_ids)
removed = []
collaborators.map(&:id).each do |user_id|
if !user_ids.include?(user_id)
user_maps.select { |um| um.user_id == user_id }.each(&:destroy)
removed << user_id
end
end
removed
end
def base64_screenshot(encoded_image)
png = Base64.decode64(encoded_image['data:image/png;base64,'.length..-1])
StringIO.open(png) do |data|
data.class.class_eval { attr_accessor :original_filename, :content_type }
data.original_filename = 'map-' + @map.id.to_s + '-screenshot.png'
data.content_type = 'image/png'
@map.screenshot = data
end
end
end