Class: ControlledVocabularyTermsController

Inherits:
ApplicationController show all
Includes:
DataControllerConfiguration::ProjectDataControllerConfiguration
Defined in:
app/controllers/controlled_vocabulary_terms_controller.rb

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, #week_in_review_graphs

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

GET /api/v1/controlled_vocabulary_terms



133
134
135
136
137
138
139
# File 'app/controllers/controlled_vocabulary_terms_controller.rb', line 133

def api_index
  @controlled_vocabulary_terms = Queries::ControlledVocabularyTerm::Filter.new(params.merge!(api: true)).all
    .where(project_id: sessions_current_project_id)
    .page(params[:page])
    .per(params[:per])
  render '/controlled_vocabulary_terms/api/v1/index'
end

#api_showObject

GET /api/v1/controlled_vocabulary_terms/:id



142
143
144
# File 'app/controllers/controlled_vocabulary_terms_controller.rb', line 142

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

#autocompleteObject



111
112
113
114
115
116
117
# File 'app/controllers/controlled_vocabulary_terms_controller.rb', line 111

def autocomplete
  @controlled_vocabulary_terms = Queries::ControlledVocabularyTerm::Autocomplete.new(
    params.require(:term),
    controlled_vocabulary_term_type: filter_params[:type],
    project_id: sessions_current_project_id
  ).all
end

#citationsObject



103
104
105
# File 'app/controllers/controlled_vocabulary_terms_controller.rb', line 103

def citations
  render json: @controlled_vocabulary_terms.citations
end

#clone_from_projectObject



76
77
78
79
80
81
82
83
84
85
# File 'app/controllers/controlled_vocabulary_terms_controller.rb', line 76

def clone_from_project
  if ControlledVocabularyTerm.clone_from_project(
      from_id: params[:project_id],
      to_id: sessions_current_project_id,
      klass: params[:target])
    render json: {}, status: :ok
  else
    render json: {}, status: :unprocessable_entity
  end
end

#confidencesObject



107
108
109
# File 'app/controllers/controlled_vocabulary_terms_controller.rb', line 107

def confidences
  render json: @controlled_vocabulary_terms.confidences
end

#controlled_vocabulary_term_paramsObject (private)



153
154
155
# File 'app/controllers/controlled_vocabulary_terms_controller.rb', line 153

def controlled_vocabulary_term_params
  params.require(:controlled_vocabulary_term).permit(:type, :name, :definition, :uri, :uri_relation, :css_color)
end

#createObject

POST /controlled_vocabulary_terms.json



36
37
38
39
40
41
42
43
44
45
46
47
48
49
# File 'app/controllers/controlled_vocabulary_terms_controller.rb', line 36

def create
  @controlled_vocabulary_term = ControlledVocabularyTerm.new(controlled_vocabulary_term_params)
  respond_to do |format|
    if @controlled_vocabulary_term.save
      format.json {
        render action: 'show', status: :created, location: @controlled_vocabulary_term.metamorphosize
      }
    else
      format.json {
        render json: @controlled_vocabulary_term.errors, status: :unprocessable_entity
      }
    end
  end
end

#depictionsObject



99
100
101
# File 'app/controllers/controlled_vocabulary_terms_controller.rb', line 99

def depictions
  render json: @controlled_vocabulary_terms.depictions
end

#destroyObject

DELETE /controlled_vocabulary_terms/1.json



63
64
65
66
67
68
69
70
71
72
73
74
# File 'app/controllers/controlled_vocabulary_terms_controller.rb', line 63

def destroy
  @controlled_vocabulary_term.destroy
  respond_to do |format|
    if @controlled_vocabulary_term.destroyed?
      format.html { destroy_redirect @controlled_vocabulary_term, notice: 'OTU was successfully destroyed.' }
      format.json { head :no_content}
    else
      format.html { destroy_redirect @controlled_vocabulary_term, notice: 'OTU was not destroyed, ' + @controlled_vocabulary_term.errors.full_messages.join('; ') }
      format.json { render json: @controlled_vocabulary_term.errors, status: :unprocessable_entity }
    end
  end
end

#downloadObject

GET /controlled_vocabulary_terms/download



120
121
122
123
124
125
# File 'app/controllers/controlled_vocabulary_terms_controller.rb', line 120

def download
  send_data(
    Export::CSV.generate_csv(ControlledVocabularyTerm.where(project_id: sessions_current_project_id)),
    type: 'text',
    filename: "controlled_vocabulary_terms_#{DateTime.now}.tsv")
end

#editObject

GET /controlled_vocabulary_terms/1/edit



31
32
33
# File 'app/controllers/controlled_vocabulary_terms_controller.rb', line 31

def edit
  redirect_to manage_controlled_vocabulary_terms_task_path(controlled_vocabulary_term_id: @controlled_vocabulary_term.id) and return
end

#filter_paramsObject (private)

! No corresponding filter.rb



158
159
160
161
162
163
# File 'app/controllers/controlled_vocabulary_terms_controller.rb', line 158

def filter_params
  params.permit(
    type: [],
    id: []
  ).to_h.symbolize_keys.merge!(project_id: sessions_current_project_id)
end

#indexObject

GET /controlled_vocabulary_terms GET /controlled_vocabulary_terms.json



8
9
10
11
12
13
14
15
16
17
18
# File 'app/controllers/controlled_vocabulary_terms_controller.rb', line 8

def index
  respond_to do |format|
    format.html do
      @recent_objects = ControlledVocabularyTerm.recent_from_project_id(sessions_current_project_id).order(updated_at: :desc).limit(10)
      render '/shared/data/all/index'
    end
    format.json {
      @controlled_vocabulary_terms = ControlledVocabularyTerm.where(filter_params).order(:name)
    }
  end
end

#listObject



95
96
97
# File 'app/controllers/controlled_vocabulary_terms_controller.rb', line 95

def list
  @controlled_vocabulary_terms = ControlledVocabularyTerm.with_project_id(sessions_current_project_id).order(:id).page(params[:page]) #.per(10) #.per(3)
end

#newObject

GET /controlled_vocabulary_terms/new



26
27
28
# File 'app/controllers/controlled_vocabulary_terms_controller.rb', line 26

def new
  redirect_to manage_controlled_vocabulary_terms_task_path and return
end

#searchObject



87
88
89
90
91
92
93
# File 'app/controllers/controlled_vocabulary_terms_controller.rb', line 87

def search
  if params[:id].blank?
    redirect_to controlled_vocabulary_term_path, alert: 'You must select an item from the list with a click or tab press before clicking show.'
  else
    redirect_to controlled_vocabulary_term_path(params[:id])
  end
end

#set_controlled_vocabulary_termObject (private)



148
149
150
151
# File 'app/controllers/controlled_vocabulary_terms_controller.rb', line 148

def set_controlled_vocabulary_term
  @controlled_vocabulary_term = ControlledVocabularyTerm.with_project_id(sessions_current_project_id).find(params[:id])
  @recent_object = @controlled_vocabulary_term
end

#showObject

GET /controlled_vocabulary_terms/1 GET /controlled_vocabulary_terms/1.json



22
23
# File 'app/controllers/controlled_vocabulary_terms_controller.rb', line 22

def show
end

#tagged_objectsObject

GET /controlled_vocabulary_terms/1/tagged_objects



128
129
130
# File 'app/controllers/controlled_vocabulary_terms_controller.rb', line 128

def tagged_objects
  set_controlled_vocabulary_term
end

#updateObject

PATCH/PUT /controlled_vocabulary_terms/1.json



52
53
54
55
56
57
58
59
60
# File 'app/controllers/controlled_vocabulary_terms_controller.rb', line 52

def update
  respond_to do |format|
    if @controlled_vocabulary_term.update(controlled_vocabulary_term_params)
      format.json { render :show, status: :ok, location: @controlled_vocabulary_term.metamorphosize }
    else
      format.json { render json: @controlled_vocabulary_term.errors, status: :unprocessable_entity }
    end
  end
end