Class: TagsController

Inherits:
ApplicationController show all
Includes:
DataControllerConfiguration::ProjectDataControllerConfiguration
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

Methods included from DataControllerConfiguration::ProjectDataControllerConfiguration

#annotator_params

Methods included from RedirectHelper

#destroy_redirect

Methods included from RequestType

#json_request?

Methods included from LogRecent

#log_user_recent_route

Methods included from Cookies

#digest_cookie, #digested_cookie_exists?

Methods included from Whitelist

#whitelist_constantize

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

Methods included from Api::Intercept

#intercept_api

Methods included from TokenAuthentication

#intercept_project, #intercept_user, #intercept_user_or_project, #project_token_authenticate, #token_authenticate

Instance Method Details

#api_indexObject



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_showObject



34
35
36
# File 'app/controllers/tags_controller.rb', line 34

def api_show
  render '/tags/api/v1/show'
end

#batch_createObject

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_removeObject

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

#createObject

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.metamorphosize),
                    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

#destroyObject

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.full_messages.join('; ') }
      format.json { render json: @tag.errors, status: :unprocessable_entity }
    end
  end
end

#downloadObject

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

#existsObject



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

#indexObject

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

#listObject



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

#newObject



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_tagObject (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_updateObject



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_paramsObject (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_objectObject (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_paramsObject (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

#updateObject

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.metamorphosize),
                    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