Class: ConceptsController
- Inherits:
-
ApplicationController
- Object
- ActionController::Base
- ApplicationController
- ConceptsController
- Includes:
- DatasetInitialization
- Defined in:
- app/controllers/concepts_controller.rb
Direct Known Subclasses
Concepts::AlphabeticalController, Concepts::HierarchicalController, Concepts::UntranslatedController
Instance Method Summary collapse
- #create ⇒ Object
- #destroy ⇒ Object
- #edit ⇒ Object
- #index ⇒ Object
- #move ⇒ Object
- #new ⇒ Object
- #show ⇒ Object
- #update ⇒ Object
Methods included from DatasetInitialization
#datasets_as_json, #init_datasets
Instance Method Details
#create ⇒ Object
128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 |
# File 'app/controllers/concepts_controller.rb', line 128 def create :create, Iqvoc::Concept.base_class @concept = Iqvoc::Concept.base_class.new(concept_params) # TODO: add reverse match service @datasets = datasets_as_json if @concept.save flash[:success] = I18n.t('txt.controllers.versioned_concept.success') redirect_to concept_path(published: 0, id: @concept.origin) else flash.now[:error] = I18n.t('txt.controllers.versioned_concept.error') render :new end end |
#destroy ⇒ Object
180 181 182 183 184 185 186 187 188 189 190 191 192 |
# File 'app/controllers/concepts_controller.rb', line 180 def destroy @new_concept = Iqvoc::Concept.base_class.by_origin(params[:id]).unpublished.last! :destroy, @new_concept if @new_concept.destroy flash[:success] = I18n.t('txt.controllers.concept_versions.delete') redirect_to dashboard_path else flash[:success] = I18n.t('txt.controllers.concept_versions.delete_error') redirect_to concept_path(published: 0, id: @new_concept) end end |
#edit ⇒ Object
144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 |
# File 'app/controllers/concepts_controller.rb', line 144 def edit @concept = Iqvoc::Concept.base_class.by_origin(params[:id]).unpublished.last! :update, @concept @association_objects_in_editing_mode = @concept.associated_objects_in_editing_mode if params[:full_consistency_check] @concept.publishable? end Iqvoc::Concept.note_class_names.each do |note_class_name| @concept.send(note_class_name.to_relation_name).build if @concept.send(note_class_name.to_relation_name).empty? end @concept.notations.build if @concept.notations.none? @datasets = datasets_as_json end |
#index ⇒ Object
22 23 24 25 26 27 28 29 30 31 32 33 34 |
# File 'app/controllers/concepts_controller.rb', line 22 def index :read, Concept::Base respond_to do |format| format.json do # Search for widget scope = Iqvoc::Concept.base_class.editor_selectable.with_pref_labels. merge(Label::Base.by_query_value("#{params[:query]}%")) scope = scope.where(top_term: false) if params[:exclude_top_terms] @concepts = scope.all.map { |concept| (concept) } render json: @concepts end end end |
#move ⇒ Object
194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 |
# File 'app/controllers/concepts_controller.rb', line 194 def move moved_concept = Iqvoc::Concept.base_class.find(params.require(:moved_node_id)) if moved_concept.published? :branch, moved_concept else :update, moved_concept end new_parent_concept = Iqvoc::Concept.base_class.find(params.require(:new_parent_node_id)) new_parent_concept_version = concept_version(new_parent_concept) ActiveRecord::Base.transaction do moved_concept_version = concept_version(moved_concept) if params[:tree_action] == 'move' && Iqvoc::Concept.root_class.instance.mono_hierarchy? if moved_concept.top_term? moved_concept_version.update_attribute(:top_term, false) else # removed old relations old_parent_concept = Iqvoc::Concept.base_class.find(params.require(:old_parent_node_id)) old_parent_concept_version = concept_version(old_parent_concept) moved_concept_version.send(Iqvoc::Concept.broader_relation_class_name.to_relation_name) .destroy_with_reverse_relation(old_parent_concept_version) # delete relations which will be created during branching if old_parent_concept_version.narrower_relations.find_by(target_id: moved_concept.id) old_parent_concept_version.narrower_relations.find_by(target_id: moved_concept.id).destroy! end if moved_concept_version.broader_relations.find_by(target_id: old_parent_concept.id) moved_concept_version.broader_relations.find_by(target_id: old_parent_concept.id).destroy! end end end # add new relations to concept version Iqvoc::Concept.broader_relation_class.create! do |r| r.owner = moved_concept_version r.target = new_parent_concept_version end Concept::Relation::SKOS::Narrower::Base.create! do |r| r.owner = new_parent_concept_version r.target = moved_concept_version end end render nothing: true end |
#new ⇒ Object
114 115 116 117 118 119 120 121 122 123 124 125 126 |
# File 'app/controllers/concepts_controller.rb', line 114 def new :create, Iqvoc::Concept.base_class @concept = Iqvoc::Concept.base_class.new Iqvoc::Concept.note_class_names.each do |note_class_name| @concept.send(note_class_name.to_relation_name).build if @concept.send(note_class_name.to_relation_name).empty? end @concept.notations.build if @concept.notations.none? @datasets = datasets_as_json end |
#show ⇒ Object
36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 |
# File 'app/controllers/concepts_controller.rb', line 36 def show scope = Iqvoc::Concept.base_class.by_origin(params[:id]).with_associations published = params[:published] == '1' || !params[:published] if published scope = scope.published @new_concept_version = Iqvoc::Concept.base_class.by_origin(params[:id]).unpublished.last else scope = scope.unpublished end @concept = scope.last! :read, @concept @datasets = datasets_as_json respond_to do |format| format.html do if @concept.jobs match_classes = Iqvoc::Concept.reverse_match_class_names @jobs = @concept.job_relations.map do |jr| handler = YAML.load(jr.job.handler) match_class_name = match_classes.key(handler.match_class) reverse_match_class_name = match_class_name.constantize.reverse_match_class_name reverse_match_class_label = reverse_match_class_name.constantize.rdf_predicate.camelize if reverse_match_class_name result = {response_error: jr.response_error} result[:subject] = handler.subject result[:type] = handler.type result[:match_class] = reverse_match_class_label || reverse_match_class_name result end end # When in single query mode, AR handles ALL includes to be loaded by that # one query. We don't want that! So let's do it manually :-) ActiveRecord::Associations::Preloader.new.preload(@concept, Iqvoc::Concept.base_class.default_includes + [collection_members: { collection: :labels }, broader_relations: { target: [:pref_labels, :broader_relations] }, narrower_relations: { target: [:pref_labels, :narrower_relations] }]) published ? render('show_published') : render('show_unpublished') end format.json do # When in single query mode, AR handles ALL includes to be loaded by that # one query. We don't want that! So let's do it manually :-) ActiveRecord::Associations::Preloader.new.preload(@concept, [:labels, { relations: { target: [:labelings, :relations] } }]) published_relations = lambda { |concept| return concept.relations.includes(:target). merge(Iqvoc::Concept.base_class.published).references(:concepts) } concept_data = { origin: @concept.origin, labels: @concept.labelings.map { |ln| labeling_as_json(ln) }, relations: published_relations.call(@concept).map { |relation| concept = relation.target { origin: concept.origin, labels: concept.labelings.map { |ln| labeling_as_json(ln) }, relations: published_relations.call(concept).count } }, links: [ { rel: 'self', href: concept_url(@concept, format: nil), method: 'get' }, { rel: 'add_match', href: add_match_url(@concept, lang: nil), method: 'patch' }, { rel: 'remove_match', href: remove_match_url(@concept, lang: nil), method: 'patch' } ] } # FIXME: use jbuilder instead??? render json: concept_data end format.any(:ttl, :rdf, :nt) end end |
#update ⇒ Object
164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 |
# File 'app/controllers/concepts_controller.rb', line 164 def update @concept = Iqvoc::Concept.base_class.by_origin(params[:id]).unpublished.last! :update, @concept @concept.reverse_match_service = Services::ReverseMatchService.new(request.host, request.port) @datasets = datasets_as_json if @concept.update_attributes(concept_params) flash[:success] = I18n.t('txt.controllers.versioned_concept.update_success') redirect_to concept_path(published: 0, id: @concept) else flash.now[:error] = I18n.t('txt.controllers.versioned_concept.update_error') render action: :edit end end |