Class: ObservationMatricesController
- Inherits:
-
ApplicationController
- Object
- ActionController::Base
- ApplicationController
- ObservationMatricesController
- Defined in:
- app/controllers/observation_matrices_controller.rb
Instance Method Summary collapse
-
#api_index ⇒ Object
GET /api/v1/observation_matrices.
- #api_params ⇒ Object private
-
#api_show ⇒ Object
GET /api/v1/observation_matrices/:id.
- #autocomplete ⇒ Object
- #column ⇒ Object
- #column_labels ⇒ Object
-
#create ⇒ Object
POST /observation_matrices POST /observation_matrices.json.
- #csv ⇒ Object
- #descriptor_list ⇒ Object
-
#destroy ⇒ Object
DELETE /observation_matrices/1 DELETE /observation_matrices/1.json.
- #download ⇒ Object
- #download_contents ⇒ Object
-
#edit ⇒ Object
GET /observation_matrices/1/edit.
-
#index ⇒ Object
GET /observation_matrices GET /observation_matrices.json.
- #list ⇒ Object
-
#new ⇒ Object
GET /observation_matrices/new.
-
#nexml ⇒ Object
TODO export formats can move to a concern controller.
-
#nexml_params ⇒ Object
private
TODO: Not all params are supported yet.
- #nexus ⇒ Object
- #observation_matrix_params ⇒ Object private
- #otu_contents ⇒ Object
- #otu_contents_params ⇒ Object private
- #otus_used_in_matrices ⇒ Object
- #reorder_columns ⇒ Object
- #reorder_rows ⇒ Object
-
#row ⇒ Object
GET /observation_matrices/row.json?observation_matrix_row_id=1 TODO: Why is this here? (used in Matrix Row Coder).
- #row_labels ⇒ Object
-
#search ⇒ Object
TODO: deprecate.
- #set_observation_matrix ⇒ Object private
-
#show ⇒ Object
GET /observation_matrices/1 GET /observation_matrices/1.json.
- #tnt ⇒ Object
-
#update ⇒ Object
PATCH/PUT /observation_matrices/1 PATCH/PUT /observation_matrices/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
#invalid_object, #project_link, #project_matches, #project_tag, #projects_list, #projects_search_form
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
GET /api/v1/observation_matrices
219 220 221 222 223 224 |
# File 'app/controllers/observation_matrices_controller.rb', line 219 def api_index @observation_matrices = Queries::ObservationMatrix::Filter.new(api_params).all .where(project_id: sessions_current_project_id) .page(params[:page]).per(params[:per]) render '/observation_matrices/api/v1/index' end |
#api_params ⇒ Object (private)
233 234 235 236 237 238 |
# File 'app/controllers/observation_matrices_controller.rb', line 233 def api_params params.permit( :observation_matrix_id, observation_matrix_id: [] ) end |
#api_show ⇒ Object
GET /api/v1/observation_matrices/:id
227 228 229 |
# File 'app/controllers/observation_matrices_controller.rb', line 227 def api_show render '/observation_matrices/api/v1/show' end |
#autocomplete ⇒ Object
94 95 96 |
# File 'app/controllers/observation_matrices_controller.rb', line 94 def autocomplete @observation_matrices = ObservationMatrix.where(project_id: sessions_current_project_id).where('name ilike ?', "%#{params[:term]}%") end |
#column ⇒ Object
191 192 193 |
# File 'app/controllers/observation_matrices_controller.rb', line 191 def column @observation_matrix_column = ObservationMatrixColumn.where(project_id: sessions_current_project_id).find(params.require(:observation_matrix_column_id)) end |
#column_labels ⇒ Object
110 111 |
# File 'app/controllers/observation_matrices_controller.rb', line 110 def column_labels end |
#create ⇒ Object
POST /observation_matrices POST /observation_matrices.json
44 45 46 47 48 49 50 51 52 53 54 55 56 |
# File 'app/controllers/observation_matrices_controller.rb', line 44 def create @observation_matrix = ObservationMatrix.new(observation_matrix_params) respond_to do |format| if @observation_matrix.save format.html { redirect_to @observation_matrix, notice: 'Matrix was successfully created.' } format.json { render :show, status: :created, location: @observation_matrix } else format.html { render :new } format.json { render json: @observation_matrix.errors, status: :unprocessable_entity } end end end |
#csv ⇒ Object
163 164 165 166 167 168 169 170 171 172 |
# File 'app/controllers/observation_matrices_controller.rb', line 163 def csv respond_to do |format| base = '/observation_matrices/export/csv/' format.html { render base + 'index' } format.text { s = render_to_string(partial: base + 'csv', locals: { as_file: true }, layout: false, formats: [:html]) send_data(s, filename: "csv_#{DateTime.now}.csv", type: 'text/plain') } end end |
#descriptor_list ⇒ Object
140 141 142 143 144 145 146 147 148 149 |
# File 'app/controllers/observation_matrices_controller.rb', line 140 def descriptor_list respond_to do |format| base = '/observation_matrices/export/descriptor_list/' format.html { render base + 'index' } format.text { s = render_to_string(partial: base + 'descriptor_list', locals: { as_file: true }, layout: false, formats: [:html]) send_data(s, filename: "descriptor_list_#{DateTime.now}.csv", type: 'text/plain') } end end |
#destroy ⇒ Object
DELETE /observation_matrices/1 DELETE /observation_matrices/1.json
86 87 88 89 90 91 92 |
# File 'app/controllers/observation_matrices_controller.rb', line 86 def destroy @observation_matrix.destroy respond_to do |format| format.html { redirect_to observation_matrices_url, notice: 'Matrix was successfully destroyed.' } format.json { head :no_content } end end |
#download ⇒ Object
196 197 198 |
# File 'app/controllers/observation_matrices_controller.rb', line 196 def download send_data Export::Download.generate_csv(ObservationMatrix.where(project_id: sessions_current_project_id)), type: 'text', filename: "observation_matrices_#{DateTime.now}.csv" end |
#download_contents ⇒ Object
200 201 202 |
# File 'app/controllers/observation_matrices_controller.rb', line 200 def download_contents send_data Export::Download.generate_csv(ObservationMatrix.where(project_id: sessions_current_project_id)), type: 'text', filename: "observation_matrices_#{DateTime.now}.csv" end |
#edit ⇒ Object
GET /observation_matrices/1/edit
39 40 |
# File 'app/controllers/observation_matrices_controller.rb', line 39 def edit end |
#index ⇒ Object
GET /observation_matrices GET /observation_matrices.json
12 13 14 15 16 17 18 19 20 21 22 |
# File 'app/controllers/observation_matrices_controller.rb', line 12 def index respond_to do |format| format.html do @recent_objects = ObservationMatrix.recent_from_project_id(sessions_current_project_id).order(updated_at: :desc).limit(10) render '/shared/data/all/index' end format.json { @observation_matrices = ObservationMatrix.where(project_id: sessions_current_project_id).page(params[:page]).per(params[:per]) } end end |
#list ⇒ Object
29 30 31 |
# File 'app/controllers/observation_matrices_controller.rb', line 29 def list @observation_matrices = ObservationMatrix.with_project_id(sessions_current_project_id).page(params[:page]).per(params[:per]) end |
#new ⇒ Object
GET /observation_matrices/new
34 35 36 |
# File 'app/controllers/observation_matrices_controller.rb', line 34 def new redirect_to new_matrix_task_path, notice: 'Redirecting to new task.' end |
#nexml ⇒ Object
TODO export formats can move to a concern controller
116 117 118 119 120 121 122 123 124 125 126 |
# File 'app/controllers/observation_matrices_controller.rb', line 116 def nexml @options = nexml_params respond_to do |format| base = '/observation_matrices/export/nexml/nexml' format.html { render base } format.text { s = render_to_string(base, layout: false, formats: [:rdf]) send_data(s, filename: "nexml_#{DateTime.now}.xml", type: 'text/plain') } end end |
#nexml_params ⇒ Object (private)
TODO: Not all params are supported yet.
241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 |
# File 'app/controllers/observation_matrices_controller.rb', line 241 def nexml_params { observation_matrix: @observation_matrix, target: '', include_otus: 'true', include_collection_objects: 'true', include_descriptors: 'true', include_otu_depictions: 'true', include_matrix: 'true', include_trees: 'false', rdf: false }.merge!( params.permit( :include_otus, :include_collection_objects, :include_descriptors, :include_matrix, :include_trees, :rdf ).to_h ) end |
#nexus ⇒ Object
174 175 176 177 178 179 180 181 182 183 |
# File 'app/controllers/observation_matrices_controller.rb', line 174 def nexus respond_to do |format| base = '/observation_matrices/export/nexus/' format.html { render base + 'index' } format.text { s = render_to_string(partial: base + 'nexus', locals: { as_file: true }, layout: false, formats: [:html]) send_data(s, filename: "nexus_#{DateTime.now}.nex", type: 'text/plain') } end end |
#observation_matrix_params ⇒ Object (private)
295 296 297 |
# File 'app/controllers/observation_matrices_controller.rb', line 295 def observation_matrix_params params.require(:observation_matrix).permit(:name) end |
#otu_contents ⇒ Object
128 129 130 131 132 133 134 135 136 137 138 |
# File 'app/controllers/observation_matrices_controller.rb', line 128 def otu_contents @options = otu_contents_params respond_to do |format| base = '/observation_matrices/export/otu_content/index' format.html { render base } format.text { s = render_to_string(base, layout: false) send_data(s, filename: "otu_contents_#{DateTime.now}.csv", type: 'text/plain') } end end |
#otu_contents_params ⇒ Object (private)
262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 |
# File 'app/controllers/observation_matrices_controller.rb', line 262 def otu_contents_params { observation_matrix: @observation_matrix, target: '', include_otus: 'true', include_collection_objects: 'false', include_contents: 'true', include_distribution: 'true', include_type: 'true', taxon_name: 'true', include_nomenclature: 'true', include_autogenerated_description: 'true', include_depictions: 'true', rdf: false }.merge!( params.permit( :include_otus, :include_collection_objects, :include_matrix, :include_contents, :include_distribution, :include_type, :taxon_name, :include_nomenclature, :include_autogenerated_description, :include_depictions, :rdf ).to_h ) end |
#otus_used_in_matrices ⇒ Object
204 205 206 207 208 209 210 211 212 213 214 215 216 |
# File 'app/controllers/observation_matrices_controller.rb', line 204 def otus_used_in_matrices # ObservationMatrix.with_otu_ids_array([13597, 25680]) if !params[:otu_ids].blank? p = ObservationMatrix.with_otu_id_array(params[:otu_ids].split('|')).pluck(:id) if p.nil? render json: {otus_used_in_matrices: ''}.to_json else render json: {otus_used_in_matrices: p}.to_json end else render json: {otus_used_in_matrices: ''}.to_json end end |
#reorder_columns ⇒ Object
80 81 82 |
# File 'app/controllers/observation_matrices_controller.rb', line 80 def reorder_columns @observation_matrix.reorder_columns(params.require(:by)) end |
#reorder_rows ⇒ Object
72 73 74 75 76 77 78 |
# File 'app/controllers/observation_matrices_controller.rb', line 72 def reorder_rows if @observation_matrix.reorder_rows(params.require(:by)) render json: :success else render json: :error, status: :unprocessable_entity end end |
#row ⇒ Object
GET /observation_matrices/row.json?observation_matrix_row_id=1 TODO: Why is this here? (used in Matrix Row Coder)
187 188 189 |
# File 'app/controllers/observation_matrices_controller.rb', line 187 def row @observation_matrix_row = ObservationMatrixRow.where(project_id: sessions_current_project_id).find(params.require(:observation_matrix_row_id)) end |
#row_labels ⇒ Object
107 108 |
# File 'app/controllers/observation_matrices_controller.rb', line 107 def row_labels end |
#search ⇒ Object
TODO: deprecate
99 100 101 102 103 104 105 |
# File 'app/controllers/observation_matrices_controller.rb', line 99 def search if params[:id].blank? redirect_to observation_matrices_path, alert: 'You must select an item from the list with a click or tab press before clicking show.' else redirect_to observation_matrix_path(params[:id]) end end |
#set_observation_matrix ⇒ Object (private)
291 292 293 |
# File 'app/controllers/observation_matrices_controller.rb', line 291 def set_observation_matrix @observation_matrix = ObservationMatrix.where(project_id: sessions_current_project_id).find(params[:id]) end |
#show ⇒ Object
GET /observation_matrices/1 GET /observation_matrices/1.json
26 27 |
# File 'app/controllers/observation_matrices_controller.rb', line 26 def show end |
#tnt ⇒ Object
152 153 154 155 156 157 158 159 160 161 |
# File 'app/controllers/observation_matrices_controller.rb', line 152 def tnt respond_to do |format| base = '/observation_matrices/export/tnt/' format.html { render base + 'index' } format.text { s = render_to_string(partial: base + 'tnt', locals: { as_file: true }, layout: false, formats: [:html]) send_data(s, filename: "tnt_#{DateTime.now}.tnt", type: 'text/plain') } end end |
#update ⇒ Object
PATCH/PUT /observation_matrices/1 PATCH/PUT /observation_matrices/1.json
60 61 62 63 64 65 66 67 68 69 70 |
# File 'app/controllers/observation_matrices_controller.rb', line 60 def update respond_to do |format| if @observation_matrix.update(observation_matrix_params) format.html { redirect_to @observation_matrix, notice: 'Matrix was successfully updated.' } format.json { render :show, status: :ok, location: @observation_matrix } else format.html { render :edit } format.json { render json: @observation_matrix.errors, status: :unprocessable_entity } end end end |