2016-09-24 03:00:46 +00:00
|
|
|
# frozen_string_literal: true
|
2016-09-24 04:27:34 +00:00
|
|
|
class MapExportService
|
|
|
|
attr_reader :user, :map
|
|
|
|
def initialize(user, map)
|
|
|
|
@user = user
|
|
|
|
@map = map
|
|
|
|
end
|
|
|
|
|
2016-03-26 03:31:55 +00:00
|
|
|
def json
|
|
|
|
# marshal_dump turns OpenStruct into a Hash
|
|
|
|
{
|
2016-03-26 07:21:55 +00:00
|
|
|
topics: exportable_topics.map(&:marshal_dump),
|
|
|
|
synapses: exportable_synapses.map(&:marshal_dump)
|
2016-03-26 03:31:55 +00:00
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
def csv(options = {})
|
|
|
|
CSV.generate(options) do |csv|
|
|
|
|
to_spreadsheet.each do |line|
|
|
|
|
csv << line
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def topic_headings
|
|
|
|
[:id, :name, :metacode, :x, :y, :description, :link, :user, :permission]
|
|
|
|
end
|
2016-07-26 00:14:23 +00:00
|
|
|
|
2016-03-26 03:31:55 +00:00
|
|
|
def synapse_headings
|
|
|
|
[:topic1, :topic2, :category, :description, :user, :permission]
|
|
|
|
end
|
|
|
|
|
|
|
|
def exportable_topics
|
2016-03-26 07:21:55 +00:00
|
|
|
visible_topics ||= Pundit.policy_scope!(user, map.topics)
|
2016-03-26 03:31:55 +00:00
|
|
|
topic_mappings = Mapping.includes(mappable: [:metacode, :user])
|
2016-03-26 07:21:55 +00:00
|
|
|
.where(mappable: visible_topics, map: map)
|
2016-03-26 03:31:55 +00:00
|
|
|
topic_mappings.map do |mapping|
|
|
|
|
topic = mapping.mappable
|
2016-08-12 04:39:30 +00:00
|
|
|
next nil if topic.nil?
|
2016-03-26 03:31:55 +00:00
|
|
|
OpenStruct.new(
|
|
|
|
id: topic.id,
|
|
|
|
name: topic.name,
|
|
|
|
metacode: topic.metacode.name,
|
|
|
|
x: mapping.xloc,
|
|
|
|
y: mapping.yloc,
|
|
|
|
description: topic.desc,
|
|
|
|
link: topic.link,
|
|
|
|
user: topic.user.name,
|
|
|
|
permission: topic.permission
|
|
|
|
)
|
2016-08-12 04:39:30 +00:00
|
|
|
end.compact
|
2016-03-26 03:31:55 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def exportable_synapses
|
2016-03-26 07:21:55 +00:00
|
|
|
visible_synapses = Pundit.policy_scope!(user, map.synapses)
|
2016-03-26 03:31:55 +00:00
|
|
|
visible_synapses.map do |synapse|
|
2016-08-12 04:39:30 +00:00
|
|
|
next nil if synapse.nil?
|
2016-03-26 03:31:55 +00:00
|
|
|
OpenStruct.new(
|
2016-09-28 02:32:28 +00:00
|
|
|
topic1: synapse.topic1_id,
|
|
|
|
topic2: synapse.topic2_id,
|
2016-03-26 03:31:55 +00:00
|
|
|
category: synapse.category,
|
|
|
|
description: synapse.desc,
|
|
|
|
user: synapse.user.name,
|
|
|
|
permission: synapse.permission
|
|
|
|
)
|
2016-08-12 04:39:30 +00:00
|
|
|
end.compact
|
2016-03-26 03:31:55 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def to_spreadsheet
|
|
|
|
spreadsheet = []
|
2016-07-26 00:14:23 +00:00
|
|
|
spreadsheet << ['Topics']
|
2016-03-26 07:21:55 +00:00
|
|
|
spreadsheet << topic_headings.map(&:capitalize)
|
2016-03-26 03:31:55 +00:00
|
|
|
exportable_topics.each do |topics|
|
|
|
|
# convert exportable_topics into an array of arrays
|
2016-03-26 07:21:55 +00:00
|
|
|
spreadsheet << topic_headings.map { |h| topics.send(h) }
|
2016-03-26 03:31:55 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
spreadsheet << []
|
2016-07-26 00:14:23 +00:00
|
|
|
spreadsheet << ['Synapses']
|
2016-03-26 07:21:55 +00:00
|
|
|
spreadsheet << synapse_headings.map(&:capitalize)
|
2016-03-26 03:31:55 +00:00
|
|
|
exportable_synapses.each do |synapse|
|
|
|
|
# convert exportable_synapses into an array of arrays
|
2016-03-26 07:21:55 +00:00
|
|
|
spreadsheet << synapse_headings.map { |h| synapse.send(h) }
|
2016-03-26 03:31:55 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
spreadsheet
|
|
|
|
end
|
|
|
|
end
|