Class: TagsController
- Inherits:
-
ApplicationController
- Object
- ActionController::Base
- ApplicationController
- TagsController
- Defined in:
- app/controllers/tags_controller.rb
Overview
require_dependency ‘queries/tag/filter’
Constant Summary
Constants included from ProjectsHelper
ProjectsHelper::CLASSIFIER, ProjectsHelper::CLASSIFIER_ANNOTATION
Instance Method Summary collapse
- #api_index ⇒ Object
- #api_show ⇒ Object
-
#batch_create ⇒ Object
POST /tags/batch_create.json?keyword_id=123&object_type=CollectionObject&object_id[]=123.
-
#batch_remove ⇒ Object
POST /tags/batch_remove?keyword_id=123&klass=456.
-
#create ⇒ Object
POST /tags POST /tags.json.
-
#destroy ⇒ Object
DELETE /tags/1 DELETE /tags/1.json.
-
#download ⇒ Object
GET /tags/download.
- #exists ⇒ Object
-
#index ⇒ Object
GET /tags GET /tags.json.
- #list ⇒ Object
- #new ⇒ Object
- #set_tag ⇒ Object private
- #tag_object_update ⇒ Object
- #tag_params ⇒ Object private
- #taggable_object ⇒ Object private
- #taggable_object_params ⇒ Object private
-
#update ⇒ Object
PATCH/PUT /tags/1 PATCH/PUT /tags/1.json.
Methods included from DataControllerConfiguration::ProjectDataControllerConfiguration
Methods included from RedirectHelper
Methods included from RequestType
Methods included from LogRecent
Methods included from Cookies
#digest_cookie, #digested_cookie_exists?
Methods included from Whitelist
Methods included from ProjectsHelper
#cumulative_gb_per_year, #document_cumulative_gb_per_year, #document_gb_per_year, #gb_per_year, #image_cumulative_gb_per_year, #image_gb_per_year, #invalid_object, #project_classification, #project_link, #project_matches, #project_tag, #projects_list, #projects_search_form, #taxonworks_classification, #week_in_review_graphs
Methods included from Api::Intercept
Methods included from TokenAuthentication
#intercept_project, #intercept_user, #intercept_user_or_project, #project_token_authenticate, #token_authenticate
Instance Method Details
#api_index ⇒ Object
25 26 27 28 29 30 31 32 |
# File 'app/controllers/tags_controller.rb', line 25 def api_index @tags = Queries::Tag::Filter.new(params.merge!(api: true)).all .where(project_id: sessions_current_project_id) .order('tags.id') .page(params[:page]) .per(params[:per]) render '/tags/api/v1/index' end |
#api_show ⇒ Object
34 35 36 |
# File 'app/controllers/tags_controller.rb', line 34 def api_show render '/tags/api/v1/show' end |
#batch_create ⇒ Object
POST /tags/batch_create.json?keyword_id=123&object_type=CollectionObject&object_id[]=123
134 135 136 137 138 139 140 141 142 143 144 145 146 |
# File 'app/controllers/tags_controller.rb', line 134 def batch_create if Tag.batch_create( **params.permit( :keyword_id, :object_type, object_id: []).to_h .merge(user_id: sessions_current_user_id, project_id: sessions_current_project_id).symbolize_keys ) render json: {success: true} else render json: {success: false} end end |
#batch_remove ⇒ Object
POST /tags/batch_remove?keyword_id=123&klass=456
125 126 127 128 129 130 131 |
# File 'app/controllers/tags_controller.rb', line 125 def batch_remove if Tag.batch_remove(params.require(:keyword_id), params.require(:klass)) render json: {success: true} else render json: {success: false} end end |
#create ⇒ Object
POST /tags POST /tags.json
56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 |
# File 'app/controllers/tags_controller.rb', line 56 def create @tag = Tag.new(tag_params) respond_to do |format| if @tag.save format.html { redirect_to url_for(@tag.tag_object.), notice: "Tag #{@tag.keyword.name} was successfully created." } format.json { render action: 'show', status: :created, location: @tag } else format.html { redirect_back(fallback_location: (request.referer || root_path), notice: 'Tag was NOT successfully created.') } format.json { render json: @tag.errors, status: :unprocessable_entity } end end end |
#destroy ⇒ Object
DELETE /tags/1 DELETE /tags/1.json
91 92 93 94 95 96 97 98 99 100 101 102 |
# File 'app/controllers/tags_controller.rb', line 91 def destroy @tag.destroy respond_to do |format| if @tag.destroyed? format.html { destroy_redirect @tag, notice: 'Tag was successfully destroyed.' } format.json { head :no_content} else format.html { destroy_redirect @tag, notice: 'Tag was not destroyed, ' + @tag.errors..join('; ') } format.json { render json: @tag.errors, status: :unprocessable_entity } end end end |
#download ⇒ Object
GET /tags/download
119 120 121 122 |
# File 'app/controllers/tags_controller.rb', line 119 def download send_data Export::CSV.generate_csv(Tag.where(project_id: sessions_current_project_id)), type: 'text', filename: "tags_#{DateTime.now}.tsv" end |
#exists ⇒ Object
108 109 110 111 112 113 114 115 116 |
# File 'app/controllers/tags_controller.rb', line 108 def exists if @tag = Tag.exists?(params.require(:global_id), params.require(:keyword_id), sessions_current_project_id) render :show else render json: false end end |
#index ⇒ Object
GET /tags GET /tags.json
10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
# File 'app/controllers/tags_controller.rb', line 10 def index respond_to do |format| format.html { @recent_objects = ::Tag.recent_from_project_id(sessions_current_project_id).order(updated_at: :desc).limit(10) render '/shared/data/all/index' } format.json { # Possibly broken polymorphics? @tags = ::Queries::Tag::Filter.new(params).all .page(params[:page]) .per(params[:per]) } end end |
#list ⇒ Object
104 105 106 |
# File 'app/controllers/tags_controller.rb', line 104 def list @tags = Tag.where(project_id: sessions_current_project_id).order(:id).page(params[:page]) end |
#new ⇒ Object
38 39 40 41 42 43 44 45 46 47 |
# File 'app/controllers/tags_controller.rb', line 38 def new if !Keyword.with_project_id(sessions_current_project_id).any? # if there are none @return_path = "/tags/new?tag[tag_object_attribute]=&tag[tag_object_id]=#{params[:tag_object_id]}" \ "&tag[tag_object_type]=#{params[:tag_object_type]}" redirect_to new_controlled_vocabulary_term_path(return_path: @return_path), notice: 'Create a keyword or two first!' and return end @taggable_object = taggable_object end |
#set_tag ⇒ Object (private)
150 151 152 |
# File 'app/controllers/tags_controller.rb', line 150 def set_tag @tag = Tag.with_project_id(sessions_current_project_id).find(params[:id]) end |
#tag_object_update ⇒ Object
49 50 51 52 |
# File 'app/controllers/tags_controller.rb', line 49 def tag_object_update taggable_object.update!(taggable_object_params) redirect_back(fallback_location: (request.referer || root_path)) end |
#tag_params ⇒ Object (private)
154 155 156 157 158 159 160 161 |
# File 'app/controllers/tags_controller.rb', line 154 def tag_params params.require(:tag).permit( :keyword_id, :tag_object_id, :tag_object_type, :tag_object_attribute, :annotated_global_entity, :_destroy, :target # keyword_attributes: [:name, :definition, :uri, :uri_relation, :css_color] # TODO: this almost certainly doesn't belon ) end |
#taggable_object ⇒ Object (private)
171 172 173 |
# File 'app/controllers/tags_controller.rb', line 171 def taggable_object whitelist_constantize(params.require(:tag_object_type)).find(params.require(:tag_object_id)) end |
#taggable_object_params ⇒ Object (private)
163 164 165 166 167 168 169 |
# File 'app/controllers/tags_controller.rb', line 163 def taggable_object_params params.require(:taggable_object).permit( tags_attributes: [ :_destroy, :id, :keyword_id, :position, keyword_attributes: [:name, :definition, :uri, :html_color] ]) end |
#update ⇒ Object
PATCH/PUT /tags/1 PATCH/PUT /tags/1.json
75 76 77 78 79 80 81 82 83 84 85 86 87 |
# File 'app/controllers/tags_controller.rb', line 75 def update respond_to do |format| if @tag.update(tag_params) format.html { redirect_to url_for(@tag.tag_object.), notice: 'Tag was successfully updated.' } format.json { render :show, status: :ok, location: @tag } else format.html { redirect_back(fallback_location: (request.referer || root_path), notice: 'Tag was NOT successfully updated.') } format.json { render json: @tag.errors, status: :unprocessable_entity } end end end |