2012-10-10 00:23:45 +00:00
|
|
|
class SynapsesController < ApplicationController
|
2013-01-01 22:45:35 +00:00
|
|
|
include TopicsHelper
|
2012-10-10 00:23:45 +00:00
|
|
|
|
2014-07-27 19:57:35 +00:00
|
|
|
before_filter :require_user, only: [:create, :update, :destroy]
|
2012-10-10 00:23:45 +00:00
|
|
|
|
2014-07-27 19:57:35 +00:00
|
|
|
respond_to :js, :json
|
2012-10-10 00:23:45 +00:00
|
|
|
|
2013-01-18 22:08:06 +00:00
|
|
|
# GET synapses/:id/json
|
|
|
|
def json
|
|
|
|
@current = current_user
|
|
|
|
@synapse = Synapse.find(params[:id]).authorize_to_show(@current)
|
|
|
|
|
|
|
|
if not @synapse
|
|
|
|
redirect_to root_url and return
|
|
|
|
end
|
|
|
|
|
|
|
|
respond_to do |format|
|
|
|
|
format.json { render :json => @synapse.selfplusnodes_as_json }
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2014-07-27 19:57:35 +00:00
|
|
|
# POST /synapses
|
|
|
|
# POST /synapses.json
|
2012-10-10 00:23:45 +00:00
|
|
|
def create
|
2014-07-27 19:57:35 +00:00
|
|
|
@synapse = Synapse.new(params[:synapse])
|
|
|
|
|
2012-10-10 00:23:45 +00:00
|
|
|
respond_to do |format|
|
2014-07-27 19:57:35 +00:00
|
|
|
if @synapse.save
|
|
|
|
format.json { render json: @synapse, status: :created }
|
|
|
|
else
|
|
|
|
format.json { render json: @synapse.errors, status: :unprocessable_entity }
|
|
|
|
end
|
2012-10-10 00:23:45 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2014-07-27 19:57:35 +00:00
|
|
|
# PUT /synapses/1
|
|
|
|
# PUT /synapses/1.json
|
2012-10-10 00:23:45 +00:00
|
|
|
def update
|
2014-07-27 19:57:35 +00:00
|
|
|
@synapse = Synapse.find(params[:id])
|
2013-01-06 04:37:24 +00:00
|
|
|
|
|
|
|
respond_to do |format|
|
2014-07-27 19:57:35 +00:00
|
|
|
if @synapse.update_attributes(params[:synapse])
|
|
|
|
format.json { head :no_content }
|
|
|
|
else
|
|
|
|
format.json { render json: @synapse.errors, status: :unprocessable_entity }
|
|
|
|
end
|
2013-01-06 04:37:24 +00:00
|
|
|
end
|
|
|
|
end
|
2012-10-10 00:23:45 +00:00
|
|
|
|
2012-12-21 23:07:13 +00:00
|
|
|
# DELETE synapses/:id
|
2012-10-10 00:23:45 +00:00
|
|
|
def destroy
|
2013-01-06 03:40:10 +00:00
|
|
|
@current = current_user
|
|
|
|
@synapse = Synapse.find(params[:id]).authorize_to_edit(@current)
|
|
|
|
|
|
|
|
@synapse.mappings.each do |m|
|
2014-02-26 20:23:29 +00:00
|
|
|
|
|
|
|
m.map.touch(:updated_at)
|
|
|
|
|
2013-04-26 04:07:29 +00:00
|
|
|
#push notify to anyone viewing same map in realtime (see mapping.rb to understand the 'message' action)
|
2014-02-04 17:08:09 +00:00
|
|
|
m.message 'destroy',@current.id
|
2013-04-26 04:07:29 +00:00
|
|
|
|
2013-01-06 03:40:10 +00:00
|
|
|
m.delete
|
|
|
|
end
|
|
|
|
|
|
|
|
@synapse.delete if @synapse
|
2014-07-27 19:57:35 +00:00
|
|
|
|
|
|
|
respond_to do |format|
|
|
|
|
format.js { render :json => "success" }
|
|
|
|
end
|
2012-10-10 00:23:45 +00:00
|
|
|
end
|
|
|
|
end
|