2012-10-26 10:04:52 +00:00
|
|
|
class MapsController < ApplicationController
|
2014-07-31 01:10:10 +00:00
|
|
|
|
|
|
|
before_filter :require_user, only: [:create, :update, :destroy]
|
|
|
|
|
|
|
|
respond_to :html, :json
|
|
|
|
|
|
|
|
autocomplete :map, :name, :full => true, :extra_data => [:user_id]
|
|
|
|
|
|
|
|
# GET /maps/recent
|
|
|
|
# GET /maps/featured
|
|
|
|
# GET /maps/new
|
|
|
|
# GET /maps/mappers/:id
|
|
|
|
def index
|
|
|
|
|
2014-08-06 14:09:01 +00:00
|
|
|
if request.path == "/explore"
|
2014-07-31 01:10:10 +00:00
|
|
|
redirect_to activemaps_url and return
|
|
|
|
end
|
|
|
|
|
|
|
|
@current = current_user
|
|
|
|
@user = nil
|
2014-08-20 19:37:18 +00:00
|
|
|
@maps = []
|
|
|
|
|
|
|
|
if !params[:page]
|
|
|
|
page = 1
|
|
|
|
else
|
|
|
|
page = params[:page]
|
|
|
|
end
|
2014-07-31 01:10:10 +00:00
|
|
|
|
2014-08-10 17:06:58 +00:00
|
|
|
if request.path.index("/explore/active") != nil
|
2014-08-20 19:37:18 +00:00
|
|
|
@maps = Map.where("maps.permission != ?", "private").order("updated_at DESC").page(page).per(20)
|
2014-07-31 01:10:10 +00:00
|
|
|
@request = "active"
|
|
|
|
|
2014-08-10 17:06:58 +00:00
|
|
|
elsif request.path.index("/explore/featured") != nil
|
2014-08-20 19:37:18 +00:00
|
|
|
@maps = Map.where("maps.featured = ? AND maps.permission != ?", true, "private").order("name ASC").page(page).per(20)
|
2014-07-31 01:10:10 +00:00
|
|
|
@request = "featured"
|
|
|
|
|
2014-08-10 17:06:58 +00:00
|
|
|
elsif request.path.index('/explore/mine') != nil # looking for maps by me
|
|
|
|
if !authenticated?
|
|
|
|
redirect_to activemaps_url and return
|
|
|
|
end
|
2014-08-20 19:37:18 +00:00
|
|
|
# don't need to exclude private maps because they all belong to you
|
|
|
|
@maps = Map.where("maps.user_id = ?", @current.id).order("name ASC").page(page).per(20)
|
2014-08-10 17:06:58 +00:00
|
|
|
@request = "you"
|
|
|
|
|
2014-08-20 19:37:18 +00:00
|
|
|
elsif request.path.index('/explore/mappers/') != nil # looking for maps by a mapper
|
2014-07-31 01:10:10 +00:00
|
|
|
@user = User.find(params[:id])
|
2014-08-20 19:37:18 +00:00
|
|
|
@maps = Map.where("maps.user_id = ? AND maps.permission != ?", @user.id, "private").order("name ASC").page(page).per(20)
|
|
|
|
@request = "other"
|
2014-07-31 01:10:10 +00:00
|
|
|
|
2014-08-10 17:06:58 +00:00
|
|
|
elsif request.path.index('/explore/topics/') != nil # looking for maps by a certain topic they include
|
2014-07-31 01:10:10 +00:00
|
|
|
@topic = Topic.find(params[:id]).authorize_to_show(@current)
|
|
|
|
if !@topic
|
|
|
|
redirect_to featuredmaps_url, notice: "Access denied." and return
|
|
|
|
end
|
2014-08-20 19:37:18 +00:00
|
|
|
@maps = @topic.maps.delete_if {|m| m.permission == "private" && (!authenticated? || (authenticated? && @current.id != m.user_id)) }
|
2014-07-31 01:10:10 +00:00
|
|
|
@request = "topic"
|
|
|
|
end
|
|
|
|
|
|
|
|
respond_to do |format|
|
2014-08-15 22:04:22 +00:00
|
|
|
format.html {
|
|
|
|
if @request == "you"
|
|
|
|
redirect_to root_url and return
|
|
|
|
else
|
|
|
|
respond_with(@maps, @request, @user)
|
|
|
|
end
|
|
|
|
}
|
2014-08-10 17:06:58 +00:00
|
|
|
format.json { render json: @maps }
|
2014-07-31 01:10:10 +00:00
|
|
|
end
|
2014-02-10 04:36:23 +00:00
|
|
|
end
|
2014-07-31 01:10:10 +00:00
|
|
|
|
|
|
|
# GET maps/:id
|
|
|
|
def show
|
|
|
|
|
|
|
|
@current = current_user
|
|
|
|
@map = Map.find(params[:id]).authorize_to_show(@current)
|
|
|
|
|
|
|
|
if not @map
|
2014-10-27 16:03:55 +00:00
|
|
|
redirect_to root_url, notice: "Access denied. That map is private." and return
|
2014-07-31 01:10:10 +00:00
|
|
|
end
|
|
|
|
|
2014-08-11 22:57:34 +00:00
|
|
|
respond_to do |format|
|
|
|
|
format.html {
|
|
|
|
@allmappers = @map.contributors
|
|
|
|
@alltopics = @map.topics # should limit to topics visible to user
|
|
|
|
@allsynapses = @map.synapses # should also be limited
|
|
|
|
@allmappings = @map.mappings
|
|
|
|
|
|
|
|
respond_with(@allmappers, @allmappings, @allsynapses, @alltopics, @map)
|
|
|
|
}
|
|
|
|
format.json { render json: @map }
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
# GET maps/:id/contains
|
|
|
|
def contains
|
|
|
|
|
|
|
|
@current = current_user
|
|
|
|
@map = Map.find(params[:id]).authorize_to_show(@current)
|
|
|
|
|
|
|
|
if not @map
|
2014-10-27 16:03:55 +00:00
|
|
|
redirect_to root_url, notice: "Access denied. That map is private." and return
|
2014-08-11 22:57:34 +00:00
|
|
|
end
|
|
|
|
|
2014-08-04 16:20:16 +00:00
|
|
|
@allmappers = @map.contributors
|
2014-07-31 01:10:10 +00:00
|
|
|
@alltopics = @map.topics # should limit to topics visible to user
|
|
|
|
@allsynapses = @map.synapses # should also be limited
|
|
|
|
@allmappings = @map.mappings
|
2014-08-10 17:06:58 +00:00
|
|
|
|
|
|
|
@json = Hash.new()
|
|
|
|
@json['map'] = @map
|
|
|
|
@json['topics'] = @alltopics
|
|
|
|
@json['synapses'] = @allsynapses
|
|
|
|
@json['mappings'] = @allmappings
|
|
|
|
@json['mappers'] = @allmappers
|
2014-07-31 01:10:10 +00:00
|
|
|
|
|
|
|
respond_to do |format|
|
2014-08-10 17:06:58 +00:00
|
|
|
format.json { render json: @json }
|
2014-07-31 01:10:10 +00:00
|
|
|
end
|
2012-12-21 23:07:13 +00:00
|
|
|
end
|
2014-07-31 01:10:10 +00:00
|
|
|
|
2014-08-11 22:57:34 +00:00
|
|
|
|
2014-07-31 01:10:10 +00:00
|
|
|
# GET maps/:id/embed
|
|
|
|
def embed
|
|
|
|
@current = current_user
|
|
|
|
@map = Map.find(params[:id]).authorize_to_show(@current)
|
|
|
|
|
|
|
|
if not @map
|
|
|
|
redirect_to root_url and return
|
2013-01-08 03:04:53 +00:00
|
|
|
end
|
|
|
|
|
2014-07-31 01:10:10 +00:00
|
|
|
@alltopics = @map.topics # should limit to topics visible to user
|
|
|
|
@allsynapses = @map.synapses # should also be limited
|
|
|
|
@allmappings = @map.mappings
|
|
|
|
@allmetacodes = Metacode.all
|
|
|
|
|
|
|
|
respond_to do |format|
|
|
|
|
format.html { respond_with(@allmetacodes, @allmappings, @allsynapses, @alltopics, @map, @user) }
|
|
|
|
format.json { render json: @map }
|
|
|
|
end
|
2014-01-31 00:32:15 +00:00
|
|
|
end
|
2014-07-31 01:10:10 +00:00
|
|
|
|
|
|
|
# POST maps
|
|
|
|
def create
|
|
|
|
|
|
|
|
@user = current_user
|
|
|
|
@map = Map.new()
|
|
|
|
@map.name = params[:name]
|
|
|
|
@map.desc = params[:desc]
|
|
|
|
@map.permission = params[:permission]
|
|
|
|
@map.user = @user
|
|
|
|
@map.arranged = false
|
|
|
|
@map.save
|
|
|
|
|
|
|
|
if params[:topicsToMap]
|
|
|
|
@all = params[:topicsToMap]
|
|
|
|
@all = @all.split(',')
|
|
|
|
@all.each do |topic|
|
|
|
|
topic = topic.split('/')
|
|
|
|
@mapping = Mapping.new()
|
|
|
|
@mapping.category = "Topic"
|
|
|
|
@mapping.user = @user
|
|
|
|
@mapping.map = @map
|
|
|
|
@mapping.topic = Topic.find(topic[0])
|
|
|
|
@mapping.xloc = topic[1]
|
|
|
|
@mapping.yloc = topic[2]
|
|
|
|
@mapping.save
|
|
|
|
end
|
|
|
|
|
|
|
|
if params[:synapsesToMap]
|
|
|
|
@synAll = params[:synapsesToMap]
|
|
|
|
@synAll = @synAll.split(',')
|
|
|
|
@synAll.each do |synapse_id|
|
|
|
|
@mapping = Mapping.new()
|
|
|
|
@mapping.category = "Synapse"
|
|
|
|
@mapping.user = @user
|
|
|
|
@mapping.map = @map
|
|
|
|
@mapping.synapse = Synapse.find(synapse_id)
|
|
|
|
@mapping.save
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
@map.arranged = true
|
|
|
|
@map.save
|
|
|
|
end
|
|
|
|
|
|
|
|
respond_to do |format|
|
|
|
|
format.json { render :json => @map }
|
|
|
|
end
|
2014-01-31 00:32:15 +00:00
|
|
|
end
|
2014-07-31 01:10:10 +00:00
|
|
|
|
|
|
|
# PUT maps/:id
|
|
|
|
def update
|
|
|
|
@current = current_user
|
|
|
|
@map = Map.find(params[:id]).authorize_to_edit(@current)
|
|
|
|
|
|
|
|
respond_to do |format|
|
2014-09-11 12:35:16 +00:00
|
|
|
if !@map
|
|
|
|
format.json { render json: "unauthorized" }
|
|
|
|
elsif @map.update_attributes(params[:map])
|
|
|
|
format.json { head :no_content }
|
|
|
|
else
|
|
|
|
format.json { render json: @map.errors, status: :unprocessable_entity }
|
|
|
|
end
|
2014-07-31 01:10:10 +00:00
|
|
|
end
|
2014-07-30 03:18:43 +00:00
|
|
|
end
|
2014-07-31 01:10:10 +00:00
|
|
|
|
|
|
|
# DELETE maps/:id
|
|
|
|
def destroy
|
|
|
|
@current = current_user
|
|
|
|
|
2014-10-27 17:26:24 +00:00
|
|
|
@map = Map.find(params[:id]).authorize_to_delete(@current)
|
2014-07-31 01:10:10 +00:00
|
|
|
|
2014-10-27 17:26:24 +00:00
|
|
|
if @map
|
|
|
|
@mappings = @map.mappings
|
2014-07-31 01:10:10 +00:00
|
|
|
|
2014-10-27 17:26:24 +00:00
|
|
|
@mappings.each do |mapping|
|
|
|
|
mapping.delete
|
|
|
|
end
|
2014-07-31 01:10:10 +00:00
|
|
|
|
2014-10-27 17:26:24 +00:00
|
|
|
@map.delete
|
|
|
|
end
|
2014-07-31 01:10:10 +00:00
|
|
|
|
|
|
|
respond_to do |format|
|
2014-10-27 17:26:24 +00:00
|
|
|
format.json {
|
|
|
|
if @map
|
|
|
|
render json: "success"
|
|
|
|
else
|
|
|
|
render json: "unauthorized"
|
|
|
|
end
|
|
|
|
}
|
2014-07-31 01:10:10 +00:00
|
|
|
end
|
2012-10-26 10:04:52 +00:00
|
|
|
end
|
|
|
|
end
|