7ee96bf6c6
* fix topic spec * fix synapse/mapping spec * brakeman csrf warning suppressed :| * follows for maps in the ui for internal testing only still (#1072) * follows for maps in the ui for testers * require user for these actions * match how map follow works * include ability to unfollow from email * fixup templates * add unfollow_from_email to the policies * Update _cheatsheet.html.erb Clean up text, clarify, and bring in line with current functionality * topicsRegex and synapsesRegex should allow commas (#1073) * even better import csv regexes * prevent double prompt on file drop import * topic card in react (#1031) * its coming along * links bar * scssify a bunch * metacode image working a bit better * metacode selector in react topic card * riek editing for name field on topic card * riek submit on enter * factor out Title and Links from Topic Card component, but not the listeners * create working Desc editor * styling is much better now * textarea min height for desc * disallow images in topic card markdown * shift enter is linebreak, enter is save * attachments split out, but it's pretty buggy * move listeners into Links.js * slightly wider metacodeTitle * fix positioning on metacode selector * fix metacode selection * move metacode and permissions into subcomponents * fixes * prevent editing on desc/title if not authorized to edit * fix topic card draggability * fix embedly * fix md test * remove the removed link card manually with jquery * fix test syntax * eslint * more eslin * reuse authorizedToEdit * convert metacode sets to a json object for react * add the html in react whoop * fix metacode styling * sort wasn't working * finishing metacode select * readd the above link input border * fix syntax * multiline title editable textarea * more portable metacode selector component * factor out #metacodeOptions into one react component with a callback :D:D:D * render metacodeOptions in right click menu with react * render metacodeOptions in right click menu with react * fix up right click menu's metacode editing * fix topic card title character counter * ignore metamaps secret bundle in ag * simplify Attachments props * factor out embedly card into its own component; it seems to help * link resetter * fix edit icon on title in topic card * move mapCount and synapseCount hover/click logic to react * fix up the showMore control * metacode selection tweaks * tweak links bar spacing in topic card * rubocop * remove TODOs * more badass permissions selector * close permission selector when you click outside * fix overeager metacode selector * more modular attachments component * fix bug in Desc.js * fix right click styling * permission changes are different than edit rights * bad module ref * ensure maxLength on topic titles * hellz yeah (#1074) * fix drop from two touches to one * don't commit activity service * ability to select/unselect all metacodes in custom set with keyboard shortcut (fix #390) (#1078) * ability to select/unselect all metacodes in custom set with keyboard shortcut * select all button * nicer all/none buttons * set up react testing (#1080) * install mocha-webpack. also switch hark to npm version instead of github version * well, mocha-webpack runs * add jsdom for tests * upgrade to webpack 2 * fix npm run test errors * ImportDialogBox component tests * Fixes bug where pressing delete key while editing text will suggest... (#1083) * Fixes bug where pressing delete key while editing text will suggest the deletion of selected map entities * Changed the DEL key to remove entities instead of delete them * temporarily disable code climate duplication engine * add topic following for internal testing * daily map activity emails (#1081) * data prepared, task setup * add the basics of the email template * cover granular permissions * unfollow this map * break out permissions tests better * rename so test runs
211 lines
6 KiB
Ruby
211 lines
6 KiB
Ruby
# frozen_string_literal: true
|
|
class TopicsController < ApplicationController
|
|
include TopicsHelper
|
|
|
|
before_action :require_user, only: [:create, :update, :destroy, :follow, :unfollow]
|
|
before_action :set_topic, only: [:show, :update, :relative_numbers,
|
|
:relatives, :network, :destroy,
|
|
:follow, :unfollow, :unfollow_from_email]
|
|
after_action :verify_authorized, except: :autocomplete_topic
|
|
|
|
respond_to :html, :js, :json
|
|
|
|
# GET /topics/autocomplete_topic
|
|
def autocomplete_topic
|
|
term = params[:term]
|
|
if term && !term.empty?
|
|
topics = policy_scope(Topic)
|
|
.where('LOWER("name") like ?', term.downcase + '%')
|
|
.order('"name"')
|
|
map_topics = topics.select { |t| t&.metacode&.name == 'Metamap' }
|
|
# prioritize topics which point to maps, over maps
|
|
exclude = map_topics.length.positive? ? map_topics.map(&:name) : ['']
|
|
maps = policy_scope(Map)
|
|
.where('LOWER("name") like ? AND name NOT IN (?)', term.downcase + '%', exclude)
|
|
.order('"name"')
|
|
else
|
|
topics = []
|
|
maps = []
|
|
end
|
|
@all = topics.to_a.concat(maps.to_a).sort_by(&:name)
|
|
|
|
render json: autocomplete_array_json(@all).to_json
|
|
end
|
|
|
|
# GET topics/:id
|
|
def show
|
|
respond_to do |format|
|
|
format.html do
|
|
@alltopics = [@topic].concat(policy_scope(Topic.relatives(@topic.id, current_user)).to_a)
|
|
@allsynapses = policy_scope(Synapse.for_topic(@topic.id)).to_a
|
|
@allcreators = @alltopics.map(&:user).uniq
|
|
@allcreators += @allsynapses.map(&:user).uniq
|
|
|
|
respond_with(@allsynapses, @alltopics, @allcreators, @topic)
|
|
end
|
|
format.json { render json: @topic.as_json(user: current_user).to_json }
|
|
end
|
|
end
|
|
|
|
# GET topics/:id/network
|
|
def network
|
|
@alltopics = [@topic].concat(policy_scope(Topic.relatives(@topic.id, current_user)).to_a)
|
|
@allsynapses = policy_scope(Synapse.for_topic(@topic.id))
|
|
|
|
@allcreators = @alltopics.map(&:user).uniq
|
|
@allcreators += @allsynapses.map(&:user).uniq
|
|
|
|
@json = {}
|
|
@json['topic'] = @topic.as_json(user: current_user)
|
|
@json['creators'] = @allcreators
|
|
@json['relatives'] = @alltopics.as_json(user: current_user)
|
|
@json['synapses'] = @allsynapses
|
|
|
|
respond_to do |format|
|
|
format.json { render json: @json }
|
|
end
|
|
end
|
|
|
|
# GET topics/:id/relative_numbers
|
|
def relative_numbers
|
|
topics_already_has = params[:network] ? params[:network].split(',').map(&:to_i) : []
|
|
|
|
alltopics = policy_scope(Topic.relatives(@topic.id, current_user)).to_a
|
|
if params[:metacode].present?
|
|
alltopics.delete_if { |topic| topic.metacode_id != params[:metacode].to_i }
|
|
end
|
|
alltopics.delete_if { |topic| !topics_already_has.index(topic.id).nil? }
|
|
|
|
@json = Hash.new(0)
|
|
alltopics.each do |t|
|
|
@json[t.metacode.id] += 1
|
|
end
|
|
|
|
respond_to do |format|
|
|
format.json { render json: @json }
|
|
end
|
|
end
|
|
|
|
# GET topics/:id/relatives
|
|
def relatives
|
|
topics_already_has = params[:network] ? params[:network].split(',').map(&:to_i) : []
|
|
|
|
alltopics = policy_scope(Topic.relatives(@topic.id, current_user)).to_a
|
|
if params[:metacode].present?
|
|
alltopics.delete_if { |topic| topic.metacode_id != params[:metacode].to_i }
|
|
end
|
|
alltopics.delete_if do |topic|
|
|
!topics_already_has.index(topic.id.to_s).nil?
|
|
end
|
|
|
|
# find synapses between topics in alltopics array
|
|
allsynapses = policy_scope(Synapse.for_topic(@topic.id)).to_a
|
|
synapse_ids = (allsynapses.map(&:topic1_id) + allsynapses.map(&:topic2_id)).uniq
|
|
allsynapses.delete_if do |synapse|
|
|
!synapse_ids.index(synapse.id).nil?
|
|
end
|
|
|
|
creators_already_has = params[:creators] ? params[:creators].split(',').map(&:to_i) : []
|
|
allcreators = (alltopics.map(&:user) + allsynapses.map(&:user)).uniq.delete_if do |user|
|
|
!creators_already_has.index(user.id).nil?
|
|
end
|
|
|
|
@json = {}
|
|
@json['topics'] = alltopics.as_json(user: current_user)
|
|
@json['synapses'] = allsynapses
|
|
@json['creators'] = allcreators
|
|
|
|
respond_to do |format|
|
|
format.json { render json: @json }
|
|
end
|
|
end
|
|
|
|
# POST /topics
|
|
# POST /topics.json
|
|
def create
|
|
@topic = Topic.new(topic_params)
|
|
authorize @topic
|
|
@topic.user = current_user
|
|
@topic.updated_by = current_user
|
|
|
|
respond_to do |format|
|
|
if @topic.save
|
|
format.json { render json: @topic.as_json(user: current_user), status: :created }
|
|
else
|
|
format.json { render json: @topic.errors, status: :unprocessable_entity }
|
|
end
|
|
end
|
|
end
|
|
|
|
# PUT /topics/1
|
|
# PUT /topics/1.json
|
|
def update
|
|
@topic.updated_by = current_user
|
|
@topic.assign_attributes(topic_params)
|
|
|
|
respond_to do |format|
|
|
if @topic.save
|
|
format.json { head :no_content }
|
|
else
|
|
format.json { render json: @topic.errors, status: :unprocessable_entity }
|
|
end
|
|
end
|
|
end
|
|
|
|
# DELETE topics/:id
|
|
def destroy
|
|
@topic.updated_by = current_user
|
|
@topic.destroy
|
|
respond_to do |format|
|
|
format.json { head :no_content }
|
|
end
|
|
end
|
|
|
|
# POST topics/:id/follow
|
|
def follow
|
|
follow = FollowService.follow(@topic, current_user, 'followed')
|
|
|
|
respond_to do |format|
|
|
format.json do
|
|
if follow
|
|
head :ok
|
|
else
|
|
head :bad_request
|
|
end
|
|
end
|
|
end
|
|
end
|
|
|
|
# POST topics/:id/unfollow
|
|
def unfollow
|
|
FollowService.unfollow(@topic, current_user)
|
|
|
|
respond_to do |format|
|
|
format.json do
|
|
head :ok
|
|
end
|
|
end
|
|
end
|
|
|
|
# GET topics/:id/unfollow_from_email
|
|
def unfollow_from_email
|
|
FollowService.unfollow(@topic, current_user)
|
|
|
|
respond_to do |format|
|
|
format.html do
|
|
redirect_to topic_path(@topic), notice: 'You are no longer following this topic'
|
|
end
|
|
end
|
|
end
|
|
|
|
private
|
|
|
|
def set_topic
|
|
@topic = Topic.find(params[:id])
|
|
authorize @topic
|
|
end
|
|
|
|
def topic_params
|
|
params.require(:topic).permit(:id, :name, :desc, :link, :permission, :metacode_id, :defer_to_map_id)
|
|
end
|
|
end
|