Class: ControlledVocabularyTermsController

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

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 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



122
123
124
125
126
127
128
# File 'app/controllers/controlled_vocabulary_terms_controller.rb', line 122

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



131
132
133
# File 'app/controllers/controlled_vocabulary_terms_controller.rb', line 131

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

#autocompleteObject



100
101
102
103
104
105
106
# File 'app/controllers/controlled_vocabulary_terms_controller.rb', line 100

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



92
93
94
# File 'app/controllers/controlled_vocabulary_terms_controller.rb', line 92

def citations
  render json: @controlled_vocabulary_terms.citations
end

#confidencesObject



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

def confidences
  render json: @controlled_vocabulary_terms.confidences
end

#controlled_vocabulary_term_paramsObject (private)



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

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



88
89
90
# File 'app/controllers/controlled_vocabulary_terms_controller.rb', line 88

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



109
110
111
112
113
114
# File 'app/controllers/controlled_vocabulary_terms_controller.rb', line 109

def download
  send_data(
    Export::Download.generate_csv(ControlledVocabularyTerm.where(project_id: sessions_current_project_id)),
    type: 'text',
    filename: "controlled_vocabulary_terms_#{DateTime.now}.csv")
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



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

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



84
85
86
# File 'app/controllers/controlled_vocabulary_terms_controller.rb', line 84

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



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

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)



137
138
139
140
# File 'app/controllers/controlled_vocabulary_terms_controller.rb', line 137

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



117
118
119
# File 'app/controllers/controlled_vocabulary_terms_controller.rb', line 117

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