Class: TopContainerLinker
- Inherits:
-
BulkImportParser
- Object
- BulkImportParser
- TopContainerLinker
- Includes:
- BulkImportMixins
- Defined in:
- backend/app/lib/bulk_import/top_container_linker.rb
Constant Summary collapse
- START_MARKER =
ASpace field headers row indicator
/ArchivesSpace field code/.freeze
Constants included from JSONModel
JSONModel::REFERENCE_KEY_REGEX
Instance Attribute Summary collapse
-
#report ⇒ Object
readonly
Returns the value of attribute report.
Instance Method Summary collapse
-
#ao_save(ao) ⇒ Object
save (create/update) the archival object, then revive it.
-
#create_top_container_instance(instance_type, indicator, type, err_arr, ref_id, row_num) ⇒ Object
-
#initialize(input_file, content_type, current_user, opts) ⇒ TopContainerLinker
constructor
A new instance of TopContainerLinker.
-
#initialize_handler_enums ⇒ Object
-
#process_row(row_hash = nil) ⇒ Object
look for all the required fields to make sure they are legit.
Methods included from BulkImportMixins
#archival_object_from_ref, #archival_object_from_ref_or_uri, #archival_object_from_uri, #create_date, #created, #find_top_container, #handle_notes, #indicator_and_type_exist_for_resource?, #resolves, #resource_from_ref, #resource_match, #sub_container_from_barcode, #test_exceptions, #valid, #value_check
Methods included from CrudHelpers
#handle_create, #handle_delete, #handle_listing, #handle_raw_listing, #handle_unlimited_listing, #handle_update, scoped_dataset, with_record_conflict_reporting, #with_record_conflict_reporting
Methods inherited from BulkImportParser
#initialize_info, #record_uris, #run
Methods included from URIResolver
add_resolve_wrapper, ensure_reference_is_valid, register_resolver, resolve_references, resolve_wrappers
Methods included from JSONModel
JSONModel, #JSONModel, add_error_handler, all, allow_unmapped_enum_value, backend_url, check_valid_refs, client_mode?, custom_validations, destroy_model, enum_default_value, enum_values, handle_error, init, load_schema, #models, models, parse_jsonmodel_ref, parse_reference, repository, repository_for, schema_src, set_publish_flags!, set_repository, strict_mode, strict_mode?, validate_schema, with_repository
Constructor Details
#initialize(input_file, content_type, current_user, opts) ⇒ TopContainerLinker
Returns a new instance of TopContainerLinker.
12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
# File 'backend/app/lib/bulk_import/top_container_linker.rb', line 12 def initialize(input_file, content_type, current_user, opts) init_handlers = false if (opts[:initialize_enums]) opts.delete(:initialize_enums) init_handlers = true end super(input_file, content_type, current_user, opts, nil) @resource_ref = "/repositories/#{@opts[:repo_id]}/resources/#{@opts[:rid]}" @start_marker = START_MARKER @counter = 0 if (init_handlers) initialize_handler_enums() end end |
Instance Attribute Details
#report ⇒ Object (readonly)
Returns the value of attribute report
10 11 12 |
# File 'backend/app/lib/bulk_import/top_container_linker.rb', line 10 def report @report end |
Instance Method Details
#ao_save(ao) ⇒ Object
save (create/update) the archival object, then revive it
32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 |
# File 'backend/app/lib/bulk_import/top_container_linker.rb', line 32 def ao_save(ao) revived = nil begin archObj = nil if ao.id.nil? archObj = ArchivalObject.create_from_json(ao) else obj = ArchivalObject.get_or_die(ao.id) archObj = obj.update_from_json(ao) end objs = ArchivalObject.sequel_to_jsonmodel([archObj]) revived = objs[0] if !objs.empty? rescue ValidationException => ve raise BulkImportException.new(I18n.t("bulk_import.error.ao_validation", :err => ve.errors)) rescue Exception => e Log.error("UNEXPECTED ao save error: #{e.message}\n#{e.backtrace}") Log.error(ASUtils.jsonmodels_to_hashes(ao).pretty_inspect) if ao raise e end revived end |
#create_top_container_instance(instance_type, indicator, type, err_arr, ref_id, row_num) ⇒ Object
168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 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 244 245 246 247 248 249 250 251 252 253 254 |
# File 'backend/app/lib/bulk_import/top_container_linker.rb', line 168 def create_top_container_instance(instance_type, indicator, type, err_arr, ref_id, row_num) #Find the top container with this indicator and type if it exists = @row_hash["top_container_barcode"] tc_obj = @cih.get_top_container_json_from_hash(type, indicator, , @resource_ref) #Check if the location ID can be found in the db child_type = @row_hash["child_type"] child_indicator = @row_hash["child_indicator"] = @row_hash["child_barcode"] subcontainer = {} if (!child_type.nil? && !child_indicator.nil?) subcontainer = { "type_2" => child_type.strip, "indicator_2" => child_indicator.strip, "barcode_2" => } end instance = nil begin if (!tc_obj.nil?) #We may have created a new TC already during the iteration so only #grab the instance data from the container instance handler (@cih) if that is the case instance = @cih.format_container_instance(instance_type, tc_obj, subcontainer) else instance = @cih.create_container_instance(instance_type, type, indicator, , @resource_ref, @report, subcontainer) end rescue Exception => e @report.add_errors(I18n.t("top_container_linker.error.no_tc", :ref_id => ref_id.to_s, :row_num => row_num, :why => e.)) instance = nil end #If we created a new Top Container, then add the location and cp if they exist. if (tc_obj.nil? && !instance.nil?) #Get the top container that was just created tc_id = instance["sub_container"]["top_container"]["ref"].split('/')[4] tc_obj = TopContainer.get_or_die(tc_id.to_i) if (tc_obj.nil?) raise BulkImportException.new(I18n.t("top_container_linker.error.no_tc", :ref_id => ref_id.to_s, :row_num => row_num, :why => "Could not find newly created Top Container")) end now = Time.now #Check if the location ID can be found in the db loc_id = @row_hash["location_id"] if (!loc_id.nil?) loc = Location.get_or_die(loc_id.strip.to_i) if (loc.nil?) err_arr.push I18n.t("top_container_linker.error.loc_not_in_db", :loc_id=> loc_id.to_s, :ref_id => ref_id.to_s, :row_num => row_num) else begin loc_relationship = TopContainer.find_relationship(:top_container_housed_at) loc_relationship.relate(tc_obj, loc, { :status => 'current', :start_date => now.iso8601, :aspace_relationship_position => 0, :system_mtime => now, :user_mtime => now }) rescue Exception => e @report.add_errors(I18n.t("top_container_linker.error.problem_adding_current_location", :ref_id => ref_id.to_s, :row_num => row_num, :why => e.)) instance = nil end end end #Check if Container Profile Record No. can be found in the db cp_id = @row_hash["container_profile_id"] if (!cp_id.nil?) cp = ContainerProfile.get_or_die(cp_id.strip.to_i) if (cp.nil?) err_arr.push I18n.t("top_container_linker.error.cp_not_in_db", :cp_id=> cp_id.to_s, :ref_id => ref_id.to_s, :row_num => row_num) else begin cp_relationship = TopContainer.find_relationship(:top_container_profile) cp_relationship.relate(tc_obj, cp, { :aspace_relationship_position => 1, :system_mtime => now, :user_mtime => now }) rescue Exception => e @report.add_errors(I18n.t("top_container_linker.error.problem_setting_container_profile", :ref_id => ref_id.to_s, :row_num => row_num, :why => e.)) instance = nil end end end end instance end |
#initialize_handler_enums ⇒ Object
27 28 29 |
# File 'backend/app/lib/bulk_import/top_container_linker.rb', line 27 def initialize_handler_enums @cih = ContainerInstanceHandler.new(@current_user, @validate_only) end |
#process_row(row_hash = nil) ⇒ Object
look for all the required fields to make sure they are legit
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 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 |
# File 'backend/app/lib/bulk_import/top_container_linker.rb', line 55 def process_row(row_hash = nil) #This allows the processing of a single row if (!row_hash.nil?) @row_hash = row_hash @report = BulkImportReport.new @counter += 1 @report.new_row(@counter) end err_arr = [] begin ao = nil # Check that the archival object ref id exists ref_id = @row_hash["ref_id"] if ref_id.nil? err_arr.push I18n.t("top_container_linker.error.ref_id_miss", :row_num => @counter.to_s) else #Check that the AO can be found in the db ao = archival_object_from_ref(ref_id.strip) if (ao.nil?) err_arr.push I18n.t("top_container_linker.error.ao_not_in_db", :ref_id => ref_id.to_s, :row_num => @counter.to_s) else @report.add_archival_object(ao) end end #If the AO is nil, then just stop here before checking anything else if ao.nil? raise BulkImportException.new("No AO found;" + err_arr) end ead_id = @row_hash["ead_id"] if ead_id.nil? err_arr.push I18n.t("top_container_linker.error.ead_id_miss", :ref_id => ref_id.to_s, :row_num => @counter.to_s) else #Check that the AO can be found in the db resource = resource_from_ref(ead_id.strip) if (resource.nil?) err_arr.push I18n.t("top_container_linker.error.resource_not_in_db", :ead_id => ead_id.to_s, :row_num => @counter.to_s) elsif (resource.uri != @resource_ref) err_arr.push I18n.t("top_container_linker.error.resources_do_not_match", :spreadsheet_resource => resource.uri, :ead_id => ead_id.to_s, :current_resource => @resource_ref, :row_num => @counter.to_s) end end #Check that the instance type exists instance_type = @row_hash["instance_type"] if instance_type.nil? err_arr.push I18n.t("top_container_linker.error.instance_type_miss", :ref_id => ref_id.to_s, :row_num => @counter.to_s) end #Check that either the Top Container Indicator or Top Container Record No. is present tc_indicator = @row_hash["top_container_indicator"] tc_record_no = @row_hash["top_container_id"] #Both missing if (tc_indicator.nil? && tc_record_no.nil?) err_arr.push I18n.t("top_container_linker.error.tc_indicator_and_record_no_miss", :ref_id => ref_id.to_s, :row_num => @counter.to_s) end #Both exist if (!tc_indicator.nil? && !tc_record_no.nil?) err_arr.push I18n.t("top_container_linker.error.tc_indicator_and_record_no_exist", :ref_id => ref_id.to_s, :row_num => @counter.to_s) end #Container type/Container indicator combo already exists tc_type = @row_hash["top_container_type"] tc_instance = nil if (!tc_indicator.nil? && !tc_type.nil?) = @row_hash["top_container_barcode"] tc_jsonmodel_obj = @cih.get_top_container_json_from_hash(tc_type, tc_indicator, , @resource_ref) display_indicator = tc_indicator; if (tc_jsonmodel_obj.nil?) #Create new TC tc_instance = create_top_container_instance(instance_type, tc_indicator, tc_type, err_arr, ref_id, @counter.to_s) else tc_instance = create_top_container_instance(instance_type, tc_jsonmodel_obj.indicator, tc_jsonmodel_obj.type, err_arr, ref_id, @counter.to_s) display_indicator = tc_jsonmodel_obj.indicator end elsif (!tc_record_no.nil?) tc_jsonmodel_obj = TopContainer.get_or_die(tc_record_no.strip.to_i) if tc_jsonmodel_obj.nil? #Cannot find TC record with ID err_arr.push I18n.t("top_container_linker.error.tc_record_no_missing", :tc_id=> tc_record_no, :ref_id => ref_id.to_s, :row_num => @counter.to_s) else child_type = @row_hash["child_type"] child_indicator = @row_hash["child_indicator"] = @row_hash["child_barcode"] subcontainer = {} if (!child_type.nil? && !child_indicator.nil?) subcontainer = { "type_2" => child_type.strip, "indicator_2" => child_indicator.strip, "barcode_2" => } end tc_instance = @cih.format_container_instance(instance_type, tc_jsonmodel_obj, subcontainer) display_indicator = tc_jsonmodel_obj.indicator end end if (!tc_instance.nil?) ao.instances ||= [] ao.instances << tc_instance @report.add_info("Adding Top Container Instance " + instance_type.capitalize + " " + display_indicator + " to Archival Object " + ref_id) ao_save(ao) end rescue StopBulkImportException => se err_arr.join("; ") raise StopBulkImportException.new(se. + "; " + err_arr) rescue BulkImportException => te err_arr.join("; ") raise BulkImportException.new(te. + "; " + err_arr) rescue Exception => e Log.error(["UNEXPLAINED EXCEPTION on process_row", e., e.backtrace, @row_hash].pretty_inspect) end if !err_arr.empty? raise BulkImportException.new(err_arr.join("; ")) end ao end |