enju_biblio 0.3.10 → 0.4.0.beta.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (362) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +2 -3
  3. data/app/controllers/content_types_controller.rb +1 -1
  4. data/app/controllers/items_controller.rb +2 -5
  5. data/app/controllers/manifestations_controller.rb +20 -23
  6. data/app/controllers/resource_import_results_controller.rb +2 -6
  7. data/app/helpers/enju_biblio/application_helper.rb +5 -5
  8. data/app/helpers/manifestations_helper.rb +10 -10
  9. data/app/models/agent.rb +3 -3
  10. data/app/models/agent_import_file.rb +1 -1
  11. data/app/models/agent_relationship_type.rb +8 -7
  12. data/app/models/agent_type.rb +10 -7
  13. data/app/models/carrier_type.rb +14 -11
  14. data/app/models/content_type.rb +10 -7
  15. data/app/models/create_type.rb +8 -7
  16. data/app/models/doi_record.rb +36 -0
  17. data/app/models/form_of_work.rb +11 -8
  18. data/app/models/frequency.rb +10 -7
  19. data/app/models/identifier_type.rb +1 -0
  20. data/app/models/import_request.rb +0 -2
  21. data/app/models/isbn_record.rb +51 -0
  22. data/app/models/isbn_record_and_manifestation.rb +18 -0
  23. data/app/models/issn_record.rb +49 -0
  24. data/app/models/issn_record_and_manifestation.rb +18 -0
  25. data/app/models/item.rb +2 -50
  26. data/app/models/language.rb +10 -9
  27. data/app/models/license.rb +9 -7
  28. data/app/models/manifestation.rb +252 -148
  29. data/app/models/manifestation_relationship_type.rb +9 -7
  30. data/app/models/medium_of_performance.rb +11 -8
  31. data/app/models/periodical.rb +33 -0
  32. data/app/models/periodical_and_manifestation.rb +16 -0
  33. data/app/models/picture_file.rb +2 -0
  34. data/app/models/produce_type.rb +8 -7
  35. data/app/models/realize_type.rb +8 -7
  36. data/app/models/resource_export_file.rb +8 -6
  37. data/app/models/resource_export_file_state_machine.rb +1 -1
  38. data/app/models/resource_import_file.rb +62 -153
  39. data/app/views/agent_import_results/index.txt.erb +3 -0
  40. data/app/views/agent_relationship_types/index.html.erb +1 -1
  41. data/app/views/agent_relationship_types/show.html.erb +1 -1
  42. data/app/views/agent_relationships/_form.html.erb +1 -1
  43. data/app/views/agent_types/index.html.erb +1 -1
  44. data/app/views/agent_types/show.html.erb +1 -1
  45. data/app/views/agents/_agent.html.erb +1 -1
  46. data/app/views/agents/_agent_list.html.erb +2 -2
  47. data/app/views/agents/_form.html.erb +4 -4
  48. data/app/views/agents/_index_agent.html.erb +1 -1
  49. data/app/views/agents/_index_agent_merge_list.html.erb +1 -1
  50. data/app/views/agents/_index_expression.html.erb +2 -2
  51. data/app/views/agents/_index_manifestation.html.erb +2 -2
  52. data/app/views/agents/_index_work.html.erb +2 -2
  53. data/app/views/agents/index.atom.builder +1 -1
  54. data/app/views/agents/index.rss.builder +1 -1
  55. data/app/views/agents/show.html+phone.erb +2 -2
  56. data/app/views/agents/show.html.erb +2 -2
  57. data/app/views/carrier_types/index.html.erb +2 -2
  58. data/app/views/carrier_types/show.html.erb +3 -3
  59. data/app/views/content_types/index.html.erb +1 -1
  60. data/app/views/content_types/show.html.erb +1 -1
  61. data/app/views/countries/index.html.erb +1 -1
  62. data/app/views/countries/show.html.erb +1 -1
  63. data/app/views/create_types/index.html.erb +1 -1
  64. data/app/views/create_types/show.html.erb +1 -1
  65. data/app/views/creates/_form.html.erb +1 -1
  66. data/app/views/form_of_works/index.html.erb +1 -1
  67. data/app/views/form_of_works/show.html.erb +1 -1
  68. data/app/views/frequencies/index.html.erb +1 -1
  69. data/app/views/frequencies/show.html.erb +1 -1
  70. data/app/views/identifier_types/index.html.erb +1 -1
  71. data/app/views/identifier_types/show.html.erb +1 -1
  72. data/app/views/items/_form.html.erb +13 -33
  73. data/app/views/items/index.html+phone.erb +3 -3
  74. data/app/views/items/index.html.erb +3 -3
  75. data/app/views/items/show.html+phone.erb +5 -5
  76. data/app/views/items/show.html.erb +12 -27
  77. data/app/views/languages/index.html.erb +1 -1
  78. data/app/views/languages/show.html.erb +1 -1
  79. data/app/views/layouts/agents.html.erb +2 -2
  80. data/app/views/layouts/items.html.erb +1 -1
  81. data/app/views/layouts/manifestations.html.erb +4 -4
  82. data/app/views/licenses/index.html.erb +1 -1
  83. data/app/views/licenses/show.html.erb +1 -1
  84. data/app/views/manifestation_relationship_types/index.html.erb +1 -1
  85. data/app/views/manifestation_relationship_types/show.html.erb +1 -1
  86. data/app/views/manifestation_relationships/_form.html.erb +1 -1
  87. data/app/views/manifestations/_call_number.html.erb +3 -3
  88. data/app/views/manifestations/_export_detail.html.erb +0 -1
  89. data/app/views/manifestations/_export_list.html.erb +0 -1
  90. data/app/views/manifestations/_form.html.erb +5 -28
  91. data/app/views/manifestations/_identifier_fields.html.erb +1 -1
  92. data/app/views/manifestations/_manifestation.txt.erb +1 -1
  93. data/app/views/manifestations/_show_creators.html.erb +1 -1
  94. data/app/views/manifestations/_show_detail_librarian.html.erb +5 -25
  95. data/app/views/manifestations/_show_detail_user.html.erb +5 -13
  96. data/app/views/manifestations/_show_holding.html+phone.erb +3 -3
  97. data/app/views/manifestations/_show_holding.html.erb +2 -2
  98. data/app/views/manifestations/index.atom.builder +1 -1
  99. data/app/views/manifestations/index.opds.builder +1 -1
  100. data/app/views/manifestations/index.rdf.builder +1 -1
  101. data/app/views/manifestations/index.rss.builder +1 -1
  102. data/app/views/manifestations/index.txt.erb +1 -0
  103. data/app/views/manifestations/show.txt.erb +1 -0
  104. data/app/views/medium_of_performances/index.html.erb +1 -1
  105. data/app/views/medium_of_performances/show.html.erb +1 -1
  106. data/app/views/notifier/manifestation_info.en.text.erb +1 -1
  107. data/app/views/notifier/manifestation_info.ja.text.erb +1 -1
  108. data/app/views/picture_files/edit.html.erb +0 -4
  109. data/app/views/produce_types/index.html.erb +1 -1
  110. data/app/views/produce_types/show.html.erb +1 -1
  111. data/app/views/produces/_form.html.erb +1 -1
  112. data/app/views/realize_types/index.html.erb +1 -1
  113. data/app/views/realize_types/show.html.erb +1 -1
  114. data/app/views/realizes/_form.html.erb +1 -1
  115. data/app/views/resource_import_files/_results.html.erb +0 -6
  116. data/app/views/resource_import_files/new.html.erb +2 -2
  117. data/app/views/resource_import_results/index.html.erb +11 -0
  118. data/app/views/resource_import_results/index.txt.erb +3 -0
  119. data/app/views/series_statements/_form.html.erb +8 -6
  120. data/app/views/series_statements/show.html.erb +0 -12
  121. data/config/locales/translation_en.yml +1 -28
  122. data/config/locales/translation_ja.yml +3 -30
  123. data/config/routes.rb +0 -2
  124. data/db/migrate/20081027150907_create_picture_files.rb +2 -0
  125. data/db/migrate/20160319144230_create_issn_records.rb +11 -0
  126. data/db/migrate/20160506144040_create_isbn_records.rb +11 -0
  127. data/db/migrate/20170116134107_create_issn_record_and_manifestations.rb +11 -0
  128. data/db/migrate/20170116134120_create_isbn_record_and_manifestations.rb +11 -0
  129. data/db/migrate/20190102034126_create_doi_records.rb +13 -0
  130. data/db/migrate/20190311154610_create_periodicals.rb +10 -0
  131. data/db/migrate/20190312033839_create_periodical_and_manifestations.rb +11 -0
  132. data/db/migrate/20190712163038_add_display_name_translations_to_carrier_type.rb +21 -0
  133. data/lib/enju_biblio/version.rb +1 -1
  134. data/lib/generators/enju_biblio/setup/setup_generator.rb +0 -2
  135. data/lib/generators/enju_biblio/setup/templates/db/fixtures/agent_relationship_types.yml +3 -3
  136. data/lib/generators/enju_biblio/setup/templates/db/fixtures/agent_types.yml +2 -4
  137. data/lib/generators/enju_biblio/setup/templates/db/fixtures/carrier_types.yml +8 -26
  138. data/lib/generators/enju_biblio/setup/templates/db/fixtures/content_types.yml +12 -24
  139. data/lib/generators/enju_biblio/setup/templates/db/fixtures/create_types.yml +4 -22
  140. data/lib/generators/enju_biblio/setup/templates/db/fixtures/form_of_works.yml +1 -1
  141. data/lib/generators/enju_biblio/setup/templates/db/fixtures/frequencies.yml +9 -18
  142. data/lib/generators/enju_biblio/setup/templates/db/fixtures/languages.yml +2 -4
  143. data/lib/generators/enju_biblio/setup/templates/db/fixtures/licenses.yml +2 -2
  144. data/lib/generators/enju_biblio/setup/templates/db/fixtures/manifestation_relationship_types.yml +2 -4
  145. data/lib/generators/enju_biblio/setup/templates/db/fixtures/medium_of_performances.yml +15 -0
  146. data/lib/generators/enju_biblio/setup/templates/db/fixtures/produce_types.yml +2 -19
  147. data/lib/generators/enju_biblio/setup/templates/db/fixtures/realize_types.yml +3 -21
  148. data/spec/cassette_library/ImportRequestsController/POST_create/When_logged_in_as_Administrator/with_isbn_which_is_already_imported/assigns_a_newly_created_import_request_as_import_request.yml +121 -0
  149. data/spec/controllers/content_types_controller_spec.rb +1 -1
  150. data/spec/controllers/items_controller_spec.rb +1 -23
  151. data/spec/controllers/manifestations_controller_spec.rb +0 -49
  152. data/spec/dummy/app/helpers/application_helper.rb +1 -1
  153. data/spec/dummy/app/models/user.rb +4 -0
  154. data/spec/dummy/bin/bundle +1 -1
  155. data/spec/dummy/bin/setup +1 -3
  156. data/spec/dummy/bin/update +4 -2
  157. data/spec/dummy/bin/yarn +3 -3
  158. data/spec/dummy/config/application.rb +1 -2
  159. data/spec/dummy/config/database.yml +70 -9
  160. data/spec/dummy/config/initializers/assets.rb +2 -2
  161. data/spec/dummy/db/development.sqlite3 +0 -0
  162. data/spec/dummy/db/migrate/002_devise_create_users.rb +1 -0
  163. data/spec/dummy/db/migrate/113_create_events.rb +2 -4
  164. data/spec/dummy/db/migrate/154_create_messages.rb +4 -8
  165. data/spec/dummy/db/migrate/20080819181903_create_message_requests.rb +3 -3
  166. data/spec/dummy/db/migrate/20081028093607_create_event_import_files.rb +2 -4
  167. data/spec/dummy/db/migrate/20090519203307_create_participates.rb +2 -4
  168. data/spec/dummy/db/migrate/20100925074639_create_event_import_results.rb +2 -2
  169. data/spec/dummy/db/migrate/20120125050502_add_depth_to_message.rb +1 -0
  170. data/spec/dummy/db/migrate/20140518111006_create_message_transitions.rb +1 -1
  171. data/spec/dummy/db/migrate/20140518135713_create_message_request_transitions.rb +1 -1
  172. data/spec/dummy/db/migrate/20140523171309_create_event_import_file_transitions.rb +1 -1
  173. data/spec/dummy/db/migrate/20140524135607_create_bookmark_stat_transitions.rb +1 -1
  174. data/spec/dummy/db/migrate/20140720192418_add_default_library_id_to_event_import_file.rb +1 -1
  175. data/spec/dummy/db/migrate/20140812152348_create_event_export_files.rb +1 -1
  176. data/spec/dummy/db/migrate/20140812153137_create_event_export_file_transitions.rb +1 -1
  177. data/spec/dummy/db/migrate/20140814070854_add_default_event_category_id_to_event_import_file.rb +1 -1
  178. data/spec/dummy/db/migrate/20151128142913_create_places.rb +14 -0
  179. data/spec/dummy/db/migrate/20151201163718_add_place_id_to_event.rb +5 -0
  180. data/spec/dummy/db/migrate/20160703184258_add_most_recent_to_event_import_file_transitions.rb +9 -0
  181. data/spec/dummy/db/migrate/20160703184311_add_most_recent_to_event_export_file_transitions.rb +9 -0
  182. data/spec/dummy/db/migrate/20160813191533_add_book_jacket_source_to_library_group.rb +1 -1
  183. data/spec/dummy/db/migrate/20160813191820_add_screenshot_generator_to_library_group.rb +1 -1
  184. data/spec/dummy/db/migrate/20160815045420_add_most_recent_to_bookmark_stat_transitions.rb +9 -0
  185. data/spec/dummy/db/migrate/20170116150432_create_jpno_records.rb +10 -0
  186. data/spec/dummy/db/migrate/20171126072934_create_ndla_records.rb +10 -0
  187. data/spec/dummy/db/migrate/20180107162659_add_constraints_to_most_recent_for_message_transitions.rb +13 -0
  188. data/spec/dummy/db/migrate/20180107162711_add_constraints_to_most_recent_for_message_request_transitions.rb +13 -0
  189. data/spec/dummy/db/migrate/20180107164558_add_constraints_to_most_recent_for_event_import_file_transitions.rb +13 -0
  190. data/spec/dummy/db/migrate/20180107164617_add_constraints_to_most_recent_for_event_export_file_transitions.rb +13 -0
  191. data/spec/dummy/db/migrate/20180107172413_add_constraints_to_most_recent_for_bookmark_stat_transitions.rb +13 -0
  192. data/spec/dummy/db/migrate/20180709023035_acts_as_taggable_on_migration.acts_as_taggable_on_engine.rb +36 -0
  193. data/spec/dummy/db/migrate/20180709023036_add_missing_unique_indices.acts_as_taggable_on_engine.rb +26 -0
  194. data/spec/dummy/db/migrate/20180709023037_add_taggings_counter_cache_to_tags.acts_as_taggable_on_engine.rb +20 -0
  195. data/spec/dummy/db/migrate/20180709023038_add_missing_taggable_index.acts_as_taggable_on_engine.rb +15 -0
  196. data/spec/dummy/db/migrate/20180709023039_change_collation_for_tag_names.acts_as_taggable_on_engine.rb +15 -0
  197. data/spec/dummy/db/migrate/20180709023040_add_missing_indexes_on_taggings.acts_as_taggable_on_engine.rb +23 -0
  198. data/spec/dummy/db/migrate/20180709161346_add_created_at_to_tag.rb +6 -0
  199. data/spec/dummy/db/migrate/20181119170645_add_foreign_key_to_events_referencing_event_categories.rb +5 -0
  200. data/spec/dummy/db/migrate/20190501043418_create_ndl_bib_id_records.rb +10 -0
  201. data/spec/dummy/db/migrate/20190508160525_create_retains.rb +10 -0
  202. data/spec/dummy/db/migrate/20190630113817_add_display_name_translations_to_library_group.rb +12 -0
  203. data/spec/dummy/db/migrate/20190630115523_add_login_banner_translations_to_library_group.rb +6 -0
  204. data/spec/dummy/db/migrate/20190630151446_add_display_name_translations_to_role.rb +5 -0
  205. data/spec/dummy/db/migrate/20190630153136_add_display_name_translations_to_event.rb +6 -0
  206. data/spec/dummy/db/migrate/20190706052525_add_display_name_translations_to_circulation_status.rb +5 -0
  207. data/spec/dummy/db/schema.rb +335 -221
  208. data/spec/dummy/db/test.sqlite3 +0 -0
  209. data/spec/factories/create_types.rb +8 -7
  210. data/spec/factories/produce_types.rb +8 -7
  211. data/spec/factories/realize_types.rb +8 -7
  212. data/spec/factories/series_statement.rb +3 -4
  213. data/spec/fixtures/agent_relationship_types.yml +8 -7
  214. data/spec/fixtures/agent_types.yml +11 -10
  215. data/spec/fixtures/carrier_types.yml +16 -15
  216. data/spec/fixtures/content_types.yml +20 -31
  217. data/spec/fixtures/create_types.yml +12 -15
  218. data/spec/fixtures/creates.yml +0 -2
  219. data/spec/fixtures/form_of_works.yml +11 -10
  220. data/spec/fixtures/frequencies.yml +17 -25
  221. data/spec/fixtures/items.yml +11 -12
  222. data/spec/fixtures/languages.yml +11 -11
  223. data/spec/fixtures/libraries.yml +30 -30
  224. data/spec/fixtures/library_groups.yml +11 -6
  225. data/spec/fixtures/licenses.yml +8 -7
  226. data/spec/fixtures/manifestation_relationship_types.yml +12 -11
  227. data/spec/fixtures/manifestations.yml +0 -1
  228. data/spec/fixtures/medium_of_performances.yml +10 -9
  229. data/spec/fixtures/picture_files.yml +2 -0
  230. data/spec/fixtures/produce_types.yml +10 -11
  231. data/spec/fixtures/produces.yml +0 -2
  232. data/spec/fixtures/profiles.yml +8 -5
  233. data/spec/fixtures/realize_types.yml +11 -13
  234. data/spec/fixtures/realizes.yml +0 -2
  235. data/spec/fixtures/request_status_types.yml +14 -14
  236. data/spec/fixtures/request_types.yml +13 -13
  237. data/spec/fixtures/resource_export_files.yml +1 -1
  238. data/spec/fixtures/resource_import_results.yml +2 -2
  239. data/spec/fixtures/roles.yml +22 -5
  240. data/spec/fixtures/shelves.yml +16 -16
  241. data/spec/fixtures/user_groups.yml +12 -12
  242. data/spec/fixtures/user_has_roles.yml +3 -4
  243. data/spec/fixtures/users.yml +0 -3
  244. data/spec/models/agent_relationship_type_spec.rb +8 -7
  245. data/spec/models/agent_type_spec.rb +8 -7
  246. data/spec/models/carrier_type_spec.rb +12 -11
  247. data/spec/models/content_type_spec.rb +8 -7
  248. data/spec/models/create_type_spec.rb +8 -7
  249. data/spec/models/doi_record_spec.rb +19 -0
  250. data/spec/models/form_of_work_spec.rb +8 -7
  251. data/spec/models/frequency_spec.rb +8 -7
  252. data/spec/models/item_spec.rb +0 -7
  253. data/spec/models/language_spec.rb +10 -9
  254. data/spec/models/license_spec.rb +8 -7
  255. data/spec/models/manifestation_relationship_type_spec.rb +8 -7
  256. data/spec/models/manifestation_spec.rb +16 -24
  257. data/spec/models/medium_of_performance_spec.rb +8 -7
  258. data/spec/models/periodical_and_manifestation_spec.rb +17 -0
  259. data/spec/models/periodical_spec.rb +16 -0
  260. data/spec/models/picture_file_spec.rb +2 -0
  261. data/spec/models/produce_type_spec.rb +8 -7
  262. data/spec/models/realize_type_spec.rb +8 -7
  263. data/spec/models/resource_export_file_spec.rb +9 -62
  264. data/spec/models/resource_import_file_spec.rb +14 -44
  265. data/spec/rails_helper.rb +8 -4
  266. data/spec/system/manifestations_spec.rb +0 -30
  267. data/spec/views/items/index.html.erb_spec.rb +6 -7
  268. data/spec/views/manifestations/{index.txt.ruby_spec.rb → index.txt.erb_spec.rb} +1 -1
  269. data/spec/views/manifestations/{show.txt.ruby_spec.rb → show.txt.erb_spec.rb} +2 -2
  270. data/spec/views/resource_import_results/show.html.erb_spec.rb +1 -1
  271. metadata +129 -285
  272. data/app/controllers/item_custom_properties_controller.rb +0 -69
  273. data/app/controllers/manifestation_custom_properties_controller.rb +0 -69
  274. data/app/models/item_custom_property.rb +0 -18
  275. data/app/models/item_custom_value.rb +0 -17
  276. data/app/models/manifestation_custom_property.rb +0 -18
  277. data/app/models/manifestation_custom_value.rb +0 -17
  278. data/app/policies/item_custom_property_policy.rb +0 -21
  279. data/app/policies/manifestation_custom_property_policy.rb +0 -21
  280. data/app/views/agent_import_results/index.txt.ruby +0 -5
  281. data/app/views/item_custom_properties/_form.html.erb +0 -32
  282. data/app/views/item_custom_properties/edit.html.erb +0 -13
  283. data/app/views/item_custom_properties/index.html.erb +0 -43
  284. data/app/views/item_custom_properties/new.html.erb +0 -12
  285. data/app/views/item_custom_properties/show.html.erb +0 -28
  286. data/app/views/manifestation_custom_properties/_form.html.erb +0 -32
  287. data/app/views/manifestation_custom_properties/edit.html.erb +0 -13
  288. data/app/views/manifestation_custom_properties/index.html.erb +0 -43
  289. data/app/views/manifestation_custom_properties/new.html.erb +0 -12
  290. data/app/views/manifestation_custom_properties/show.html.erb +0 -28
  291. data/app/views/manifestations/index.txt.ruby +0 -7
  292. data/app/views/manifestations/show.json.jbuilder +0 -2
  293. data/app/views/manifestations/show.txt.ruby +0 -5
  294. data/app/views/resource_import_results/index.txt.ruby +0 -5
  295. data/db/migrate/20190818075603_add_memo_to_manifestation.rb +0 -5
  296. data/db/migrate/20190818075628_add_memo_to_item.rb +0 -5
  297. data/db/migrate/20200425072340_create_manifestation_custom_properties.rb +0 -12
  298. data/db/migrate/20200425072349_create_item_custom_properties.rb +0 -12
  299. data/db/migrate/20200425074758_create_manifestation_custom_values.rb +0 -12
  300. data/db/migrate/20200425074822_create_item_custom_values.rb +0 -12
  301. data/lib/generators/enju_biblio/setup/templates/db/fixtures/agents.yml +0 -19
  302. data/spec/cassette_library/ResourceImportFile/when_its_mode_is_create_/when_it_is_written_in_utf-8/should_import_custom_values.yml +0 -121
  303. data/spec/cassette_library/resource_import_results/index_txt_ruby/renders_a_list_of_resource_import_results.yml +0 -121
  304. data/spec/controllers/item_custom_properties_controller_spec.rb +0 -449
  305. data/spec/controllers/manifestation_custom_properties_controller_spec.rb +0 -449
  306. data/spec/dummy/db/migrate/20081117143156_create_inventory_files.rb +0 -18
  307. data/spec/dummy/db/migrate/20081117143455_create_inventories.rb +0 -17
  308. data/spec/dummy/db/migrate/20090706125521_add_attachments_inventory_to_inventory_file.rb +0 -15
  309. data/spec/dummy/db/migrate/20091202124834_create_versions.rb +0 -18
  310. data/spec/dummy/db/migrate/20100525171356_acts_as_taggable_on_migration.rb +0 -30
  311. data/spec/dummy/db/migrate/20111217234412_add_save_checkout_history_to_user.rb +0 -5
  312. data/spec/dummy/db/migrate/20111218002349_add_checkout_icalendar_token_to_user.rb +0 -6
  313. data/spec/dummy/db/migrate/20120413100431_add_fingerprint_to_inventory_file.rb +0 -5
  314. data/spec/dummy/db/migrate/20150421023923_create_identities.rb +0 -14
  315. data/spec/dummy/db/migrate/20151126005552_add_provider_to_identity.rb +0 -5
  316. data/spec/dummy/db/migrate/20151213070943_add_translation_table_to_library_group.rb +0 -18
  317. data/spec/dummy/db/migrate/20151213072705_add_footer_banner_to_library_group.rb +0 -22
  318. data/spec/factories/item_custom_property.rb +0 -6
  319. data/spec/factories/item_custom_value.rb +0 -6
  320. data/spec/factories/manifestation_custom_property.rb +0 -6
  321. data/spec/factories/manifestation_custom_value.rb +0 -6
  322. data/spec/fixtures/carrier_type_has_checkout_types.yml +0 -31
  323. data/spec/fixtures/checkout_stat_has_manifestations.yml +0 -24
  324. data/spec/fixtures/checkout_stat_has_users.yml +0 -24
  325. data/spec/fixtures/checkout_types.yml +0 -34
  326. data/spec/fixtures/circulation_statuses.yml +0 -136
  327. data/spec/fixtures/inventory_files.yml +0 -40
  328. data/spec/fixtures/item_custom_properties.yml +0 -24
  329. data/spec/fixtures/manifestation_checkout_stats.yml +0 -29
  330. data/spec/fixtures/manifestation_custom_properties.yml +0 -24
  331. data/spec/fixtures/manifestation_reserve_stats.yml +0 -29
  332. data/spec/fixtures/reserve_stat_has_manifestations.yml +0 -24
  333. data/spec/fixtures/reserve_stat_has_users.yml +0 -24
  334. data/spec/fixtures/reserve_transitions.yml +0 -104
  335. data/spec/fixtures/reserves.yml +0 -143
  336. data/spec/fixtures/use_restrictions.yml +0 -93
  337. data/spec/fixtures/user_checkout_stats.yml +0 -28
  338. data/spec/fixtures/user_group_has_checkout_types.yml +0 -111
  339. data/spec/fixtures/user_reserve_stats.yml +0 -28
  340. data/spec/models/item_custom_property_spec.rb +0 -18
  341. data/spec/models/item_custom_value_spec.rb +0 -17
  342. data/spec/models/manifestation_custom_property_spec.rb +0 -18
  343. data/spec/models/manifestation_custom_value_spec.rb +0 -17
  344. data/spec/requests/item_custom_properties_spec.rb +0 -129
  345. data/spec/requests/manifestation_custom_properties_spec.rb +0 -129
  346. data/spec/routing/item_custom_properties_routing_spec.rb +0 -38
  347. data/spec/routing/manifestation_custom_properties_routing_spec.rb +0 -38
  348. data/spec/system/items_spec.rb +0 -115
  349. data/spec/system/series_statements_spec.rb +0 -16
  350. data/spec/views/agent_import_results/index.html.erb_spec.rb +0 -29
  351. data/spec/views/agent_import_results/index.txt.ruby_spec.rb +0 -20
  352. data/spec/views/agent_import_results/show.html.erb_spec.rb +0 -24
  353. data/spec/views/item_custom_properties/edit.html.erb_spec.rb +0 -21
  354. data/spec/views/item_custom_properties/index.html.erb_spec.rb +0 -25
  355. data/spec/views/item_custom_properties/new.html.erb_spec.rb +0 -21
  356. data/spec/views/item_custom_properties/show.html.erb_spec.rb +0 -16
  357. data/spec/views/manifestation_custom_properties/edit.html.erb_spec.rb +0 -21
  358. data/spec/views/manifestation_custom_properties/index.html.erb_spec.rb +0 -25
  359. data/spec/views/manifestation_custom_properties/new.html.erb_spec.rb +0 -21
  360. data/spec/views/manifestation_custom_properties/show.html.erb_spec.rb +0 -16
  361. data/spec/views/manifestations/show.json.jbuilder_spec.rb +0 -16
  362. data/spec/views/resource_import_results/index.txt.ruby_spec.rb +0 -22
@@ -1,17 +1,20 @@
1
1
  class FormOfWork < ApplicationRecord
2
2
  include MasterModel
3
- has_many :works, class_name: 'Manifestation'
3
+ default_scope { order('form_of_works.position') }
4
+ translates :display_name
5
+ has_many :works
4
6
  end
5
7
 
6
8
  # == Schema Information
7
9
  #
8
10
  # Table name: form_of_works
9
11
  #
10
- # id :integer not null, primary key
11
- # name :string not null
12
- # display_name :text
13
- # note :text
14
- # position :integer
15
- # created_at :datetime
16
- # updated_at :datetime
12
+ # id :integer not null, primary key
13
+ # name :string not null
14
+ # display_name :text
15
+ # note :text
16
+ # position :integer
17
+ # created_at :datetime
18
+ # updated_at :datetime
19
+ # display_name_translations :jsonb not null
17
20
  #
@@ -1,5 +1,7 @@
1
1
  class Frequency < ApplicationRecord
2
2
  include MasterModel
3
+ default_scope { order('frequencies.position') }
4
+ translates :display_name
3
5
  has_many :manifestations
4
6
  end
5
7
 
@@ -7,11 +9,12 @@ end
7
9
  #
8
10
  # Table name: frequencies
9
11
  #
10
- # id :integer not null, primary key
11
- # name :string not null
12
- # display_name :text
13
- # note :text
14
- # position :integer
15
- # created_at :datetime
16
- # updated_at :datetime
12
+ # id :integer not null, primary key
13
+ # name :string not null
14
+ # display_name :text
15
+ # note :text
16
+ # position :integer
17
+ # created_at :datetime
18
+ # updated_at :datetime
19
+ # display_name_translations :jsonb not null
17
20
  #
@@ -1,5 +1,6 @@
1
1
  class IdentifierType < ApplicationRecord
2
2
  include MasterModel
3
+ default_scope { order('identifier_types.position') }
3
4
  has_many :identifiers
4
5
  validates :name, format: { with: /\A[0-9a-z][0-9a-z_\-]*[0-9a-z]\Z/ }
5
6
  end
@@ -7,8 +7,6 @@ class ImportRequest < ApplicationRecord
7
7
  validate :check_isbn
8
8
  #validate :check_imported, on: :create
9
9
  #validates_uniqueness_of :isbn, if: Proc.new{|request| ImportRequest.where("created_at > ?", 1.day.ago).collect(&:isbn).include?(request.isbn)}
10
- enju_ndl_ndl_search if defined?(EnjuNdl)
11
- enju_nii_cinii_books if defined?(EnjuNii)
12
10
 
13
11
  has_many :import_request_transitions, autosave: false
14
12
 
@@ -0,0 +1,51 @@
1
+ class IsbnRecord < ActiveRecord::Base
2
+ has_many :isbn_record_and_manifestations, dependent: :destroy
3
+ has_many :manifestations, through: :isbn_record_and_manifestations
4
+ before_save :normalize_isbn
5
+ validates :body, presence: true
6
+ strip_attributes
7
+
8
+ def self.new_records(isbn_records_params)
9
+ return [] unless isbn_records_params
10
+ isbn_records = []
11
+ IsbnRecord.transaction do
12
+ isbn_records_params.each do |k, v|
13
+ next if v['_destroy'] == '1'
14
+ if v['body'].present?
15
+ isbn_record = IsbnRecord.where(body: Lisbn.new(v['body'].gsub(/[^0-9x]/i, '')).isbn13).first_or_create!
16
+ elsif v['id'].present?
17
+ isbn_record = IsbnRecord.find(v['id'])
18
+ else
19
+ v.delete('_destroy')
20
+ isbn_record = IsbnRecord.create(v)
21
+ end
22
+ isbn_records << isbn_record
23
+ end
24
+ end
25
+ isbn_records
26
+ end
27
+
28
+ def normalize_isbn
29
+ if StdNum::ISBN.valid?(body)
30
+ self.body = StdNum::ISBN.normalize(body)
31
+ else
32
+ errors.add(:body)
33
+ end
34
+ end
35
+
36
+ def valid_isbn?
37
+ StdNum::ISBN.valid?(body)
38
+ end
39
+ end
40
+
41
+ # == Schema Information
42
+ #
43
+ # Table name: isbn_records
44
+ #
45
+ # id :bigint not null, primary key
46
+ # body :string not null
47
+ # isbn_type :string
48
+ # source :string
49
+ # created_at :datetime not null
50
+ # updated_at :datetime not null
51
+ #
@@ -0,0 +1,18 @@
1
+ class IsbnRecordAndManifestation < ApplicationRecord
2
+ belongs_to :isbn_record
3
+ belongs_to :manifestation
4
+ validates :isbn_record_id, uniqueness: {scope: :manifestation_id}
5
+ acts_as_list
6
+ end
7
+
8
+ # == Schema Information
9
+ #
10
+ # Table name: isbn_record_and_manifestations
11
+ #
12
+ # id :bigint not null, primary key
13
+ # isbn_record_id :bigint not null
14
+ # manifestation_id :bigint not null
15
+ # position :integer
16
+ # created_at :datetime not null
17
+ # updated_at :datetime not null
18
+ #
@@ -0,0 +1,49 @@
1
+ class IssnRecord < ActiveRecord::Base
2
+ has_many :issn_record_and_manifestations, dependent: :destroy
3
+ has_many :manifestations, through: :issn_record_and_manifestations
4
+ has_many :issn_record_and_periodicals, dependent: :destroy
5
+ has_many :periodicals, through: :issn_record_and_periodicals
6
+ validates :body, presence: true, uniqueness: {scope: :issn_type}
7
+ before_save :normalize_issn
8
+ strip_attributes
9
+
10
+ def normalize_issn
11
+ if StdNum::ISSN.valid?(body)
12
+ self.body = StdNum::ISSN.normalize(body)
13
+ else
14
+ errors.add(:body)
15
+ end
16
+ end
17
+
18
+ def self.new_records(issn_records_params)
19
+ return [] unless issn_records_params
20
+ issn_records = []
21
+ IssnRecord.transaction do
22
+ issn_records_params.each do |k, v|
23
+ next if v['_destroy'] == '1'
24
+ if v['body'].present?
25
+ issn_record = IssnRecord.where(body: v['body'].gsub(/[^0-9x]/i, '')).first_or_create!
26
+ elsif v['id'].present?
27
+ issn_record = IssnRecord.find(v['id'])
28
+ else
29
+ v.delete('_destroy')
30
+ issn_record = IssnRecord.create(v)
31
+ end
32
+ issn_records << issn_record
33
+ end
34
+ end
35
+ issn_records
36
+ end
37
+ end
38
+
39
+ # == Schema Information
40
+ #
41
+ # Table name: issn_records
42
+ #
43
+ # id :bigint not null, primary key
44
+ # body :string not null
45
+ # issn_type :string
46
+ # source :string
47
+ # created_at :datetime not null
48
+ # updated_at :datetime not null
49
+ #
@@ -0,0 +1,18 @@
1
+ class IssnRecordAndManifestation < ApplicationRecord
2
+ belongs_to :issn_record
3
+ belongs_to :manifestation
4
+ acts_as_list
5
+ validates :issn_record_id, uniqueness: {scope: :manifestation_id}
6
+ end
7
+
8
+ # == Schema Information
9
+ #
10
+ # Table name: issn_record_and_manifestations
11
+ #
12
+ # id :bigint not null, primary key
13
+ # issn_record_id :bigint not null
14
+ # manifestation_id :bigint not null
15
+ # position :integer
16
+ # created_at :datetime not null
17
+ # updated_at :datetime not null
18
+ #
@@ -10,7 +10,7 @@ class Item < ApplicationRecord
10
10
  delegate :display_name, to: :shelf, prefix: true
11
11
  has_many :owns
12
12
  has_many :agents, through: :owns
13
- has_many :donates, dependent: :destroy
13
+ has_many :donates
14
14
  has_many :donors, through: :donates, source: :agent
15
15
  has_one :resource_import_result
16
16
  belongs_to :manifestation, touch: true
@@ -19,12 +19,10 @@ class Item < ApplicationRecord
19
19
  belongs_to :budget_type, optional: true
20
20
  has_one :accept, dependent: :destroy
21
21
  has_one :withdraw, dependent: :destroy
22
- has_many :item_custom_values, -> { joins(:item_custom_property).order(:position) }
22
+ scope :accepted_between, lambda{|from, to| includes(:accept).where('items.created_at BETWEEN ? AND ?', Time.zone.parse(from).beginning_of_day, Time.zone.parse(to).end_of_day)}
23
23
 
24
24
  belongs_to :shelf, counter_cache: true
25
- accepts_nested_attributes_for :item_custom_values, reject_if: :all_blank
26
25
 
27
- scope :accepted_between, lambda{|from, to| includes(:accept).where('items.created_at BETWEEN ? AND ?', Time.zone.parse(from).beginning_of_day, Time.zone.parse(to).end_of_day)}
28
26
  validates_associated :bookstore
29
27
  validates :manifestation_id, presence: true
30
28
  validates :item_identifier, allow_blank: true, uniqueness: true,
@@ -98,51 +96,6 @@ class Item < ApplicationRecord
98
96
  true
99
97
  end
100
98
  end
101
-
102
- def self.csv_header(role: 'Guest')
103
- Item.new.to_hash(role: role).keys
104
- end
105
-
106
- def to_hash(role: 'Guest')
107
- record = {
108
- item_id: id,
109
- item_identifier: item_identifier,
110
- binding_item_identifier: binding_item_identifier,
111
- call_number: call_number,
112
- shelf: shelf&.name,
113
- item_note: note,
114
- accepted_at: accept&.created_at,
115
- acquired_at: acquired_at,
116
- item_created_at: created_at,
117
- item_updated_at: updated_at
118
- }
119
-
120
- if ['Administrator', 'Librarian'].include?(role)
121
- record.merge!({
122
- bookstore: bookstore&.name,
123
- budget_type: budget_type&.name,
124
- item_required_role: required_role.name,
125
- item_price: price,
126
- memo: memo
127
- })
128
-
129
- ItemCustomProperty.order(:position).each do |custom_property|
130
- custom_value = item_custom_values.find_by(item_custom_property: custom_property)
131
- record[:"item:#{custom_property.name}"] = custom_value.try(:value)
132
- end
133
-
134
- if defined?(EnjuCirculation)
135
- record.merge!({
136
- use_restriction: use_restriction&.name,
137
- circulation_status: circulation_status&.name,
138
- checkout_type: checkout_type&.name,
139
- total_checkouts: checkouts.count
140
- })
141
- end
142
- end
143
-
144
- record
145
- end
146
99
  end
147
100
 
148
101
  # == Schema Information
@@ -172,5 +125,4 @@ end
172
125
  # binding_call_number :string
173
126
  # binded_at :datetime
174
127
  # manifestation_id :integer not null
175
- # memo :text
176
128
  #
@@ -24,13 +24,14 @@ end
24
24
  #
25
25
  # Table name: languages
26
26
  #
27
- # id :integer not null, primary key
28
- # name :string not null
29
- # native_name :string
30
- # display_name :text
31
- # iso_639_1 :string
32
- # iso_639_2 :string
33
- # iso_639_3 :string
34
- # note :text
35
- # position :integer
27
+ # id :integer not null, primary key
28
+ # name :string not null
29
+ # native_name :string
30
+ # display_name :text
31
+ # iso_639_1 :string
32
+ # iso_639_2 :string
33
+ # iso_639_3 :string
34
+ # note :text
35
+ # position :integer
36
+ # display_name_translations :jsonb not null
36
37
  #
@@ -1,16 +1,18 @@
1
1
  class License < ApplicationRecord
2
2
  include MasterModel
3
+ default_scope { order('licenses.position') }
3
4
  end
4
5
 
5
6
  # == Schema Information
6
7
  #
7
8
  # Table name: licenses
8
9
  #
9
- # id :integer not null, primary key
10
- # name :string not null
11
- # display_name :string
12
- # note :text
13
- # position :integer
14
- # created_at :datetime
15
- # updated_at :datetime
10
+ # id :integer not null, primary key
11
+ # name :string not null
12
+ # display_name :string
13
+ # note :text
14
+ # position :integer
15
+ # created_at :datetime
16
+ # updated_at :datetime
17
+ # display_name_translations :jsonb not null
16
18
  #
@@ -1,10 +1,4 @@
1
1
  class Manifestation < ApplicationRecord
2
- enju_manifestation_viewer if defined?(EnjuManifestationViewer)
3
- enju_ndl_ndl_search if defined?(EnjuNdl)
4
- enju_loc_search if defined?(EnjuLoc)
5
- enju_nii_cinii_books if defined?(EnjuNii)
6
- enju_bookmark_manifestation_model if defined?(EnjuBookmark)
7
-
8
2
  has_many :creates, dependent: :destroy, foreign_key: 'work_id'
9
3
  has_many :creators, through: :creates, source: :agent #, order: 'creates.position'
10
4
  has_many :realizes, dependent: :destroy, foreign_key: 'expression_id'
@@ -25,13 +19,18 @@ class Manifestation < ApplicationRecord
25
19
  belongs_to :required_role, class_name: 'Role', foreign_key: 'required_role_id'
26
20
  has_one :resource_import_result
27
21
  has_many :identifiers, dependent: :destroy
28
- has_many :manifestation_custom_values, -> { joins(:manifestation_custom_property).order(:position) }
22
+ has_many :isbn_record_and_manifestations, dependent: :destroy
23
+ has_many :isbn_records, through: :isbn_record_and_manifestations
24
+ has_many :issn_record_and_manifestations, dependent: :destroy
25
+ has_many :issn_records, through: :issn_record_and_manifestations
26
+ has_one :doi_record
27
+ has_one :periodical_and_manifestation, dependent: :destroy
28
+ has_one :periodical, through: :periodical_and_manifestation
29
29
  accepts_nested_attributes_for :creators, allow_destroy: true, reject_if: :all_blank
30
30
  accepts_nested_attributes_for :contributors, allow_destroy: true, reject_if: :all_blank
31
31
  accepts_nested_attributes_for :publishers, allow_destroy: true, reject_if: :all_blank
32
32
  accepts_nested_attributes_for :series_statements, allow_destroy: true, reject_if: :all_blank
33
33
  accepts_nested_attributes_for :identifiers, allow_destroy: true, reject_if: :all_blank
34
- accepts_nested_attributes_for :manifestation_custom_values, reject_if: :all_blank
35
34
 
36
35
  searchable do
37
36
  text :title, default_boost: 2 do
@@ -96,7 +95,7 @@ class Manifestation < ApplicationRecord
96
95
  end
97
96
  end
98
97
  string :language do
99
- language&.name
98
+ language.try(:name)
100
99
  end
101
100
  string :item_identifier, multiple: true do
102
101
  if series_master?
@@ -120,7 +119,7 @@ class Manifestation < ApplicationRecord
120
119
  end
121
120
  time :date_of_publication
122
121
  integer :pub_year do
123
- date_of_publication&.year
122
+ date_of_publication.try(:year)
124
123
  end
125
124
  integer :creator_ids, multiple: true
126
125
  integer :contributor_ids, multiple: true
@@ -357,7 +356,7 @@ class Manifestation < ApplicationRecord
357
356
  # TODO: よりよい推薦方法
358
357
  def self.pickup(keyword = nil, current_user = nil)
359
358
  return nil if self.cached_numdocs < 5
360
- if current_user&.role
359
+ if current_user.try(:role)
361
360
  current_role_id = current_user.role.id
362
361
  else
363
362
  current_role_id = 1
@@ -433,7 +432,7 @@ class Manifestation < ApplicationRecord
433
432
  end
434
433
 
435
434
  def index_series_statement
436
- series_statements.map{|s| s.index; s.root_manifestation&.index}
435
+ series_statements.map{|s| s.index; s.root_manifestation.try(:index)}
437
436
  end
438
437
 
439
438
  def acquired_at
@@ -530,148 +529,266 @@ class Manifestation < ApplicationRecord
530
529
  end
531
530
  end
532
531
 
533
- # CSVのヘッダ
534
- # @param [String] role 権限
535
- def self.csv_header(role: 'Guest')
536
- Manifestation.new.to_hash(role: role).keys
532
+ def self.csv_header(role, options = {col_sep: "\t", role: :Guest})
533
+ header = %w(
534
+ manifestation_id
535
+ original_title
536
+ title_transcription
537
+ creator
538
+ contributor
539
+ publisher
540
+ pub_date
541
+ statement_of_responsibility
542
+ manifestation_price
543
+ manifestation_created_at
544
+ manifestation_updated_at
545
+ manifestation_identifier
546
+ access_address
547
+ description
548
+ note
549
+ extent
550
+ dimensions
551
+ carrier_type
552
+ edition
553
+ edition_string
554
+ volume_number
555
+ volume_number_string
556
+ issue_number
557
+ issue_number_string
558
+ serial_number
559
+ )
560
+
561
+ header += IdentifierType.order(:position).pluck(:name)
562
+ if defined?(EnjuSubject)
563
+ header += SubjectHeadingType.order(:position).pluck(:name).map{|type| "subject:#{type}"}
564
+ header += ClassificationType.order(:position).pluck(:name).map{|type| "classification:#{type}"}
565
+ end
566
+
567
+ header += %w(
568
+ item_id
569
+ item_identifier
570
+ call_number
571
+ item_note
572
+ )
573
+ case role.to_sym
574
+ when :Administrator, :Librarian
575
+ header << "item_price"
576
+ end
577
+ header += %w(
578
+ acquired_at
579
+ accepted_at
580
+ )
581
+ case role.to_sym
582
+ when :Administrator, :Librarian
583
+ header += %w(
584
+ bookstore
585
+ budget_type
586
+ total_checkouts
587
+ )
588
+ end
589
+ header += %w(
590
+ circulation_status
591
+ shelf
592
+ library
593
+ item_created_at
594
+ item_updated_at
595
+ )
596
+ case role.to_sym
597
+ when :Administrator, :Librarian
598
+ header << "use_restriction"
599
+ end
600
+
601
+ header.to_csv(options)
537
602
  end
538
603
 
539
- # CSV出力用のハッシュ
540
- # @param [String] role 権限
541
- def to_hash(role: 'Guest')
542
- record = {
543
- manifestation_id: id,
544
- original_title: original_title,
545
- title_alternative: title_alternative,
546
- title_transcription: title_transcription,
547
- statement_of_responsibility: statement_of_responsibility,
548
- serial: serial,
549
- manifestation_identifier: manifestation_identifier,
550
- creator: creates.map{|create|
551
- if create.create_type
552
- "#{create.agent.full_name}||#{create.create_type.name}"
604
+ def to_csv(options = {format: :txt, role: :Guest})
605
+ lines = []
606
+ if items.exists?
607
+ items.includes(shelf: :library).each do |i|
608
+ item_lines = []
609
+ item_lines << id
610
+ item_lines << original_title
611
+ item_lines << title_transcription
612
+ if creators.exists?
613
+ item_lines << creators.pluck(:full_name).join("//")
553
614
  else
554
- "#{create.agent.full_name}"
615
+ item_lines << nil
555
616
  end
556
- }.join('//'),
557
- contributor: realizes.map{|realize|
558
- if realize.realize_type
559
- "#{realize.agent.full_name}||#{realize.realize_type.name}"
617
+ if contributors.exists?
618
+ item_lines << contributors.pluck(:full_name).join("//")
560
619
  else
561
- "#{realize.agent.full_name}"
620
+ item_lines << nil
562
621
  end
563
- }.join('//'),
564
- publisher: produces.map{|produce|
565
- if produce.produce_type
566
- "#{produce.agent.full_name}||#{produce.produce_type.name}"
622
+ if publishers.exists?
623
+ item_lines << publishers.pluck(:full_name).join("//")
567
624
  else
568
- "#{produce.agent.full_name}"
625
+ item_lines << nil
626
+ end
627
+ item_lines << pub_date
628
+ item_lines << statement_of_responsibility
629
+ item_lines << price
630
+ item_lines << created_at
631
+ item_lines << updated_at
632
+ item_lines << manifestation_identifier
633
+ item_lines << access_address
634
+ item_lines << description.try(:gsub, /\r?\n/, '\n')
635
+ item_lines << note.try(:gsub, /\r?\n/, '\n')
636
+ item_lines << extent
637
+ item_lines << dimensions
638
+ item_lines << carrier_type.name
639
+ item_lines << edition
640
+ item_lines << edition_string
641
+ item_lines << volume_number
642
+ item_lines << volume_number_string
643
+ item_lines << issue_number
644
+ item_lines << issue_number_string
645
+ item_lines << serial_number
646
+
647
+ IdentifierType.order(:position).pluck(:name).each do |identifier_type|
648
+ identifier_list = identifier_contents(identifier_type.to_sym)
649
+ if identifier_list
650
+ item_lines << identifier_list.join("//")
651
+ else
652
+ item_lines << nil
653
+ end
654
+ end
655
+ if defined?(EnjuSubject)
656
+ SubjectHeadingType.order(:position).each do |subject_heading_type|
657
+ if subjects.exists?
658
+ item_lines << subjects.where(subject_heading_type: subject_heading_type).pluck(:term).join('//')
659
+ else
660
+ item_lines << nil
661
+ end
662
+ end
663
+ ClassificationType.order(:position).each do |classification_type|
664
+ if classifications.exists?
665
+ item_lines << classifications.where(classification_type: classification_type).pluck(:category).join('//')
666
+ else
667
+ item_lines << nil
668
+ end
669
+ end
569
670
  end
570
- }.join('//'),
571
- pub_date: date_of_publication,
572
- year_of_publication: year_of_publication,
573
- publication_place: publication_place,
574
- manifestation_created_at: created_at,
575
- manifestation_updated_at: updated_at,
576
- carrier_type: carrier_type.name,
577
- content_type: manifestation_content_type.name,
578
- frequency: frequency.name,
579
- language: language.name,
580
- isbn: identifier_contents(:isbn).join('//'),
581
- issn: identifier_contents(:issn).join('//'),
582
- volume_number: volume_number,
583
- volume_number_string: volume_number_string,
584
- edition: edition,
585
- edition_string: edition_string,
586
- issue_number: issue_number,
587
- issue_number_string: issue_number_string,
588
- serial_number: serial_number,
589
- extent: extent,
590
- start_page: start_page,
591
- end_page: end_page,
592
- dimensions: dimensions,
593
- height: height,
594
- width: width,
595
- depth: depth,
596
- price: price,
597
- access_address: access_address,
598
- manifestation_required_role: required_role.name,
599
- description: description,
600
- note: note
601
- }
602
-
603
- IdentifierType.find_each do |type|
604
- record[:"identifier:#{type.name.to_sym}"] = identifiers.where(identifier_type: type).pluck(:body).join('//')
605
- end
606
-
607
- series = series_statements.order(:position)
608
- record.merge!(
609
- series_statement_id: series.pluck(:id).join('//'),
610
- series_statement_original_title: series.pluck(:original_title).join('.//'),
611
- series_statement_title_subseries: series.pluck(:title_subseries).join('//'),
612
- series_statement_title_subseries_transcription: series.pluck(:title_subseries_transcription).join('//'),
613
- series_statement_title_transcription: series.pluck(:title_transcription).join('//'),
614
- series_statement_creator: series.pluck(:creator_string).join('//'),
615
- series_statement_volume_number: series.pluck(:volume_number_string).join('//'),
616
- series_statement_series_master: series.pluck(:series_master).join('//'),
617
- series_statement_root_manifestation_id: series.pluck(:root_manifestation_id).join('//'),
618
- series_statement_manifestation_id: series.pluck(:manifestation_id).join('//'),
619
- series_statement_position: series.pluck(:position).join('//'),
620
- series_statement_note: series.pluck(:note).join('//'),
621
- series_statement_created_at: series.pluck(:created_at).join('//'),
622
- series_statement_updated_at: series.pluck(:updated_at).join('//')
623
- )
624
671
 
625
- if ['Administrator', 'Librarian'].include?(role)
626
- record.merge!({
627
- memo: memo
628
- })
629
- ManifestationCustomProperty.order(:position).each do |custom_property|
630
- custom_value = manifestation_custom_values.find_by(manifestation_custom_property: custom_property)
631
- record[:"manifestation:#{custom_property.name}"] = custom_value&.value
672
+ item_lines << i.id
673
+ item_lines << i.item_identifier
674
+ item_lines << i.call_number
675
+ item_lines << i.note.try(:gsub, /\r?\n/, '\n')
676
+ case options[:role].to_sym
677
+ when :Administrator, :Librarian
678
+ item_lines << i.price
679
+ end
680
+ item_lines << i.acquired_at
681
+ item_lines << i.accept.try(:created_at)
682
+ case options[:role].to_sym
683
+ when :Administrator, :Librarian
684
+ item_lines << i.bookstore.try(:name)
685
+ item_lines << i.budget_type.try(:name)
686
+ if defined?(EnjuCirculation)
687
+ item_lines << Checkout.where(item_id: i.id).count
688
+ else
689
+ item_lines << ''
690
+ end
691
+ end
692
+ if defined?(EnjuCirculation)
693
+ item_lines << i.circulation_status.try(:name)
694
+ else
695
+ item_lines << ''
696
+ end
697
+ item_lines << i.shelf.name
698
+ item_lines << i.shelf.library.name
699
+ item_lines << i.created_at
700
+ item_lines << i.updated_at
701
+ case options[:role].to_sym
702
+ when :Administrator, :Librarian
703
+ if defined?(EnjuCirculation)
704
+ item_lines << i.use_restriction.try(:name)
705
+ else
706
+ item_lines << ''
707
+ end
708
+ end
709
+ lines << item_lines
632
710
  end
633
- end
634
-
635
- if defined?(EnjuSubject)
636
- SubjectHeadingType.find_each do |type|
637
- record[:"subject:#{type.name}"] = subjects.where(subject_heading_type: type).pluck(:term).join('//')
711
+ else
712
+ line = []
713
+ line << id
714
+ line << original_title
715
+ line << title_transcription
716
+ if creators.exists?
717
+ line << creators.pluck(:full_name).join("//")
718
+ else
719
+ line << nil
638
720
  end
639
- ClassificationType.find_each do |type|
640
- record[:"classification:#{type.name}"] = classifications.where(classification_type: type).pluck(:category).join('//')
721
+ if contributors.exists?
722
+ line << contributors.pluck(:full_name).join("//")
723
+ else
724
+ line << nil
725
+ end
726
+ if publishers.exists?
727
+ line << publishers.pluck(:full_name).join("//")
728
+ else
729
+ line << nil
730
+ end
731
+ line << pub_date
732
+ line << statement_of_responsibility
733
+ line << price
734
+ line << created_at
735
+ line << updated_at
736
+ line << manifestation_identifier
737
+ line << access_address
738
+ line << description.try(:gsub, /\r?\n/, '\n')
739
+ line << note.try(:gsub, /\r?\n/, '\n')
740
+ line << extent
741
+ line << dimensions
742
+ line << carrier_type.name
743
+ line << edition
744
+ line << edition_string
745
+ line << volume_number
746
+ line << volume_number_string
747
+ line << issue_number
748
+ line << issue_number_string
749
+ line << serial_number
750
+
751
+ IdentifierType.order(:position).pluck(:name).each do |identifier_type|
752
+ identifier_list = identifier_contents(identifier_type.to_sym)
753
+ if identifier_list
754
+ line << identifier_list.join("//")
755
+ else
756
+ line << nil
757
+ end
758
+ end
759
+ if defined?(EnjuSubject)
760
+ SubjectHeadingType.order(:position).each do |subject_heading_type|
761
+ if subjects.exists?
762
+ line << subjects.where(subject_heading_type: subject_heading_type).pluck(:term).join('//')
763
+ else
764
+ line << nil
765
+ end
766
+ end
767
+ ClassificationType.order(:position).each do |classification_type|
768
+ if classifications.exists?
769
+ line << classifications.where(classification_type: classification_type).pluck(:category).join('//')
770
+ else
771
+ line << nil
772
+ end
773
+ end
641
774
  end
642
- end
643
775
 
644
- if defined?(EnjuNdl)
645
- record["jpno"] = identifier_contents(:jpno).first
776
+ lines << line
646
777
  end
647
778
 
648
- if defined?(EnjuNii)
649
- record["ncid"] = identifier_contents(:ncid).first
779
+ if options[:format] == :txt
780
+ lines.map{|i| i.to_csv(col_sep: "\t")}.join
781
+ else
782
+ lines
650
783
  end
651
-
652
- record
653
784
  end
654
785
 
655
- # TSVでのエクスポート
656
- # @param [String] role 権限
657
- # @param [String] col_sep 区切り文字
658
- def self.export(role: 'Guest', col_sep: "\t")
659
- file = Tempfile.create('manifestation_export') do |f|
660
- f.write (Manifestation.csv_header(role: role) + Item.csv_header(role: role)).to_csv(col_sep: col_sep)
661
- Manifestation.find_each do |manifestation|
662
- if manifestation.items.exists?
663
- manifestation.items.each do |item|
664
- f.write (manifestation.to_hash(role: role).values + item.to_hash(role: role).values).to_csv(col_sep: col_sep)
665
- end
666
- else
667
- f.write manifestation.to_hash(role: role).values.to_csv(col_sep: col_sep)
668
- end
669
- end
670
-
671
- f.rewind
672
- f.read
786
+ def self.export(options = {format: :txt, role: :Guest})
787
+ file = ''
788
+ file += Manifestation.csv_header(options[:role], col_sep: "\t") if options[:format].to_sym == :txt
789
+ Manifestation.find_each do |manifestation|
790
+ file += manifestation.to_csv(options)
673
791
  end
674
-
675
792
  file
676
793
  end
677
794
 
@@ -691,18 +808,6 @@ class Manifestation < ApplicationRecord
691
808
  ]
692
809
  }.flatten
693
810
  end
694
-
695
- def set_custom_property(row)
696
- ManifestationCustomProperty.all.each do |property|
697
- if row[property]
698
- custom_value = ManifestationCustomValue.new(
699
- manifestation: self,
700
- manifestation_custom_property: property,
701
- value: row[property]
702
- )
703
- end
704
- end
705
- end
706
811
  end
707
812
 
708
813
  # == Schema Information
@@ -768,5 +873,4 @@ end
768
873
  # publication_place :text
769
874
  # extent :text
770
875
  # dimensions :text
771
- # memo :text
772
876
  #