Class: ArkUpdateController
- Inherits:
-
ApplicationController
- Object
- ActionController::Base
- ApplicationController
- ArkUpdateController
- Defined in:
- frontend/app/controllers/ark_update_controller.rb
Constant Summary
Constants included from Searchable
Instance Method Summary collapse
Methods inherited from ApplicationController
#archivesspace, can_access?, permission_mappings, set_access_control
Methods included from JsonHelper
#merge_notes, #process_json_notes
Methods included from Searchable
#default_search_opts, #get_filter_years, #handle_results, #html_notes, #process_results, #process_search_results, #repo_context, #search_terms, #set_up_advanced_search, #set_up_and_run_search, #set_up_search, #strip_facet_fields
Methods included from HandleFaceting
#fetch_only_facets, #get_pretty_facet_value, #strip_facets
Methods included from ManipulateNode
#inheritance, #process_mixed_content, #strip_mixed_content
Instance Method Details
#update ⇒ Object
5 6 7 8 9 10 11 12 13 14 15 16 |
# File 'frontend/app/controllers/ark_update_controller.rb', line 5 def update uri = "#{JSONModel::HTTP.backend_url}#{params[:uri]}/ark_name" response = JSONModel::HTTP::post_json(URI(uri), params[:ark_name]) if response.code == '200' render :plain => "OK" else err = ASUtils.json_parse(response.body) render :plain => ASUtils.to_json(err.fetch('error')), :status => response.code end end |