hyrax 2.8.0 → 3.0.0.pre.rc2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (976) hide show
  1. checksums.yaml +4 -4
  2. data/.circleci/config.yml +52 -51
  3. data/.engine_cart.yml +40 -1
  4. data/.gitignore +4 -0
  5. data/.regen +1 -1
  6. data/.rubocop.yml +11 -30
  7. data/.rubocop_fixme.yml +37 -61
  8. data/CONTRIBUTING.md +183 -0
  9. data/Gemfile +3 -1
  10. data/README.md +14 -17
  11. data/Rakefile +7 -0
  12. data/app/actors/hyrax/actors/abstract_actor.rb +1 -0
  13. data/app/actors/hyrax/actors/active_fedora_to_valkyrie.rb +59 -0
  14. data/app/actors/hyrax/actors/add_to_work_actor.rb +42 -39
  15. data/app/actors/hyrax/actors/apply_order_actor.rb +38 -37
  16. data/app/actors/hyrax/actors/apply_permission_template_actor.rb +20 -19
  17. data/app/actors/hyrax/actors/attach_members_actor.rb +57 -41
  18. data/app/actors/hyrax/actors/base_actor.rb +73 -47
  19. data/app/actors/hyrax/actors/cleanup_file_sets_actor.rb +13 -12
  20. data/app/actors/hyrax/actors/cleanup_trophies_actor.rb +4 -3
  21. data/app/actors/hyrax/actors/collections_membership_actor.rb +91 -136
  22. data/app/actors/hyrax/actors/create_with_files_actor.rb +38 -27
  23. data/app/actors/hyrax/actors/create_with_files_ordered_members_actor.rb +3 -2
  24. data/app/actors/hyrax/actors/create_with_remote_files_actor.rb +50 -49
  25. data/app/actors/hyrax/actors/create_with_remote_files_ordered_members_actor.rb +1 -0
  26. data/app/actors/hyrax/actors/default_admin_set_actor.rb +20 -19
  27. data/app/actors/hyrax/actors/embargo_actor.rb +1 -0
  28. data/app/actors/hyrax/actors/environment.rb +9 -1
  29. data/app/actors/hyrax/actors/featured_work_actor.rb +8 -7
  30. data/app/actors/hyrax/actors/file_actor.rb +83 -16
  31. data/app/actors/hyrax/actors/file_set_actor.rb +117 -58
  32. data/app/actors/hyrax/actors/initialize_workflow_actor.rb +5 -4
  33. data/app/actors/hyrax/actors/interpret_visibility_actor.rb +155 -163
  34. data/app/actors/hyrax/actors/lease_actor.rb +1 -0
  35. data/app/actors/hyrax/actors/model_actor.rb +12 -5
  36. data/app/actors/hyrax/actors/null_actor.rb +12 -0
  37. data/app/actors/hyrax/actors/optimistic_lock_validator.rb +12 -11
  38. data/app/actors/hyrax/actors/ordered_members_actor.rb +1 -1
  39. data/app/actors/hyrax/actors/terminator.rb +1 -0
  40. data/app/actors/hyrax/actors/transactional_request.rb +9 -8
  41. data/app/actors/hyrax/actors/transfer_request_actor.rb +8 -7
  42. data/app/actors/hyrax/actors/valkyrie_to_active_fedora.rb +60 -0
  43. data/app/assets/images/unauthorized.png +0 -0
  44. data/app/assets/javascripts/hyrax.js +1 -0
  45. data/app/assets/javascripts/hyrax/admin/admin_set/visibility.es6 +57 -0
  46. data/app/assets/javascripts/hyrax/autocomplete.es6 +29 -0
  47. data/app/assets/javascripts/hyrax/batch_select_all.js +5 -0
  48. data/app/assets/javascripts/hyrax/collapse.js +91 -0
  49. data/app/assets/javascripts/hyrax/collections.js +5 -4
  50. data/app/assets/javascripts/hyrax/collections/editor.es6 +1 -6
  51. data/app/assets/javascripts/hyrax/editor.es6 +9 -10
  52. data/app/assets/javascripts/hyrax/editor/controlled_vocabulary.es6 +1 -1
  53. data/app/assets/javascripts/hyrax/file_manager/save_manager.es6 +6 -5
  54. data/app/assets/javascripts/hyrax/monkey_patch_turbolinks.js +36 -0
  55. data/app/assets/javascripts/hyrax/nav_safety.js +23 -5
  56. data/app/assets/javascripts/hyrax/proxy_rights.js +8 -0
  57. data/app/assets/stylesheets/fileupload/jquery.fileupload-ui.scss +1 -15
  58. data/app/assets/stylesheets/hyrax/_collections.scss +8 -20
  59. data/app/assets/stylesheets/hyrax/_featured.scss +4 -0
  60. data/app/assets/stylesheets/hyrax/_file-listing.scss +1 -2
  61. data/app/assets/stylesheets/hyrax/_file_sets.scss +27 -0
  62. data/app/assets/stylesheets/hyrax/_forms.scss +0 -2
  63. data/app/assets/stylesheets/hyrax/_header.scss +1 -1
  64. data/app/assets/stylesheets/hyrax/_home-page.scss +23 -7
  65. data/app/assets/stylesheets/hyrax/_hyrax.scss +10 -10
  66. data/app/assets/stylesheets/hyrax/_login_signup.scss +20 -0
  67. data/app/assets/stylesheets/hyrax/_settings.scss +2 -2
  68. data/app/assets/stylesheets/hyrax/_styles.scss +10 -0
  69. data/app/assets/stylesheets/hyrax/_users.scss +16 -0
  70. data/app/assets/stylesheets/hyrax/_viewer.scss +14 -3
  71. data/app/assets/stylesheets/hyrax/_work-show.scss +42 -5
  72. data/app/assets/stylesheets/hyrax/dashboard.scss +3 -3
  73. data/app/authorities/qa/authorities/collections.rb +8 -7
  74. data/app/authorities/qa/authorities/find_works.rb +4 -3
  75. data/app/builders/hyrax/bootstrap_breadcrumbs_builder.rb +5 -4
  76. data/app/builders/hyrax/form_builder.rb +1 -0
  77. data/app/builders/hyrax/manifest_helper.rb +2 -1
  78. data/app/channels/hyrax/application_cable/channel.rb +1 -0
  79. data/app/channels/hyrax/application_cable/connection.rb +16 -15
  80. data/app/channels/hyrax/notifications_channel.rb +1 -0
  81. data/app/connections/hyrax/clean_connection.rb +9 -8
  82. data/app/controllers/concerns/hyrax/admin/stats_behavior.rb +6 -5
  83. data/app/controllers/concerns/hyrax/admin/users_controller_behavior.rb +4 -3
  84. data/app/controllers/concerns/hyrax/api.rb +23 -20
  85. data/app/controllers/concerns/hyrax/breadcrumbs.rb +3 -0
  86. data/app/controllers/concerns/hyrax/breadcrumbs_for_collections.rb +4 -3
  87. data/app/controllers/concerns/hyrax/breadcrumbs_for_works.rb +22 -21
  88. data/app/controllers/concerns/hyrax/collections.rb +1 -0
  89. data/app/controllers/concerns/hyrax/collections/accepts_batches.rb +26 -25
  90. data/app/controllers/concerns/hyrax/collections_controller_behavior.rb +59 -58
  91. data/app/controllers/concerns/hyrax/controller.rb +57 -48
  92. data/app/controllers/concerns/hyrax/deny_access_override_behavior.rb +2 -1
  93. data/app/controllers/concerns/hyrax/embargoes_controller_behavior.rb +7 -4
  94. data/app/controllers/concerns/hyrax/leases_controller_behavior.rb +7 -3
  95. data/app/controllers/concerns/hyrax/local_file_downloads_controller_behavior.rb +69 -68
  96. data/app/controllers/concerns/hyrax/manages_embargoes.rb +1 -0
  97. data/app/controllers/concerns/hyrax/singular_subresource_controller.rb +1 -0
  98. data/app/controllers/concerns/hyrax/themed_layout_controller.rb +1 -0
  99. data/app/controllers/concerns/hyrax/works_controller_behavior.rb +242 -172
  100. data/app/controllers/hyrax/admin/admin_sets_controller.rb +50 -49
  101. data/app/controllers/hyrax/admin/appearances_controller.rb +7 -6
  102. data/app/controllers/hyrax/admin/collection_type_participants_controller.rb +1 -0
  103. data/app/controllers/hyrax/admin/collection_types_controller.rb +31 -32
  104. data/app/controllers/hyrax/admin/features_controller.rb +1 -0
  105. data/app/controllers/hyrax/admin/permission_template_accesses_controller.rb +47 -46
  106. data/app/controllers/hyrax/admin/permission_templates_controller.rb +63 -62
  107. data/app/controllers/hyrax/admin/stats_controller.rb +1 -0
  108. data/app/controllers/hyrax/admin/strategies_controller.rb +1 -0
  109. data/app/controllers/hyrax/admin/users_controller.rb +1 -0
  110. data/app/controllers/hyrax/admin/workflow_roles_controller.rb +4 -3
  111. data/app/controllers/hyrax/admin/workflows_controller.rb +4 -3
  112. data/app/controllers/hyrax/api/items_controller.rb +34 -33
  113. data/app/controllers/hyrax/api/zotero_controller.rb +39 -38
  114. data/app/controllers/hyrax/batch_edits_controller.rb +48 -54
  115. data/app/controllers/hyrax/batch_uploads_controller.rb +50 -49
  116. data/app/controllers/hyrax/citations_controller.rb +4 -3
  117. data/app/controllers/hyrax/collections_controller.rb +13 -12
  118. data/app/controllers/hyrax/contact_form_controller.rb +14 -10
  119. data/app/controllers/hyrax/content_blocks_controller.rb +13 -12
  120. data/app/controllers/hyrax/dashboard/collection_members_controller.rb +24 -23
  121. data/app/controllers/hyrax/dashboard/collections_controller.rb +226 -225
  122. data/app/controllers/hyrax/dashboard/nest_collections_controller.rb +29 -28
  123. data/app/controllers/hyrax/dashboard/profiles_controller.rb +27 -26
  124. data/app/controllers/hyrax/dashboard/works_controller.rb +8 -7
  125. data/app/controllers/hyrax/dashboard_controller.rb +10 -0
  126. data/app/controllers/hyrax/depositors_controller.rb +35 -27
  127. data/app/controllers/hyrax/downloads_controller.rb +50 -58
  128. data/app/controllers/hyrax/embargoes_controller.rb +1 -0
  129. data/app/controllers/hyrax/featured_work_lists_controller.rb +4 -3
  130. data/app/controllers/hyrax/featured_works_controller.rb +1 -0
  131. data/app/controllers/hyrax/file_sets_controller.rb +96 -85
  132. data/app/controllers/hyrax/fixity_checks_controller.rb +9 -8
  133. data/app/controllers/hyrax/homepage_controller.rb +19 -18
  134. data/app/controllers/hyrax/leases_controller.rb +1 -0
  135. data/app/controllers/hyrax/my/collections_controller.rb +16 -15
  136. data/app/controllers/hyrax/my/highlights_controller.rb +22 -21
  137. data/app/controllers/hyrax/my/shares_controller.rb +8 -7
  138. data/app/controllers/hyrax/my/works_controller.rb +16 -15
  139. data/app/controllers/hyrax/my_controller.rb +18 -17
  140. data/app/controllers/hyrax/notifications_controller.rb +4 -3
  141. data/app/controllers/hyrax/operations_controller.rb +1 -0
  142. data/app/controllers/hyrax/pages_controller.rb +17 -16
  143. data/app/controllers/hyrax/permissions_controller.rb +2 -1
  144. data/app/controllers/hyrax/resource_sync_controller.rb +23 -22
  145. data/app/controllers/hyrax/single_use_links_controller.rb +13 -12
  146. data/app/controllers/hyrax/single_use_links_viewer_controller.rb +45 -44
  147. data/app/controllers/hyrax/static_controller.rb +1 -0
  148. data/app/controllers/hyrax/stats_controller.rb +11 -13
  149. data/app/controllers/hyrax/transfers_controller.rb +14 -13
  150. data/app/controllers/hyrax/trophies_controller.rb +1 -0
  151. data/app/controllers/hyrax/uploads_controller.rb +1 -0
  152. data/app/controllers/hyrax/users_controller.rb +57 -36
  153. data/app/controllers/hyrax/workflow_actions_controller.rb +19 -18
  154. data/app/conversions/power_converters.rb +1 -0
  155. data/app/conversions/power_converters/polymorphic_type.rb +2 -0
  156. data/app/conversions/power_converters/sipity_action.rb +2 -0
  157. data/app/conversions/power_converters/sipity_action_name.rb +2 -0
  158. data/app/conversions/power_converters/sipity_agent.rb +3 -0
  159. data/app/conversions/power_converters/sipity_entity.rb +2 -0
  160. data/app/conversions/power_converters/sipity_role.rb +2 -0
  161. data/app/conversions/power_converters/sipity_workflow_id.rb +1 -0
  162. data/app/conversions/power_converters/sipity_workflow_state.rb +3 -0
  163. data/app/forms/hyrax/forms/admin/appearance.rb +20 -19
  164. data/app/forms/hyrax/forms/admin/collection_type_form.rb +12 -1
  165. data/app/forms/hyrax/forms/admin/collection_type_participant_form.rb +1 -0
  166. data/app/forms/hyrax/forms/admin_set_form.rb +4 -3
  167. data/app/forms/hyrax/forms/batch_edit_form.rb +18 -17
  168. data/app/forms/hyrax/forms/batch_upload_form.rb +1 -1
  169. data/app/forms/hyrax/forms/collection_form.rb +25 -22
  170. data/app/forms/hyrax/forms/dashboard/nest_collection_form.rb +23 -22
  171. data/app/forms/hyrax/forms/file_manager_form.rb +4 -3
  172. data/app/forms/hyrax/forms/file_set_edit_form.rb +2 -1
  173. data/app/forms/hyrax/forms/permission_template_form.rb +178 -176
  174. data/app/forms/hyrax/forms/resource_form.rb +190 -0
  175. data/app/forms/hyrax/forms/widgets/admin_set_embargo_period.rb +1 -0
  176. data/app/forms/hyrax/forms/widgets/admin_set_visibility.rb +1 -0
  177. data/app/forms/hyrax/forms/work_form.rb +22 -22
  178. data/app/forms/hyrax/forms/workflow_action_form.rb +12 -5
  179. data/app/forms/hyrax/forms/workflow_responsibility_form.rb +1 -4
  180. data/app/helpers/hyrax/ability_helper.rb +5 -4
  181. data/app/helpers/hyrax/batch_edits_helper.rb +1 -0
  182. data/app/helpers/hyrax/blacklight_override.rb +1 -0
  183. data/app/helpers/hyrax/charts_helper.rb +1 -0
  184. data/app/helpers/hyrax/citations_behavior.rb +1 -0
  185. data/app/helpers/hyrax/citations_behaviors/common_behavior.rb +1 -0
  186. data/app/helpers/hyrax/citations_behaviors/formatters.rb +1 -0
  187. data/app/helpers/hyrax/citations_behaviors/formatters/apa_formatter.rb +40 -38
  188. data/app/helpers/hyrax/citations_behaviors/formatters/chicago_formatter.rb +14 -14
  189. data/app/helpers/hyrax/citations_behaviors/formatters/mla_formatter.rb +10 -9
  190. data/app/helpers/hyrax/citations_behaviors/formatters/open_url_formatter.rb +1 -0
  191. data/app/helpers/hyrax/citations_behaviors/name_behavior.rb +5 -4
  192. data/app/helpers/hyrax/citations_behaviors/publication_behavior.rb +5 -5
  193. data/app/helpers/hyrax/citations_behaviors/title_behavior.rb +2 -1
  194. data/app/helpers/hyrax/collections_helper.rb +57 -7
  195. data/app/helpers/hyrax/contact_form_helper.rb +24 -0
  196. data/app/helpers/hyrax/content_block_helper.rb +1 -0
  197. data/app/helpers/hyrax/content_block_helper_behavior.rb +2 -1
  198. data/app/helpers/hyrax/dashboard_helper_behavior.rb +1 -0
  199. data/app/helpers/hyrax/embargo_helper.rb +21 -0
  200. data/app/helpers/hyrax/file_set_helper.rb +2 -1
  201. data/app/helpers/hyrax/hyrax_helper_behavior.rb +58 -49
  202. data/app/helpers/hyrax/iiif_helper.rb +9 -0
  203. data/app/helpers/hyrax/lease_helper.rb +21 -0
  204. data/app/helpers/hyrax/membership_helper.rb +48 -0
  205. data/app/helpers/hyrax/permission_levels_helper.rb +32 -0
  206. data/app/helpers/hyrax/permissions_helper.rb +8 -7
  207. data/app/helpers/hyrax/title_helper.rb +11 -5
  208. data/app/helpers/hyrax/trophy_helper.rb +1 -0
  209. data/app/helpers/hyrax/url_helper.rb +1 -0
  210. data/app/helpers/hyrax/work_form_helper.rb +48 -0
  211. data/app/indexers/concerns/hyrax/indexes_basic_metadata.rb +1 -0
  212. data/app/indexers/concerns/hyrax/indexes_linked_metadata.rb +1 -0
  213. data/app/indexers/hyrax/admin_set_indexer.rb +7 -1
  214. data/app/indexers/hyrax/basic_metadata_indexer.rb +37 -36
  215. data/app/indexers/hyrax/collection_indexer.rb +2 -1
  216. data/app/indexers/hyrax/collection_with_basic_metadata_indexer.rb +1 -0
  217. data/app/indexers/hyrax/deep_indexing_service.rb +65 -73
  218. data/app/indexers/hyrax/file_set_indexer.rb +21 -24
  219. data/app/indexers/hyrax/indexes_workflow.rb +7 -8
  220. data/app/indexers/hyrax/permission_indexer.rb +25 -0
  221. data/app/indexers/hyrax/repository_reindexer.rb +1 -0
  222. data/app/indexers/hyrax/resource_indexer.rb +13 -0
  223. data/app/indexers/hyrax/valkyrie_collection_indexer.rb +19 -0
  224. data/app/indexers/hyrax/valkyrie_indexer.rb +87 -0
  225. data/app/indexers/hyrax/valkyrie_work_indexer.rb +12 -0
  226. data/app/indexers/hyrax/visibility_indexer.rb +26 -0
  227. data/app/indexers/hyrax/work_indexer.rb +2 -1
  228. data/app/inputs/controlled_vocabulary_input.rb +62 -62
  229. data/app/inputs/multi_value_select_input.rb +31 -30
  230. data/app/inputs/multifile_input.rb +1 -0
  231. data/app/jobs/attach_files_to_work_job.rb +78 -21
  232. data/app/jobs/attach_files_to_work_with_ordered_members_job.rb +19 -18
  233. data/app/jobs/batch_create_job.rb +15 -14
  234. data/app/jobs/characterize_job.rb +17 -2
  235. data/app/jobs/concerns/hyrax/members_permission_job_behavior.rb +28 -0
  236. data/app/jobs/concerns/hyrax/permission_job_behavior.rb +23 -0
  237. data/app/jobs/content_delete_event_job.rb +1 -0
  238. data/app/jobs/content_deposit_event_job.rb +1 -0
  239. data/app/jobs/content_depositor_change_event_job.rb +1 -0
  240. data/app/jobs/content_event_job.rb +1 -0
  241. data/app/jobs/content_new_version_event_job.rb +1 -0
  242. data/app/jobs/content_restored_version_event_job.rb +1 -0
  243. data/app/jobs/content_update_event_job.rb +1 -0
  244. data/app/jobs/create_derivatives_job.rb +1 -0
  245. data/app/jobs/create_work_job.rb +4 -3
  246. data/app/jobs/event_job.rb +3 -1
  247. data/app/jobs/file_set_attached_event_job.rb +16 -15
  248. data/app/jobs/fixity_check_job.rb +28 -29
  249. data/app/jobs/hyrax/application_job.rb +6 -0
  250. data/app/jobs/hyrax/grant_edit_job.rb +13 -8
  251. data/app/jobs/hyrax/grant_edit_to_members_job.rb +5 -13
  252. data/app/jobs/hyrax/grant_read_job.rb +13 -8
  253. data/app/jobs/hyrax/grant_read_to_members_job.rb +5 -13
  254. data/app/jobs/hyrax/revoke_edit_from_members_job.rb +6 -13
  255. data/app/jobs/hyrax/revoke_edit_job.rb +13 -8
  256. data/app/jobs/iiif_manifest_cache_prewarm_job.rb +16 -0
  257. data/app/jobs/import_export_job.rb +14 -13
  258. data/app/jobs/import_url_job.rb +74 -63
  259. data/app/jobs/ingest_job.rb +1 -0
  260. data/app/jobs/ingest_local_file_job.rb +4 -3
  261. data/app/jobs/inherit_permissions_job.rb +55 -4
  262. data/app/jobs/resolrize_job.rb +1 -0
  263. data/app/jobs/stream_notifications_job.rb +1 -0
  264. data/app/jobs/user_edit_profile_event_job.rb +1 -0
  265. data/app/jobs/visibility_copy_job.rb +4 -17
  266. data/app/mailers/hyrax/contact_mailer.rb +2 -1
  267. data/app/models/admin_set.rb +44 -49
  268. data/app/models/batch_upload_item.rb +1 -0
  269. data/app/models/checksum_audit_log.rb +1 -0
  270. data/app/models/collection_branding_info.rb +1 -0
  271. data/app/models/concerns/hyrax/ability.rb +144 -132
  272. data/app/models/concerns/hyrax/ability/admin_set_ability.rb +1 -0
  273. data/app/models/concerns/hyrax/ability/collection_ability.rb +12 -11
  274. data/app/models/concerns/hyrax/ability/collection_type_ability.rb +1 -0
  275. data/app/models/concerns/hyrax/ability/permission_template_ability.rb +1 -0
  276. data/app/models/concerns/hyrax/ability/solr_document_ability.rb +1 -0
  277. data/app/models/concerns/hyrax/basic_metadata.rb +9 -2
  278. data/app/models/concerns/hyrax/collection_behavior.rb +52 -33
  279. data/app/models/concerns/hyrax/collection_nesting.rb +5 -4
  280. data/app/models/concerns/hyrax/core_metadata.rb +1 -0
  281. data/app/models/concerns/hyrax/file_set/belongs_to_works.rb +2 -1
  282. data/app/models/concerns/hyrax/file_set/characterization.rb +11 -3
  283. data/app/models/concerns/hyrax/file_set/derivatives.rb +5 -4
  284. data/app/models/concerns/hyrax/file_set/indexing.rb +2 -1
  285. data/app/models/concerns/hyrax/file_set/querying.rb +3 -2
  286. data/app/models/concerns/hyrax/file_set_behavior.rb +2 -1
  287. data/app/models/concerns/hyrax/has_rendering.rb +1 -0
  288. data/app/models/concerns/hyrax/has_representative.rb +1 -0
  289. data/app/models/concerns/hyrax/human_readable_type.rb +4 -11
  290. data/app/models/concerns/hyrax/in_admin_set.rb +4 -0
  291. data/app/models/concerns/hyrax/naming.rb +11 -2
  292. data/app/models/concerns/hyrax/nested_works.rb +1 -0
  293. data/app/models/concerns/hyrax/permissions.rb +1 -0
  294. data/app/models/concerns/hyrax/permissions/readable.rb +1 -0
  295. data/app/models/concerns/hyrax/permissions/writable.rb +1 -0
  296. data/app/models/concerns/hyrax/proxy_deposit.rb +1 -0
  297. data/app/models/concerns/hyrax/serializers.rb +2 -1
  298. data/app/models/concerns/hyrax/solr_document/characterization.rb +23 -22
  299. data/app/models/concerns/hyrax/solr_document/export.rb +24 -23
  300. data/app/models/concerns/hyrax/solr_document/metadata.rb +31 -31
  301. data/app/models/concerns/hyrax/solr_document/ordered_members.rb +44 -0
  302. data/app/models/concerns/hyrax/solr_document_behavior.rb +19 -12
  303. data/app/models/concerns/hyrax/suppressible.rb +6 -4
  304. data/app/models/concerns/hyrax/user.rb +12 -3
  305. data/app/models/concerns/hyrax/user_usage_stats.rb +1 -0
  306. data/app/models/concerns/hyrax/virus_check.rb +21 -0
  307. data/app/models/concerns/hyrax/with_events.rb +17 -7
  308. data/app/models/concerns/hyrax/with_file_sets.rb +6 -0
  309. data/app/models/concerns/hyrax/work_behavior.rb +5 -9
  310. data/app/models/concerns/hyrax/works/metadata.rb +1 -0
  311. data/app/models/content_block.rb +8 -1
  312. data/app/models/featured_work.rb +1 -0
  313. data/app/models/featured_work_list.rb +17 -16
  314. data/app/models/file_download_stat.rb +3 -1
  315. data/app/models/file_view_stat.rb +1 -0
  316. data/app/models/hyrax/access_control.rb +44 -0
  317. data/app/models/hyrax/active_job_proxy.rb +43 -0
  318. data/app/models/hyrax/administrative_set.rb +12 -0
  319. data/app/models/hyrax/avatar_validator.rb +1 -0
  320. data/app/models/hyrax/base.rb +18 -0
  321. data/app/models/hyrax/batch_create_operation.rb +3 -2
  322. data/app/models/hyrax/change_set.rb +45 -0
  323. data/app/models/hyrax/collection_type.rb +63 -49
  324. data/app/models/hyrax/collection_type_participant.rb +6 -5
  325. data/app/models/hyrax/contact_form.rb +1 -0
  326. data/app/models/hyrax/download.rb +1 -0
  327. data/app/models/hyrax/embargo.rb +21 -0
  328. data/app/models/hyrax/event.rb +30 -0
  329. data/app/models/hyrax/feature.rb +1 -0
  330. data/app/models/hyrax/file_metadata.rb +147 -0
  331. data/app/models/hyrax/file_set.rb +28 -0
  332. data/app/models/hyrax/group.rb +13 -6
  333. data/app/models/hyrax/lease.rb +21 -0
  334. data/app/models/hyrax/operation.rb +5 -4
  335. data/app/models/hyrax/orcid_validator.rb +13 -5
  336. data/app/models/hyrax/pageview.rb +1 -0
  337. data/app/models/hyrax/pcdm_collection.rb +22 -0
  338. data/app/models/hyrax/permission.rb +19 -0
  339. data/app/models/hyrax/permission_template.rb +42 -37
  340. data/app/models/hyrax/resource.rb +116 -0
  341. data/app/models/hyrax/statistic.rb +22 -17
  342. data/app/models/hyrax/uploaded_file.rb +11 -0
  343. data/app/models/hyrax/version_committer.rb +1 -0
  344. data/app/models/hyrax/virus_scanner.rb +57 -0
  345. data/app/models/hyrax/work.rb +30 -0
  346. data/app/models/hyrax/workflow_action_info.rb +3 -2
  347. data/app/models/job_io_wrapper.rb +47 -31
  348. data/app/models/proxy_deposit_request.rb +41 -33
  349. data/app/models/proxy_deposit_rights.rb +1 -0
  350. data/app/models/single_use_link.rb +21 -13
  351. data/app/models/sipity.rb +102 -0
  352. data/app/models/sipity/agent.rb +3 -3
  353. data/app/models/sipity/comment.rb +1 -0
  354. data/app/models/sipity/entity.rb +4 -3
  355. data/app/models/sipity/entity_specific_responsibility.rb +1 -0
  356. data/app/models/sipity/method.rb +1 -0
  357. data/app/models/sipity/notifiable_context.rb +2 -1
  358. data/app/models/sipity/notification.rb +2 -3
  359. data/app/models/sipity/notification_recipient.rb +1 -0
  360. data/app/models/sipity/role.rb +4 -4
  361. data/app/models/sipity/workflow.rb +19 -18
  362. data/app/models/sipity/workflow_action.rb +24 -0
  363. data/app/models/sipity/workflow_responsibility.rb +1 -0
  364. data/app/models/sipity/workflow_role.rb +1 -0
  365. data/app/models/sipity/workflow_state.rb +1 -0
  366. data/app/models/sipity/workflow_state_action.rb +1 -0
  367. data/app/models/sipity/workflow_state_action_permission.rb +1 -0
  368. data/app/models/solr_hit.rb +24 -0
  369. data/app/models/trophy.rb +1 -0
  370. data/app/models/user_mailbox.rb +15 -14
  371. data/app/models/user_stat.rb +1 -0
  372. data/app/models/vocab/fedora_resource_status.rb +5 -4
  373. data/app/models/work_view_stat.rb +1 -0
  374. data/app/presenters/hyrax/admin/dashboard_presenter.rb +1 -0
  375. data/app/presenters/hyrax/admin/repository_growth_presenter.rb +9 -8
  376. data/app/presenters/hyrax/admin/repository_object_presenter.rb +19 -18
  377. data/app/presenters/hyrax/admin/user_activity_presenter.rb +9 -8
  378. data/app/presenters/hyrax/admin/users_presenter.rb +5 -4
  379. data/app/presenters/hyrax/admin/workflow_role_presenter.rb +8 -7
  380. data/app/presenters/hyrax/admin/workflow_roles_presenter.rb +1 -0
  381. data/app/presenters/hyrax/admin_set_options_presenter.rb +37 -31
  382. data/app/presenters/hyrax/admin_set_presenter.rb +2 -1
  383. data/app/presenters/hyrax/admin_stats_presenter.rb +7 -6
  384. data/app/presenters/hyrax/characterization_behavior.rb +15 -14
  385. data/app/presenters/hyrax/collapsable_section_presenter.rb +24 -24
  386. data/app/presenters/hyrax/collection_presenter.rb +4 -3
  387. data/app/presenters/hyrax/composite_presenter_factory.rb +1 -0
  388. data/app/presenters/hyrax/dashboard/user_presenter.rb +11 -10
  389. data/app/presenters/hyrax/displays_image.rb +54 -35
  390. data/app/presenters/hyrax/embargo_presenter.rb +1 -0
  391. data/app/presenters/hyrax/file_set_presenter.rb +13 -17
  392. data/app/presenters/hyrax/file_usage.rb +7 -6
  393. data/app/presenters/hyrax/fixity_status_presenter.rb +49 -48
  394. data/app/presenters/hyrax/homepage_presenter.rb +5 -4
  395. data/app/presenters/hyrax/iiif_manifest_presenter.rb +237 -0
  396. data/app/presenters/hyrax/inspect_work_presenter.rb +18 -17
  397. data/app/presenters/hyrax/lease_presenter.rb +1 -0
  398. data/app/presenters/hyrax/member_presenter_factory.rb +21 -26
  399. data/app/presenters/hyrax/menu_presenter.rb +3 -2
  400. data/app/presenters/hyrax/model_icon.rb +1 -0
  401. data/app/presenters/hyrax/model_proxy.rb +13 -9
  402. data/app/presenters/hyrax/page_title_decorator.rb +30 -0
  403. data/app/presenters/hyrax/permission_badge.rb +14 -13
  404. data/app/presenters/hyrax/presenter_factory.rb +11 -23
  405. data/app/presenters/hyrax/presenter_renderer.rb +30 -22
  406. data/app/presenters/hyrax/presents_attributes.rb +22 -21
  407. data/app/presenters/hyrax/select_collection_type_list_presenter.rb +1 -0
  408. data/app/presenters/hyrax/select_collection_type_presenter.rb +1 -0
  409. data/app/presenters/hyrax/select_type_list_presenter.rb +4 -2
  410. data/app/presenters/hyrax/select_type_presenter.rb +17 -16
  411. data/app/presenters/hyrax/single_use_link_presenter.rb +9 -8
  412. data/app/presenters/hyrax/stats_usage_presenter.rb +28 -27
  413. data/app/presenters/hyrax/transfers_presenter.rb +9 -8
  414. data/app/presenters/hyrax/trophy_presenter.rb +2 -1
  415. data/app/presenters/hyrax/twitter_presenter.rb +1 -0
  416. data/app/presenters/hyrax/user_profile_presenter.rb +1 -0
  417. data/app/presenters/hyrax/version_list_presenter.rb +7 -6
  418. data/app/presenters/hyrax/version_presenter.rb +1 -0
  419. data/app/presenters/hyrax/work_show_presenter.rb +69 -69
  420. data/app/presenters/hyrax/work_usage.rb +4 -3
  421. data/app/presenters/hyrax/workflow_presenter.rb +10 -9
  422. data/app/renderers/hyrax/renderers.rb +1 -0
  423. data/app/renderers/hyrax/renderers/attribute_renderer.rb +38 -34
  424. data/app/renderers/hyrax/renderers/configured_microdata.rb +4 -3
  425. data/app/renderers/hyrax/renderers/date_attribute_renderer.rb +4 -3
  426. data/app/renderers/hyrax/renderers/external_link_attribute_renderer.rb +5 -4
  427. data/app/renderers/hyrax/renderers/faceted_attribute_renderer.rb +10 -9
  428. data/app/renderers/hyrax/renderers/license_attribute_renderer.rb +15 -14
  429. data/app/renderers/hyrax/renderers/linked_attribute_renderer.rb +12 -11
  430. data/app/renderers/hyrax/renderers/rights_statement_attribute_renderer.rb +16 -15
  431. data/app/search_builders/hyrax/abstract_type_relation.rb +1 -0
  432. data/app/search_builders/hyrax/admin_admin_set_member_search_builder.rb +3 -2
  433. data/app/search_builders/hyrax/admin_set_search_builder.rb +8 -7
  434. data/app/search_builders/hyrax/catalog_search_builder.rb +48 -19
  435. data/app/search_builders/hyrax/collection_member_search_builder.rb +9 -9
  436. data/app/search_builders/hyrax/collection_search_builder.rb +14 -13
  437. data/app/search_builders/hyrax/dashboard/collections_search_builder.rb +6 -5
  438. data/app/search_builders/hyrax/dashboard/managed_search_filters.rb +1 -0
  439. data/app/search_builders/hyrax/dashboard/nested_collections_search_builder.rb +69 -68
  440. data/app/search_builders/hyrax/dashboard/works_search_builder.rb +1 -0
  441. data/app/search_builders/hyrax/deactivated_embargo_search_builder.rb +1 -0
  442. data/app/search_builders/hyrax/deactivated_lease_search_builder.rb +1 -0
  443. data/app/search_builders/hyrax/deposit_search_builder.rb +5 -4
  444. data/app/search_builders/hyrax/embargo_search_builder.rb +1 -0
  445. data/app/search_builders/hyrax/expired_embargo_search_builder.rb +1 -0
  446. data/app/search_builders/hyrax/expired_lease_search_builder.rb +1 -0
  447. data/app/search_builders/hyrax/exposed_models_relation.rb +2 -1
  448. data/app/search_builders/hyrax/file_set_search_builder.rb +1 -0
  449. data/app/search_builders/hyrax/filter_by_type.rb +40 -40
  450. data/app/search_builders/hyrax/filter_suppressed.rb +1 -0
  451. data/app/search_builders/hyrax/filter_suppressed_with_roles.rb +26 -19
  452. data/app/search_builders/hyrax/homepage_search_builder.rb +1 -0
  453. data/app/search_builders/hyrax/lease_search_builder.rb +1 -0
  454. data/app/search_builders/hyrax/member_with_files_search_builder.rb +4 -3
  455. data/app/search_builders/hyrax/my/collections_search_builder.rb +1 -0
  456. data/app/search_builders/hyrax/my/find_works_search_builder.rb +6 -9
  457. data/app/search_builders/hyrax/my/highlights_search_builder.rb +2 -3
  458. data/app/search_builders/hyrax/my/search_builder.rb +1 -0
  459. data/app/search_builders/hyrax/my/search_builder_behavior.rb +1 -0
  460. data/app/search_builders/hyrax/my/shares_search_builder.rb +1 -0
  461. data/app/search_builders/hyrax/my/works_search_builder.rb +1 -0
  462. data/app/search_builders/hyrax/nested_collections_parent_search_builder.rb +2 -1
  463. data/app/search_builders/hyrax/parent_collection_search_builder.rb +2 -1
  464. data/app/search_builders/hyrax/search_builder.rb +1 -0
  465. data/app/search_builders/hyrax/search_filters.rb +9 -8
  466. data/app/search_builders/hyrax/single_admin_set_search_builder.rb +1 -0
  467. data/app/search_builders/hyrax/single_collection_search_builder.rb +1 -0
  468. data/app/search_builders/hyrax/single_result.rb +1 -0
  469. data/app/search_builders/hyrax/single_use_link_search_builder.rb +1 -0
  470. data/app/search_builders/hyrax/stats/work_status_search_builder.rb +4 -3
  471. data/app/search_builders/hyrax/work_relation.rb +1 -0
  472. data/app/search_builders/hyrax/work_search_builder.rb +1 -0
  473. data/app/search_builders/hyrax/works_search_builder.rb +1 -0
  474. data/app/services/hyrax/abstract_message_service.rb +4 -3
  475. data/app/services/hyrax/access_control_list.rb +218 -0
  476. data/app/services/hyrax/adapters/nesting_index_adapter.rb +12 -11
  477. data/app/services/hyrax/admin_set_create_service.rb +50 -49
  478. data/app/services/hyrax/admin_set_member_service.rb +14 -13
  479. data/app/services/hyrax/admin_set_service.rb +18 -26
  480. data/app/services/hyrax/analytics.rb +7 -6
  481. data/app/services/hyrax/batch_create_failure_service.rb +3 -2
  482. data/app/services/hyrax/batch_create_success_service.rb +3 -2
  483. data/app/services/hyrax/caching_iiif_manifest_builder.rb +57 -0
  484. data/app/services/hyrax/change_content_depositor_service.rb +33 -1
  485. data/app/services/hyrax/characterization/file_set_description.rb +45 -0
  486. data/app/services/hyrax/characterization/model_wrapper.rb +0 -0
  487. data/app/services/hyrax/child_types.rb +40 -0
  488. data/app/services/hyrax/collection_member_service.rb +1 -0
  489. data/app/services/hyrax/collection_types/create_service.rb +1 -0
  490. data/app/services/hyrax/collection_types/permissions_service.rb +9 -5
  491. data/app/services/hyrax/collections/collection_member_service.rb +43 -42
  492. data/app/services/hyrax/collections/managed_collections_service.rb +1 -0
  493. data/app/services/hyrax/collections/migration_service.rb +6 -5
  494. data/app/services/hyrax/collections/nested_collection_persistence_service.rb +3 -2
  495. data/app/services/hyrax/collections/nested_collection_query_service.rb +11 -10
  496. data/app/services/hyrax/collections/permissions_create_service.rb +3 -2
  497. data/app/services/hyrax/collections/permissions_service.rb +3 -2
  498. data/app/services/hyrax/collections/search_service.rb +1 -0
  499. data/app/services/hyrax/collections_service.rb +6 -5
  500. data/app/services/hyrax/contextual_path.rb +1 -0
  501. data/app/services/hyrax/curation_concern.rb +1 -0
  502. data/app/services/hyrax/custom_queries/find_access_control.rb +28 -0
  503. data/app/services/hyrax/custom_queries/find_by_collection_type.rb +0 -0
  504. data/app/services/hyrax/custom_queries/find_collections_by_type.rb +38 -0
  505. data/app/services/hyrax/custom_queries/find_file_metadata.rb +72 -0
  506. data/app/services/hyrax/custom_queries/find_many_by_alternate_ids.rb +33 -0
  507. data/app/services/hyrax/custom_queries/navigators/child_collections_navigator.rb +35 -0
  508. data/app/services/hyrax/custom_queries/navigators/child_filesets_navigator.rb +34 -0
  509. data/app/services/hyrax/custom_queries/navigators/child_works_navigator.rb +38 -0
  510. data/app/services/hyrax/custom_queries/navigators/collection_members.rb +47 -0
  511. data/app/services/hyrax/custom_queries/navigators/find_files.rb +88 -0
  512. data/app/services/hyrax/database_migrator.rb +13 -13
  513. data/app/services/hyrax/default_middleware_stack.rb +1 -6
  514. data/app/services/hyrax/derivative_path.rb +24 -23
  515. data/app/services/hyrax/derivative_service.rb +1 -0
  516. data/app/services/hyrax/embargo_manager.rb +204 -0
  517. data/app/services/hyrax/embargo_service.rb +4 -3
  518. data/app/services/hyrax/file_set_csv_service.rb +2 -0
  519. data/app/services/hyrax/file_set_derivatives_service.rb +61 -60
  520. data/app/services/hyrax/file_set_fixity_check_service.rb +39 -45
  521. data/app/services/hyrax/file_set_visibility_propagator.rb +41 -0
  522. data/app/services/hyrax/fixity/active_fedora_fixity_service.rb +20 -0
  523. data/app/services/hyrax/fixity/missing_content_error.rb +9 -0
  524. data/app/services/hyrax/fixity_check_failure_service.rb +3 -2
  525. data/app/services/hyrax/form_factory.rb +29 -0
  526. data/app/services/hyrax/form_metadata_service.rb +1 -0
  527. data/app/services/hyrax/graph_exporter.rb +54 -53
  528. data/app/services/hyrax/identifier/builder.rb +45 -0
  529. data/app/services/hyrax/identifier/dispatcher.rb +61 -0
  530. data/app/services/hyrax/identifier/registrar.rb +41 -0
  531. data/app/services/hyrax/iiif_authorization_service.rb +4 -3
  532. data/app/services/hyrax/import_url_failure_service.rb +2 -1
  533. data/app/services/hyrax/indexes_thumbnails.rb +2 -1
  534. data/app/services/hyrax/institution.rb +1 -0
  535. data/app/services/hyrax/lease_manager.rb +126 -0
  536. data/app/services/hyrax/lease_service.rb +4 -4
  537. data/app/services/hyrax/license_service.rb +1 -0
  538. data/app/services/hyrax/list_source_exporter.rb +17 -16
  539. data/app/services/hyrax/listeners/acl_index_listener.rb +21 -0
  540. data/app/services/hyrax/listeners/batch_notification_listener.rb +26 -0
  541. data/app/services/hyrax/listeners/file_set_lifecycle_listener.rb +22 -0
  542. data/app/services/hyrax/listeners/file_set_lifecycle_notification_listener.rb +34 -0
  543. data/app/services/hyrax/listeners/metadata_index_listener.rb +23 -0
  544. data/app/services/hyrax/listeners/object_lifecycle_listener.rb +27 -0
  545. data/app/services/hyrax/local_file_service.rb +1 -0
  546. data/app/services/hyrax/lock_manager.rb +1 -0
  547. data/app/services/hyrax/lockable.rb +1 -0
  548. data/app/services/hyrax/manifest_builder_service.rb +88 -0
  549. data/app/services/hyrax/messenger_service.rb +1 -0
  550. data/app/services/hyrax/microdata.rb +22 -21
  551. data/app/services/hyrax/multiple_membership_checker.rb +24 -23
  552. data/app/services/hyrax/noid.rb +4 -3
  553. data/app/services/hyrax/permission_manager.rb +199 -0
  554. data/app/services/hyrax/persist_derivatives.rb +1 -0
  555. data/app/services/hyrax/persist_directly_contained_output_file_service.rb +2 -1
  556. data/app/services/hyrax/qa_select_service.rb +2 -1
  557. data/app/services/hyrax/query_service.rb +0 -0
  558. data/app/services/hyrax/quick_classification_query.rb +21 -9
  559. data/app/services/hyrax/repository_fixity_check_service.rb +1 -0
  560. data/app/services/hyrax/resource_status.rb +60 -0
  561. data/app/services/hyrax/resource_types_service.rb +1 -0
  562. data/app/services/hyrax/resource_visibility_propagator.rb +52 -0
  563. data/app/services/hyrax/restriction_service.rb +14 -13
  564. data/app/services/hyrax/rights_statement_service.rb +1 -0
  565. data/app/services/hyrax/simple_schema_loader.rb +152 -0
  566. data/app/services/hyrax/solr_query_builder_service.rb +72 -0
  567. data/app/services/hyrax/solr_service.rb +154 -0
  568. data/app/services/hyrax/statistics/collections/over_time.rb +4 -3
  569. data/app/services/hyrax/statistics/depositors/summary.rb +24 -23
  570. data/app/services/hyrax/statistics/file_sets/by_format.rb +5 -4
  571. data/app/services/hyrax/statistics/over_time.rb +17 -16
  572. data/app/services/hyrax/statistics/query_service.rb +7 -6
  573. data/app/services/hyrax/statistics/system_stats.rb +9 -8
  574. data/app/services/hyrax/statistics/term_query.rb +8 -12
  575. data/app/services/hyrax/statistics/users/over_time.rb +8 -7
  576. data/app/services/hyrax/statistics/works/by_depositor.rb +4 -3
  577. data/app/services/hyrax/statistics/works/by_resource_type.rb +4 -3
  578. data/app/services/hyrax/statistics/works/count.rb +12 -11
  579. data/app/services/hyrax/statistics/works/over_time.rb +4 -3
  580. data/app/services/hyrax/thumbnail_path_service.rb +33 -31
  581. data/app/services/hyrax/time_service.rb +1 -0
  582. data/app/services/hyrax/user_stat_importer.rb +83 -82
  583. data/app/services/hyrax/versioning_service.rb +75 -19
  584. data/app/services/hyrax/virus_checker_service.rb +53 -0
  585. data/app/services/hyrax/visibility_intention.rb +78 -0
  586. data/app/services/hyrax/visibility_intention_applicator.rb +43 -0
  587. data/app/services/hyrax/visibility_map.rb +65 -0
  588. data/app/services/hyrax/visibility_propagator.rb +20 -0
  589. data/app/services/hyrax/visibility_reader.rb +47 -0
  590. data/app/services/hyrax/visibility_writer.rb +50 -0
  591. data/app/services/hyrax/work_form_service.rb +3 -0
  592. data/app/services/hyrax/work_query_service.rb +14 -13
  593. data/app/services/hyrax/work_thumbnail_path_service.rb +1 -0
  594. data/app/services/hyrax/workflow/abstract_notification.rb +18 -17
  595. data/app/services/hyrax/workflow/action_taken_service.rb +1 -0
  596. data/app/services/hyrax/workflow/activate_object.rb +1 -0
  597. data/app/services/hyrax/workflow/changes_required_notification.rb +13 -10
  598. data/app/services/hyrax/workflow/deactivate_object.rb +1 -0
  599. data/app/services/hyrax/workflow/deposited_notification.rb +12 -10
  600. data/app/services/hyrax/workflow/grant_edit_to_depositor.rb +1 -0
  601. data/app/services/hyrax/workflow/grant_read_to_depositor.rb +1 -0
  602. data/app/services/hyrax/workflow/invalid_state_removal_exception.rb +1 -0
  603. data/app/services/hyrax/workflow/method_generator.rb +18 -17
  604. data/app/services/hyrax/workflow/notification_configuration_parameter.rb +1 -0
  605. data/app/services/hyrax/workflow/notification_generator.rb +26 -25
  606. data/app/services/hyrax/workflow/notification_service.rb +1 -0
  607. data/app/services/hyrax/workflow/pending_review_notification.rb +12 -9
  608. data/app/services/hyrax/workflow/permission_generator.rb +41 -40
  609. data/app/services/hyrax/workflow/permission_query.rb +31 -18
  610. data/app/services/hyrax/workflow/revoke_edit_from_depositor.rb +1 -0
  611. data/app/services/hyrax/workflow/sipity_actions_generator.rb +47 -46
  612. data/app/services/hyrax/workflow/state_machine_generator.rb +53 -52
  613. data/app/services/hyrax/workflow/status_list_service.rb +27 -26
  614. data/app/services/hyrax/workflow/workflow_action_service.rb +29 -28
  615. data/app/services/hyrax/workflow/workflow_factory.rb +33 -27
  616. data/app/services/hyrax/workflow/workflow_importer.rb +58 -44
  617. data/app/services/hyrax/workflow/workflow_permissions_generator.rb +13 -12
  618. data/app/services/hyrax/workflow/workflow_schema.rb +28 -94
  619. data/app/services/hyrax/working_directory.rb +17 -16
  620. data/app/services/hyrax/works/managed_works_service.rb +1 -0
  621. data/app/services/hyrax/works/migration_service.rb +34 -0
  622. data/app/strategies/hyrax/strategies/yaml_strategy.rb +13 -12
  623. data/app/uploaders/hyrax/avatar_uploader.rb +1 -0
  624. data/app/uploaders/hyrax/uploaded_file_uploader.rb +7 -6
  625. data/app/validators/hyrax/has_one_title_validator.rb +1 -0
  626. data/app/values/hyrax/chart_data.rb +14 -13
  627. data/app/views/_masthead.html.erb +3 -2
  628. data/app/views/catalog/_index_list_default.html.erb +3 -3
  629. data/app/views/hyrax/admin/admin_sets/_form.html.erb +6 -5
  630. data/app/views/hyrax/admin/admin_sets/_form_participant_table.html.erb +2 -2
  631. data/app/views/hyrax/admin/admin_sets/_form_participants.html.erb +57 -52
  632. data/app/views/hyrax/admin/admin_sets/_form_visibility.html.erb +5 -4
  633. data/app/views/hyrax/admin/admin_sets/_form_workflow.erb +1 -1
  634. data/app/views/hyrax/admin/admin_sets/_show_actions.html.erb +3 -2
  635. data/app/views/hyrax/admin/admin_sets/index.json.jbuilder +1 -0
  636. data/app/views/hyrax/base/_attribute_rows.html.erb +4 -1
  637. data/app/views/hyrax/base/_attributes.html.erb +3 -3
  638. data/app/views/hyrax/base/_citations.html.erb +4 -4
  639. data/app/views/hyrax/base/_file_manager_actions.html.erb +2 -2
  640. data/app/views/hyrax/base/_file_manager_member_resource_options.html.erb +2 -2
  641. data/app/views/hyrax/base/_form.html.erb +2 -2
  642. data/app/views/hyrax/base/_form_child_work_relationships.html.erb +2 -2
  643. data/app/views/hyrax/base/_form_files.html.erb +13 -11
  644. data/app/views/hyrax/base/_form_member_of_collections.html.erb +2 -2
  645. data/app/views/hyrax/base/_form_permission.html.erb +3 -4
  646. data/app/views/hyrax/base/_form_progress.html.erb +6 -2
  647. data/app/views/hyrax/base/_form_relationships.html.erb +1 -1
  648. data/app/views/hyrax/base/_form_share.html.erb +17 -16
  649. data/app/views/hyrax/base/_form_visibility_component.html.erb +3 -3
  650. data/app/views/hyrax/base/_guts4form.html.erb +0 -1
  651. data/app/views/hyrax/base/_items.html.erb +1 -1
  652. data/app/views/hyrax/base/_metadata.html.erb +2 -3
  653. data/app/views/hyrax/base/_relationships.html.erb +1 -2
  654. data/app/views/hyrax/base/_show_actions.html.erb +31 -24
  655. data/app/views/hyrax/base/_social_media.html.erb +6 -16
  656. data/app/views/hyrax/base/_work_button_row.html.erb +49 -0
  657. data/app/views/hyrax/base/_work_title.erb +13 -18
  658. data/app/views/hyrax/base/_work_type.html.erb +2 -2
  659. data/app/views/hyrax/base/_workflow_actions.html.erb +4 -4
  660. data/app/views/hyrax/base/edit.html.erb +1 -1
  661. data/app/views/hyrax/base/file_manager.html.erb +2 -2
  662. data/app/views/hyrax/base/iiif_viewers/_universal_viewer.html.erb +5 -2
  663. data/app/views/hyrax/base/inspect_work.html.erb +13 -13
  664. data/app/views/hyrax/base/new.html.erb +1 -1
  665. data/app/views/hyrax/base/show.html.erb +26 -12
  666. data/app/views/hyrax/base/show.json.jbuilder +5 -1
  667. data/app/views/hyrax/base/unauthorized.html.erb +4 -4
  668. data/app/views/hyrax/batch_edits/_check_all.html.erb +2 -2
  669. data/app/views/hyrax/batch_edits/_delete_selected.html.erb +1 -1
  670. data/app/views/hyrax/batch_edits/edit.html.erb +11 -11
  671. data/app/views/hyrax/batch_select/_add_button.html.erb +1 -1
  672. data/app/views/hyrax/batch_uploads/_form.html.erb +1 -1
  673. data/app/views/hyrax/citations/work.html.erb +1 -1
  674. data/app/views/hyrax/collections/_list_collections.html.erb +1 -1
  675. data/app/views/hyrax/collections/_media_display.html.erb +1 -1
  676. data/app/views/hyrax/collections/_search_form.html.erb +1 -1
  677. data/app/views/hyrax/collections/_show_descriptions.html.erb +5 -5
  678. data/app/views/hyrax/collections/_show_document_list.html.erb +1 -1
  679. data/app/views/hyrax/collections/_show_document_list_row.html.erb +2 -2
  680. data/app/views/hyrax/collections/_sort_and_per_page.html.erb +6 -6
  681. data/app/views/hyrax/collections/show.html.erb +12 -11
  682. data/app/views/hyrax/contact_form/new.html.erb +1 -3
  683. data/app/views/hyrax/dashboard/_index_partials/_transfers.html.erb +2 -2
  684. data/app/views/hyrax/dashboard/_sidebar.html.erb +1 -1
  685. data/app/views/hyrax/dashboard/collections/_collection_title.html.erb +2 -2
  686. data/app/views/hyrax/dashboard/collections/_default_group.html.erb +1 -1
  687. data/app/views/hyrax/dashboard/collections/_form.html.erb +6 -5
  688. data/app/views/hyrax/dashboard/collections/_form_branding.html.erb +10 -10
  689. data/app/views/hyrax/dashboard/collections/_form_for_select_collection.html.erb +1 -1
  690. data/app/views/hyrax/dashboard/collections/_form_share.html.erb +68 -70
  691. data/app/views/hyrax/dashboard/collections/_list_collections.html.erb +3 -2
  692. data/app/views/hyrax/dashboard/collections/_list_works.html.erb +1 -1
  693. data/app/views/hyrax/dashboard/collections/_show_descriptions.html.erb +4 -4
  694. data/app/views/hyrax/dashboard/collections/_show_document_list.html.erb +6 -6
  695. data/app/views/hyrax/dashboard/collections/_show_document_list_menu.html.erb +1 -1
  696. data/app/views/hyrax/dashboard/collections/_show_document_list_row.html.erb +5 -5
  697. data/app/views/hyrax/dashboard/collections/_sort_and_per_page.html.erb +4 -5
  698. data/app/views/hyrax/dashboard/collections/_work_action_menu.html.erb +8 -8
  699. data/app/views/hyrax/dashboard/collections/show.html.erb +9 -8
  700. data/app/views/hyrax/dashboard/profiles/_edit_primary.html.erb +8 -8
  701. data/app/views/hyrax/dashboard/show_admin.html.erb +8 -8
  702. data/app/views/hyrax/dashboard/show_user.html.erb +4 -4
  703. data/app/views/hyrax/dashboard/sidebar/_activity.html.erb +2 -0
  704. data/app/views/hyrax/dashboard/sidebar/_configuration.html.erb +4 -1
  705. data/app/views/hyrax/dashboard/sidebar/_menu_partials.html.erb +3 -0
  706. data/app/views/hyrax/dashboard/sidebar/_repository_content.html.erb +4 -0
  707. data/app/views/hyrax/dashboard/sidebar/_tasks.html.erb +10 -4
  708. data/app/views/hyrax/dashboard/works/_default_group.html.erb +4 -4
  709. data/app/views/hyrax/dashboard/works/_list_works.html.erb +3 -3
  710. data/app/views/hyrax/depositors/_modal_proxy_deny.html.erb +14 -0
  711. data/app/views/hyrax/depositors/index.html.erb +3 -0
  712. data/app/views/hyrax/embargoes/_list_expired_active_embargoes.html.erb +1 -1
  713. data/app/views/hyrax/file_sets/_actions.html.erb +1 -1
  714. data/app/views/hyrax/file_sets/_asset_deleted_flash.html.erb +1 -1
  715. data/app/views/hyrax/file_sets/_asset_saved_flash.html.erb +5 -6
  716. data/app/views/hyrax/file_sets/_asset_updated_flash.html.erb +2 -1
  717. data/app/views/hyrax/file_sets/_descriptions.html.erb +2 -2
  718. data/app/views/hyrax/file_sets/_extra_fields_modal.html.erb +3 -3
  719. data/app/views/hyrax/file_sets/_form.html.erb +1 -1
  720. data/app/views/hyrax/file_sets/_permission.html.erb +2 -1
  721. data/app/views/hyrax/file_sets/_permission_form.html.erb +12 -12
  722. data/app/views/hyrax/file_sets/_show_actions.html.erb +6 -4
  723. data/app/views/hyrax/file_sets/_show_details.html.erb +7 -7
  724. data/app/views/hyrax/file_sets/_single_use_link_rows.html.erb +1 -1
  725. data/app/views/hyrax/file_sets/_versioning.html.erb +56 -10
  726. data/app/views/hyrax/file_sets/edit.html.erb +5 -4
  727. data/app/views/hyrax/file_sets/media_display/_audio.html.erb +2 -2
  728. data/app/views/hyrax/file_sets/media_display/_video.html.erb +2 -2
  729. data/app/views/hyrax/file_sets/proxy.html.erb +2 -2
  730. data/app/views/hyrax/file_sets/show.json.jbuilder +1 -0
  731. data/app/views/hyrax/homepage/_announcement.html.erb +2 -2
  732. data/app/views/hyrax/homepage/_explore_collections.html.erb +1 -1
  733. data/app/views/hyrax/homepage/_featured_fields.html.erb +1 -1
  734. data/app/views/hyrax/homepage/_home_content.html.erb +8 -8
  735. data/app/views/hyrax/homepage/_marketing.html.erb +1 -1
  736. data/app/views/hyrax/homepage/_recent_document.html.erb +1 -1
  737. data/app/views/hyrax/homepage/_sortable_featured.html.erb +1 -0
  738. data/app/views/hyrax/homepage/index.html.erb +21 -23
  739. data/app/views/hyrax/my/_sort_and_per_page.html.erb +1 -1
  740. data/app/views/hyrax/my/collections/_default_group.html.erb +1 -1
  741. data/app/views/hyrax/my/collections/_list_collections.html.erb +3 -2
  742. data/app/views/hyrax/my/collections/_modal_add_subcollection.html.erb +1 -1
  743. data/app/views/hyrax/my/collections/_modal_delete_selected_collections.html.erb +4 -1
  744. data/app/views/hyrax/my/collections/_tabs.html.erb +3 -4
  745. data/app/views/hyrax/my/collections/index.html.erb +1 -1
  746. data/app/views/hyrax/my/index.html.erb +1 -1
  747. data/app/views/hyrax/my/works/_default_group.html.erb +4 -4
  748. data/app/views/hyrax/my/works/_list_works.html.erb +5 -5
  749. data/app/views/hyrax/my/works/_tabs.html.erb +1 -1
  750. data/app/views/hyrax/my/works/index.html.erb +1 -1
  751. data/app/views/hyrax/notifications/index.html.erb +1 -1
  752. data/app/views/hyrax/operations/index.html.erb +4 -4
  753. data/app/views/hyrax/pages/_form.html.erb +61 -60
  754. data/app/views/hyrax/permissions/confirm_access.html.erb +1 -1
  755. data/app/views/hyrax/single_use_links_viewer/single_use_error.html.erb +3 -7
  756. data/app/views/hyrax/static/mendeley.html.erb +2 -4
  757. data/app/views/hyrax/static/zotero.html.erb +2 -4
  758. data/app/views/hyrax/transfers/_received.html.erb +10 -10
  759. data/app/views/hyrax/transfers/_sent.html.erb +6 -6
  760. data/app/views/hyrax/uploads/_js_templates.html.erb +7 -7
  761. data/app/views/hyrax/uploads/_js_templates_branding.html.erb +8 -8
  762. data/app/views/hyrax/uploads/_js_templates_versioning.html.erb +172 -0
  763. data/app/views/hyrax/uploads/create.json.jbuilder +1 -0
  764. data/app/views/hyrax/users/_activity_log.html.erb +25 -22
  765. data/app/views/hyrax/users/_left_sidebar.html.erb +1 -1
  766. data/app/views/hyrax/users/_profile_tabs.html.erb +1 -1
  767. data/app/views/hyrax/users/_proxies.html.erb +1 -1
  768. data/app/views/hyrax/users/_search_form.html.erb +3 -3
  769. data/app/views/hyrax/users/_vitals.html.erb +3 -3
  770. data/app/views/hyrax/users/index.html.erb +6 -6
  771. data/app/views/hyrax/users/index.json.jbuilder +1 -0
  772. data/app/views/layouts/hyrax.html.erb +17 -3
  773. data/app/views/records/edit_fields/_abstract.html.erb +5 -0
  774. data/app/views/records/edit_fields/_access_right.html.erb +5 -0
  775. data/app/views/records/show_fields/_based_near.html.erb +1 -1
  776. data/app/views/records/show_fields/_creator.html.erb +1 -1
  777. data/app/views/records/show_fields/_keyword.html.erb +1 -1
  778. data/app/views/records/show_fields/_language.html.erb +1 -1
  779. data/app/views/records/show_fields/_publisher.html.erb +1 -1
  780. data/app/views/records/show_fields/_resource_type.html.erb +1 -1
  781. data/app/views/records/show_fields/_subject.html.erb +1 -1
  782. data/app/views/shared/_citations.html.erb +17 -0
  783. data/app/views/shared/_nav_safety_modal.html.erb +1 -0
  784. data/config/features.rb +6 -5
  785. data/config/initializers/1_healthz.rb +33 -0
  786. data/config/initializers/indexing_adapter_initializer.rb +14 -0
  787. data/config/initializers/listeners.rb +43 -0
  788. data/config/initializers/{samvera-nesting_indexer_initializer.rb → nesting_indexer_initializer.rb} +5 -5
  789. data/config/initializers/simple_form.rb +1 -0
  790. data/config/initializers/valkyrie_id_equality.rb +3 -0
  791. data/config/locales/hyrax.de.yml +382 -50
  792. data/config/locales/hyrax.en.yml +387 -2
  793. data/config/locales/hyrax.es.yml +340 -1
  794. data/config/locales/hyrax.fr.yml +339 -0
  795. data/config/locales/hyrax.it.yml +339 -0
  796. data/config/locales/hyrax.pt-BR.yml +350 -11
  797. data/config/locales/hyrax.zh.yml +339 -0
  798. data/config/metadata/basic_metadata.yaml +113 -0
  799. data/config/metadata/core_metadata.yaml +17 -0
  800. data/config/routes.rb +1 -0
  801. data/hyrax.gemspec +21 -18
  802. data/lib/generators/hyrax/arkivo_api_generator.rb +1 -0
  803. data/lib/generators/hyrax/assets_generator.rb +4 -3
  804. data/lib/generators/hyrax/clamav_generator.rb +1 -0
  805. data/lib/generators/hyrax/collection_generator.rb +1 -0
  806. data/lib/generators/hyrax/config_generator.rb +7 -0
  807. data/lib/generators/hyrax/health_check_generator.rb +14 -0
  808. data/lib/generators/hyrax/install_generator.rb +11 -0
  809. data/lib/generators/hyrax/models_generator.rb +4 -3
  810. data/lib/generators/hyrax/riiif_generator.rb +3 -2
  811. data/lib/generators/hyrax/sample_data_generator.rb +1 -0
  812. data/lib/generators/hyrax/templates/app/models/collection.rb +1 -0
  813. data/lib/generators/hyrax/templates/app/models/file_set.rb +1 -0
  814. data/lib/generators/hyrax/templates/catalog_controller.rb +77 -75
  815. data/lib/generators/hyrax/templates/config/action_dispatch_http_upload_monkey_patch.rb +1 -0
  816. data/lib/generators/hyrax/templates/config/analytics.yml +5 -5
  817. data/lib/generators/hyrax/templates/config/arkivo_constraint.rb +1 -0
  818. data/lib/generators/hyrax/templates/config/clamav.rb +1 -0
  819. data/lib/generators/hyrax/templates/config/initializers/hyrax.rb +23 -3
  820. data/lib/generators/hyrax/templates/config/initializers/mini_magick.rb +1 -0
  821. data/lib/generators/hyrax/templates/config/initializers/redis_config.rb +1 -0
  822. data/lib/generators/hyrax/templates/config/initializers/riiif.rb +6 -5
  823. data/lib/generators/hyrax/templates/config/initializers/simple_form.rb +1 -0
  824. data/lib/generators/hyrax/templates/config/initializers/simple_form_bootstrap.rb +1 -0
  825. data/lib/generators/hyrax/templates/config/locales/hyrax.pt-BR.yml +10 -10
  826. data/lib/generators/hyrax/templates/config/mime_types.rb +1 -0
  827. data/lib/generators/hyrax/templates/config/redis.yml +6 -6
  828. data/lib/generators/hyrax/templates/config/solr_wrapper_valkyrie_test.yml +7 -0
  829. data/lib/generators/hyrax/templates/config/valkyrie_index.yml +12 -0
  830. data/lib/generators/hyrax/templates/db/migrate/20180612002029_update_single_use_links_column_names.rb.erb +6 -0
  831. data/lib/generators/hyrax/templates/db/migrate/20200617002029_change_sipity_entity_specific_responsibility.rb.erb +9 -0
  832. data/lib/generators/hyrax/templates/db/seeds.rb +1 -0
  833. data/lib/generators/hyrax/templates/hyrax.scss +1 -0
  834. data/lib/generators/hyrax/templates/hyrax_helper.rb +1 -0
  835. data/lib/generators/hyrax/templates/package.json +17 -0
  836. data/lib/generators/hyrax/templates/spec/models/collection_spec.rb +1 -0
  837. data/lib/generators/hyrax/templates/spec/models/file_set_spec.rb +1 -0
  838. data/lib/generators/hyrax/templates/uv-config.json +3 -0
  839. data/lib/generators/hyrax/templates/uv.html +87 -0
  840. data/lib/generators/hyrax/work/USAGE +10 -5
  841. data/lib/generators/hyrax/work/templates/feature_spec.rb.erb +1 -2
  842. data/lib/generators/hyrax/work/templates/locale.pt-BR.yml.erb +1 -1
  843. data/lib/generators/hyrax/work/work_generator.rb +15 -14
  844. data/lib/generators/hyrax/work_resource/USAGE +17 -0
  845. data/lib/generators/hyrax/work_resource/templates/controller.rb.erb +22 -0
  846. data/lib/generators/hyrax/work_resource/templates/form.rb.erb +20 -0
  847. data/lib/generators/hyrax/work_resource/templates/indexer.rb.erb +16 -0
  848. data/lib/generators/hyrax/work_resource/templates/indexer_spec.rb.erb +12 -0
  849. data/lib/generators/hyrax/work_resource/templates/metadata.yaml +22 -0
  850. data/lib/generators/hyrax/work_resource/templates/work.html.erb_spec.rb.erb +6 -0
  851. data/lib/generators/hyrax/work_resource/templates/work.rb.erb +8 -0
  852. data/lib/generators/hyrax/work_resource/templates/work_spec.rb.erb +12 -0
  853. data/lib/generators/hyrax/work_resource/work_resource_generator.rb +112 -0
  854. data/lib/hyrax.rb +60 -2
  855. data/lib/hyrax/arkivo.rb +1 -0
  856. data/lib/hyrax/arkivo/actor.rb +49 -48
  857. data/lib/hyrax/arkivo/config.rb +1 -0
  858. data/lib/hyrax/arkivo/create_subscription_job.rb +31 -30
  859. data/lib/hyrax/arkivo/metadata_munger.rb +20 -19
  860. data/lib/hyrax/arkivo/schema_validator.rb +1 -0
  861. data/lib/hyrax/callbacks.rb +1 -0
  862. data/lib/hyrax/callbacks/registry.rb +20 -3
  863. data/lib/hyrax/collection_name.rb +15 -0
  864. data/lib/hyrax/configuration.rb +124 -27
  865. data/lib/hyrax/controlled_vocabularies.rb +1 -0
  866. data/lib/hyrax/controlled_vocabularies/location.rb +1 -0
  867. data/lib/hyrax/controlled_vocabulary/importer/downloader.rb +1 -0
  868. data/lib/hyrax/controlled_vocabulary/importer/language.rb +2 -1
  869. data/lib/hyrax/controller_resource.rb +5 -4
  870. data/lib/hyrax/engine.rb +27 -15
  871. data/lib/hyrax/errors.rb +5 -0
  872. data/lib/hyrax/event_store.rb +81 -0
  873. data/lib/hyrax/form_fields.rb +55 -0
  874. data/lib/hyrax/health_checks.rb +4 -0
  875. data/lib/hyrax/health_checks/solr_check.rb +24 -0
  876. data/lib/hyrax/indexer.rb +27 -0
  877. data/lib/hyrax/inflections.rb +1 -0
  878. data/lib/hyrax/model_decorator.rb +31 -0
  879. data/lib/hyrax/move_all_works_to_admin_set.rb +1 -0
  880. data/lib/hyrax/name.rb +2 -1
  881. data/lib/hyrax/publisher.rb +64 -0
  882. data/lib/hyrax/rails/routes.rb +24 -28
  883. data/lib/hyrax/redis_event_store.rb +25 -12
  884. data/lib/hyrax/resource_name.rb +18 -0
  885. data/lib/hyrax/resource_sync.rb +1 -0
  886. data/lib/hyrax/resource_sync/capability_list_writer.rb +15 -14
  887. data/lib/hyrax/resource_sync/change_list_writer.rb +58 -58
  888. data/lib/hyrax/resource_sync/resource_list_writer.rb +46 -45
  889. data/lib/hyrax/resource_sync/source_description_writer.rb +11 -10
  890. data/lib/hyrax/role_registry.rb +7 -6
  891. data/lib/hyrax/schema.rb +92 -0
  892. data/lib/hyrax/search_state.rb +1 -0
  893. data/lib/hyrax/specs/shared_specs.rb +4 -0
  894. data/lib/hyrax/specs/shared_specs/factories/strategies/valkyrie_resource.rb +32 -0
  895. data/lib/hyrax/specs/shared_specs/hydra_works.rb +292 -0
  896. data/lib/hyrax/specs/shared_specs/identifiers.rb +27 -0
  897. data/lib/hyrax/specs/shared_specs/indexers.rb +175 -0
  898. data/lib/hyrax/specs/shared_specs/metadata.rb +30 -0
  899. data/lib/hyrax/specs/spy_listener.rb +39 -0
  900. data/lib/hyrax/transactions.rb +2 -7
  901. data/lib/hyrax/transactions/apply_change_set.rb +47 -0
  902. data/lib/hyrax/transactions/container.rb +75 -3
  903. data/lib/hyrax/transactions/create_work.rb +16 -1
  904. data/lib/hyrax/transactions/destroy_work.rb +25 -0
  905. data/lib/hyrax/transactions/steps/add_to_collections.rb +36 -0
  906. data/lib/hyrax/transactions/steps/apply_collection_permission_template.rb +32 -0
  907. data/lib/hyrax/transactions/steps/apply_permission_template.rb +2 -1
  908. data/lib/hyrax/transactions/steps/apply_visibility.rb +39 -0
  909. data/lib/hyrax/transactions/steps/destroy_work.rb +24 -0
  910. data/lib/hyrax/transactions/steps/ensure_admin_set.rb +5 -5
  911. data/lib/hyrax/transactions/steps/save.rb +45 -0
  912. data/lib/hyrax/transactions/steps/set_default_admin_set.rb +10 -9
  913. data/lib/hyrax/transactions/steps/set_modified_date.rb +16 -7
  914. data/lib/hyrax/transactions/steps/set_uploaded_date_unless_present.rb +58 -0
  915. data/lib/hyrax/transactions/steps/set_user_as_depositor.rb +41 -0
  916. data/lib/hyrax/transactions/steps/validate.rb +36 -0
  917. data/lib/hyrax/transactions/transaction.rb +161 -0
  918. data/lib/hyrax/transactions/update_work.rb +16 -0
  919. data/lib/hyrax/transactions/work_create.rb +24 -0
  920. data/lib/hyrax/valkyrie_can_can_adapter.rb +25 -0
  921. data/lib/hyrax/version.rb +2 -1
  922. data/lib/hyrax/zotero.rb +1 -0
  923. data/lib/hyrax/zotero/config.rb +1 -0
  924. data/lib/tasks/controlled_vocabularies.rake +1 -0
  925. data/lib/tasks/default_admin_set.rake +1 -0
  926. data/lib/tasks/default_collection_type.rake +1 -0
  927. data/lib/tasks/hyrax.rake +1 -0
  928. data/lib/tasks/hyrax_user.rake +1 -0
  929. data/lib/tasks/install.rake +1 -0
  930. data/lib/tasks/migrate.rake +7 -0
  931. data/lib/tasks/reindex.rake +1 -0
  932. data/lib/tasks/stats_tasks.rake +1 -0
  933. data/lib/tasks/universal_viewer.rake +16 -0
  934. data/lib/tasks/workflow.rake +1 -0
  935. data/lib/valkyrie/indexing/null_indexing_adapter.rb +31 -0
  936. data/lib/valkyrie/indexing/solr/indexing_adapter.rb +97 -0
  937. data/lib/valkyrie/indexing_adapter.rb +29 -0
  938. data/lib/wings.rb +134 -0
  939. data/lib/wings/active_fedora_classifier.rb +16 -0
  940. data/lib/wings/active_fedora_converter.rb +217 -0
  941. data/lib/wings/attribute_transformer.rb +30 -0
  942. data/lib/wings/converter_value_mapper.rb +197 -0
  943. data/lib/wings/hydra/pcdm/models/concerns/collection_valkyrie_behavior.rb +28 -0
  944. data/lib/wings/hydra/pcdm/models/concerns/object_valkyrie_behavior.rb +28 -0
  945. data/lib/wings/hydra/pcdm/models/concerns/pcdm_valkyrie_behavior.rb +171 -0
  946. data/lib/wings/hydra/works/models/concerns/collection_valkyrie_behavior.rb +31 -0
  947. data/lib/wings/hydra/works/models/concerns/file_set_valkyrie_behavior.rb +31 -0
  948. data/lib/wings/hydra/works/models/concerns/work_valkyrie_behavior.rb +60 -0
  949. data/lib/wings/hydra/works/services/add_file_to_file_set.rb +57 -0
  950. data/lib/wings/model_registry.rb +54 -0
  951. data/lib/wings/model_transformer.rb +169 -0
  952. data/lib/wings/models/concerns/collection_behavior.rb +39 -0
  953. data/lib/wings/models/multi_checksum.rb +18 -0
  954. data/lib/wings/orm_converter.rb +102 -0
  955. data/lib/wings/services/custom_queries/find_access_control.rb +42 -0
  956. data/lib/wings/services/custom_queries/find_collections_by_type.rb +27 -0
  957. data/lib/wings/services/custom_queries/find_file_metadata.rb +90 -0
  958. data/lib/wings/services/custom_queries/find_many_by_alternate_ids.rb +35 -0
  959. data/lib/wings/services/file_converter_service.rb +68 -0
  960. data/lib/wings/services/file_metadata_builder.rb +90 -0
  961. data/lib/wings/services/id_converter_service.rb +15 -0
  962. data/lib/wings/setup.rb +49 -0
  963. data/lib/wings/transformer_value_mapper.rb +78 -0
  964. data/lib/wings/valkyrie/metadata_adapter.rb +29 -0
  965. data/lib/wings/valkyrie/persister.rb +113 -0
  966. data/lib/wings/valkyrie/query_service.rb +176 -0
  967. data/lib/wings/valkyrie/resource_factory.rb +45 -0
  968. data/lib/wings/valkyrie/storage/active_fedora.rb +27 -0
  969. data/lib/wings/valkyrizable.rb +24 -0
  970. data/tasks/hyrax_dev.rake +4 -1
  971. data/template.rb +2 -1
  972. metadata +332 -114
  973. data/app/presenters/hyrax/collection_options_presenter.rb +0 -31
  974. data/app/services/hyrax/collection_size_service.rb +0 -52
  975. data/config/initializers/hyrax_callbacks.rb +0 -43
  976. data/lib/hyrax/transactions/steps/set_uploaded_date.rb +0 -28
@@ -1,3 +1,4 @@
1
+ # frozen_string_literal: true
1
2
  module Hyrax
2
3
  module IiifHelper
3
4
  def iiif_viewer_display(work_presenter, locals = {})
@@ -8,5 +9,13 @@ module Hyrax
8
9
  def iiif_viewer_display_partial(work_presenter)
9
10
  'hyrax/base/iiif_viewers/' + work_presenter.iiif_viewer.to_s
10
11
  end
12
+
13
+ def universal_viewer_base_url
14
+ "#{request&.base_url}/uv/uv.html"
15
+ end
16
+
17
+ def universal_viewer_config_url
18
+ "#{request&.base_url}/uv/uv-config.json"
19
+ end
11
20
  end
12
21
  end
@@ -1,3 +1,4 @@
1
+ # frozen_string_literal: true
1
2
  module Hyrax
2
3
  module LeaseHelper
3
4
  def assets_with_expired_leases
@@ -11,5 +12,25 @@ module Hyrax
11
12
  def assets_with_deactivated_leases
12
13
  @assets_with_deactivated_leases ||= LeaseService.assets_with_deactivated_leases
13
14
  end
15
+
16
+ ##
17
+ # @since 3.0.0
18
+ #
19
+ # @param [Valkyrie::Resource, ActiveFedora::Base] resource
20
+ #
21
+ # @return [Boolean] whether the resource has an lease that is currently
22
+ # enforced (regardless of whether it has expired)
23
+ def lease_enforced?(resource)
24
+ case resource
25
+ when Hydra::AccessControls::Embargoable
26
+ !resource.lease_expiration_date.nil?
27
+ when HydraEditor::Form
28
+ lease_enforced?(resource.model)
29
+ when Valkyrie::ChangeSet
30
+ Hyrax::LeaseManager.new(resource: resource.model).enforced?
31
+ else
32
+ Hyrax::LeaseManager.new(resource: resource).enforced?
33
+ end
34
+ end
14
35
  end
15
36
  end
@@ -0,0 +1,48 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Hyrax
4
+ module MembershipHelper
5
+ ##
6
+ # @param resource [#member_of_collection_ids, #member_of_collections_json]
7
+ #
8
+ # @return [String] JSON for `data-members`
9
+ #
10
+ # @todo optimize collection name lookup. the legacy `WorkForm`
11
+ # implementation pulls all the collections already (though maybe with
12
+ # instance-level caching?), but we should consider doing this more
13
+ # efficiently.
14
+ #
15
+ # @see app/assets/javascripts/hyrax/relationships.js
16
+ def member_of_collections_json(resource)
17
+ return resource.member_of_collections_json if
18
+ resource.respond_to?(:member_of_collections_json)
19
+
20
+ resource = resource.model if resource.respond_to?(:model)
21
+
22
+ Hyrax.custom_queries.find_collections_for(resource: resource).map do |collection|
23
+ { id: collection.id.to_s,
24
+ label: collection.title.first,
25
+ path: url_for(collection) }
26
+ end.to_json
27
+ end
28
+
29
+ ##
30
+ # @param resource [#work_members_json]
31
+ #
32
+ # @return [String] JSON for `data-members`
33
+ #
34
+ # @see app/assets/javascripts/hyrax/relationships.js
35
+ def work_members_json(resource)
36
+ return resource.work_members_json if
37
+ resource.respond_to?(:work_members_json)
38
+
39
+ resource = resource.model if resource.respond_to?(:model)
40
+
41
+ Hyrax.custom_queries.find_child_works(resource: resource).map do |member|
42
+ { id: member.id.to_s,
43
+ label: member.title.first,
44
+ path: url_for(member) }
45
+ end.to_json
46
+ end
47
+ end
48
+ end
@@ -0,0 +1,32 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Hyrax
4
+ module PermissionLevelsHelper
5
+ ##
6
+ # @return [Hash<String, String>] a map from i18nized strings to permission
7
+ # level keywords
8
+ def configured_permission_levels
9
+ Hyrax.config.permission_levels.values.index_by do |level|
10
+ I18n.t("hyrax.permission_levels.#{level}")
11
+ end
12
+ end
13
+
14
+ ##
15
+ # @return [Hash<String, String>] a map from i18nized strings to permission
16
+ # level keywords
17
+ def configured_owner_permission_levels
18
+ Hyrax.config.owner_permission_levels.values.index_by do |level|
19
+ I18n.t("hyrax.permission_levels.owner.#{level}")
20
+ end
21
+ end
22
+
23
+ ##
24
+ # @return [Hash<String, String>] a map from i18nized strings to permission
25
+ # level keywords
26
+ def configured_permission_options
27
+ Hyrax.config.permission_options.values.index_by do |option|
28
+ I18n.t("hyrax.permission_levels.options.#{option}")
29
+ end
30
+ end
31
+ end
32
+ end
@@ -1,3 +1,4 @@
1
+ # frozen_string_literal: true
1
2
  module Hyrax
2
3
  module PermissionsHelper
3
4
  def help_text(file)
@@ -6,14 +7,14 @@ module Hyrax
6
7
 
7
8
  private
8
9
 
9
- def capture_content(file)
10
- capture do
11
- render file
12
- end
10
+ def capture_content(file)
11
+ capture do
12
+ render file
13
13
  end
14
+ end
14
15
 
15
- def help_icon
16
- content_tag 'i', '', 'aria-hidden' => true, class: 'help-icon'
17
- end
16
+ def help_icon
17
+ tag.i '', 'aria-hidden': true, class: 'help-icon'
18
+ end
18
19
  end
19
20
  end
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module Hyrax::TitleHelper
2
4
  def application_name
3
5
  t('hyrax.product_name', default: super)
@@ -7,12 +9,12 @@ module Hyrax::TitleHelper
7
9
  (elements.flatten.compact + [application_name]).join(' // ')
8
10
  end
9
11
 
12
+ ##
13
+ # @deprecated
10
14
  def curation_concern_page_title(curation_concern)
11
- if curation_concern.persisted?
12
- construct_page_title(curation_concern.to_s, "#{curation_concern.human_readable_type} [#{curation_concern.to_param}]")
13
- else
14
- construct_page_title("New #{curation_concern.human_readable_type}")
15
- end
15
+ Deprecation.warn 'The curation_concern_page_title helper will be removed in Hyrax 4.0.' \
16
+ "\n\tUse title_presenter(curation_concern).page_title instead."
17
+ title_presenter(curation_concern).page_title
16
18
  end
17
19
 
18
20
  def default_page_title
@@ -20,4 +22,8 @@ module Hyrax::TitleHelper
20
22
  text = "#{action_name.titleize} " + text if action_name
21
23
  construct_page_title(text)
22
24
  end
25
+
26
+ def title_presenter(resource)
27
+ Hyrax::PageTitleDecorator.new(resource)
28
+ end
23
29
  end
@@ -1,3 +1,4 @@
1
+ # frozen_string_literal: true
1
2
  module Hyrax
2
3
  module TrophyHelper
3
4
  def display_trophy_link(user, id, args = {}, &_block)
@@ -1,3 +1,4 @@
1
+ # frozen_string_literal: true
1
2
  module Hyrax
2
3
  module UrlHelper
3
4
  # generated models get registered as curation concerns and need a
@@ -0,0 +1,48 @@
1
+ # frozen_string_literal: true
2
+ module Hyrax
3
+ module WorkFormHelper
4
+ ##
5
+ # This helper allows downstream applications and engines to add/remove/reorder the tabs to be
6
+ # rendered on the work form.
7
+ #
8
+ # @example with additional tabs
9
+ # Override this helper and ensure that it loads after Hyrax's helpers.
10
+ # module WorksHelper
11
+ # def form_tabs_for(form:)
12
+ # super + ["my_new_tab"]
13
+ # end
14
+ # end
15
+ # Add the new section partial at app/views/hyrax/base/_form_my_new_tab.html.erb
16
+ #
17
+ # @todo The share tab isn't included because it wasn't in guts4form. guts4form should be
18
+ # cleaned up so share is treated the same as other tabs and can be included below.
19
+ # @param form [Hyrax::Forms::WorkForm, Hyrax::Forms::ResourceForm]
20
+ # @return [Array<String>] the list of names of tabs to be rendered in the form
21
+ def form_tabs_for(form:)
22
+ if form.instance_of? Hyrax::Forms::BatchUploadForm
23
+ %w[files metadata relationships]
24
+ else
25
+ %w[metadata files relationships]
26
+ end
27
+ end
28
+
29
+ ##
30
+ # This helper allows downstream applications and engines to add additional sections to be
31
+ # rendered after the visibility section in the Save Work panel on the work form.
32
+ #
33
+ # @example with additional sections
34
+ # Override this helper and ensure that it loads after Hyrax's helpers.
35
+ # module WorksHelper
36
+ # def form_progress_sections_for(*)
37
+ # super + ["my_new_section"]
38
+ # end
39
+ # end
40
+ # Add the new section partial at app/views/hyrax/base/_form_progress_my_new_section.html.erb
41
+ #
42
+ # @param form [Hyrax::Forms::WorkForm, Hyrax::Forms::ResourceForm]
43
+ # @return [Array<String>] the list of names of sections to be rendered in the form_progress panel
44
+ def form_progress_sections_for(*)
45
+ []
46
+ end
47
+ end
48
+ end
@@ -1,3 +1,4 @@
1
+ # frozen_string_literal: true
1
2
  module Hyrax
2
3
  # This module can be mixed in on an indexer in order to index the basic metadata fields
3
4
  module IndexesBasicMetadata
@@ -1,3 +1,4 @@
1
+ # frozen_string_literal: true
1
2
  module Hyrax
2
3
  # This module can be mixed in on an indexer in order to index the linked metadata fields
3
4
  module IndexesLinkedMetadata
@@ -1,3 +1,4 @@
1
+ # frozen_string_literal: true
1
2
  module Hyrax
2
3
  class AdminSetIndexer < ActiveFedora::IndexingService
3
4
  include Hyrax::IndexesThumbnails
@@ -7,7 +8,12 @@ module Hyrax
7
8
  def generate_solr_document
8
9
  super.tap do |solr_doc|
9
10
  # Makes Admin Sets show under the "Admin Sets" tab
10
- Solrizer.set_field(solr_doc, 'generic_type', 'Admin Set', :facetable)
11
+ solr_doc['generic_type_sim'] = ['Admin Set']
12
+ solr_doc['alternative_title_tesim'] = object.alternative_title
13
+ solr_doc['creator_ssim'] = object.creator
14
+ solr_doc['description_tesim'] = object.description
15
+ solr_doc['title_tesim'] = object.title
16
+ solr_doc['title_sim'] = object.title
11
17
  end
12
18
  end
13
19
  end
@@ -1,57 +1,58 @@
1
+ # frozen_string_literal: true
1
2
  module Hyrax
2
3
  # This class gets called by ActiveFedora::IndexingService#olrize_rdf_assertions
3
4
  class BasicMetadataIndexer < ActiveFedora::RDF::IndexingService
4
5
  class_attribute :stored_and_facetable_fields, :stored_fields, :symbol_fields
5
6
  self.stored_and_facetable_fields = %i[resource_type creator contributor keyword publisher subject language based_near]
6
- self.stored_fields = %i[description license rights_statement date_created identifier related_url bibliographic_citation source]
7
+ self.stored_fields = %i[alternative_title description abstract license rights_statement rights_notes access_right date_created identifier related_url bibliographic_citation source]
7
8
  self.symbol_fields = %i[import_url]
8
9
 
9
10
  private
10
11
 
11
- # This method overrides ActiveFedora::RDF::IndexingService
12
- # @return [ActiveFedora::Indexing::Map]
13
- def index_config
12
+ # This method overrides ActiveFedora::RDF::IndexingService
13
+ # @return [ActiveFedora::Indexing::Map]
14
+ def index_config
15
+ merge_config(
14
16
  merge_config(
15
- merge_config(
16
- merge_config(super, stored_and_facetable_index_config),
17
- stored_searchable_index_config
18
- ),
19
- symbol_index_config
20
- )
21
- end
17
+ merge_config(super, stored_and_facetable_index_config),
18
+ stored_searchable_index_config
19
+ ),
20
+ symbol_index_config
21
+ )
22
+ end
22
23
 
23
- # This can be replaced by a simple merge once
24
- # https://github.com/samvera/active_fedora/pull/1227
25
- # is available to us
26
- # @param [ActiveFedora::Indexing::Map] first
27
- # @param [Hash] second
28
- def merge_config(first, second)
29
- first_hash = first.instance_variable_get(:@hash).deep_dup
30
- ActiveFedora::Indexing::Map.new(first_hash.merge(second))
31
- end
24
+ # This can be replaced by a simple merge once
25
+ # https://github.com/samvera/active_fedora/pull/1227
26
+ # is available to us
27
+ # @param [ActiveFedora::Indexing::Map] first
28
+ # @param [Hash] second
29
+ def merge_config(first, second)
30
+ first_hash = first.instance_variable_get(:@hash).deep_dup
31
+ ActiveFedora::Indexing::Map.new(first_hash.merge(second))
32
+ end
32
33
 
33
- def stored_and_facetable_index_config
34
- stored_and_facetable_fields.each_with_object({}) do |name, hash|
35
- hash[name] = index_object_for(name, as: [:stored_searchable, :facetable])
36
- end
34
+ def stored_and_facetable_index_config
35
+ stored_and_facetable_fields.each_with_object({}) do |name, hash|
36
+ hash[name] = index_object_for(name, as: [:stored_searchable, :facetable])
37
37
  end
38
+ end
38
39
 
39
- def stored_searchable_index_config
40
- stored_fields.each_with_object({}) do |name, hash|
41
- hash[name] = index_object_for(name, as: [:stored_searchable])
42
- end
40
+ def stored_searchable_index_config
41
+ stored_fields.each_with_object({}) do |name, hash|
42
+ hash[name] = index_object_for(name, as: [:stored_searchable])
43
43
  end
44
+ end
44
45
 
45
- def symbol_index_config
46
- symbol_fields.each_with_object({}) do |name, hash|
47
- hash[name] = index_object_for(name, as: [:symbol])
48
- end
46
+ def symbol_index_config
47
+ symbol_fields.each_with_object({}) do |name, hash|
48
+ hash[name] = index_object_for(name, as: [:symbol])
49
49
  end
50
+ end
50
51
 
51
- def index_object_for(attribute_name, as: [])
52
- ActiveFedora::Indexing::Map::IndexObject.new(attribute_name) do |idx|
53
- idx.as(*as)
54
- end
52
+ def index_object_for(attribute_name, as: [])
53
+ ActiveFedora::Indexing::Map::IndexObject.new(attribute_name) do |idx|
54
+ idx.as(*as)
55
55
  end
56
+ end
56
57
  end
57
58
  end
@@ -1,8 +1,9 @@
1
+ # frozen_string_literal: true
1
2
  module Hyrax
2
3
  class CollectionIndexer < Hydra::PCDM::CollectionIndexer
3
4
  include Hyrax::IndexesThumbnails
4
5
 
5
- STORED_LONG = Solrizer::Descriptor.new(:long, :stored)
6
+ STORED_LONG = ActiveFedora::Indexing::Descriptor.new(:long, :stored)
6
7
 
7
8
  self.thumbnail_path_service = Hyrax::CollectionThumbnailPathService
8
9
 
@@ -1,3 +1,4 @@
1
+ # frozen_string_literal: true
1
2
  module Hyrax
2
3
  class CollectionWithBasicMetadataIndexer < CollectionIndexer
3
4
  include Hyrax::IndexesBasicMetadata
@@ -1,3 +1,4 @@
1
+ # frozen_string_literal: true
1
2
  require 'linkeddata' # we need all the linked data types, because we don't know what types a service might return.
2
3
  module Hyrax
3
4
  class DeepIndexingService < BasicMetadataIndexer
@@ -26,86 +27,77 @@ module Hyrax
26
27
 
27
28
  private
28
29
 
29
- # Grab the labels for controlled properties from the remote sources
30
- def fetch_external
31
- object.controlled_properties.each do |property|
32
- object[property].each do |value|
33
- resource = value.respond_to?(:resource) ? value.resource : value
34
- next unless resource.is_a?(ActiveTriples::Resource)
35
- next if value.is_a?(ActiveFedora::Base)
36
- fetch_with_persistence(resource)
37
- end
30
+ # Grab the labels for controlled properties from the remote sources
31
+ def fetch_external
32
+ object.controlled_properties.each do |property|
33
+ object[property].each do |value|
34
+ resource = value.respond_to?(:resource) ? value.resource : value
35
+ next unless resource.is_a?(ActiveTriples::Resource)
36
+ next if value.is_a?(ActiveFedora::Base)
37
+ fetch_with_persistence(resource)
38
38
  end
39
39
  end
40
+ end
40
41
 
41
- def fetch_with_persistence(resource)
42
- old_label = resource.rdf_label.first
43
- return unless old_label == resource.rdf_subject.to_s || old_label.nil?
44
- fetch_value(resource)
45
- return if old_label == resource.rdf_label.first || resource.rdf_label.first == resource.rdf_subject.to_s
46
- resource.persist! # Stores the fetched values into our marmotta triplestore
47
- end
48
-
49
- def fetch_value(value)
50
- Rails.logger.info "Fetching #{value.rdf_subject} from the authorative source. (this is slow)"
51
- value.fetch(headers: { 'Accept'.freeze => default_accept_header })
52
- rescue IOError, SocketError => e
53
- # IOError could result from a 500 error on the remote server
54
- # SocketError results if there is no server to connect to
55
- Rails.logger.error "Unable to fetch #{value.rdf_subject} from the authorative source.\n#{e.message}"
56
- end
57
-
58
- # Stripping off the */* to work around https://github.com/rails/rails/issues/9940
59
- def default_accept_header
60
- RDF::Util::File::HttpAdapter.default_accept_header.sub(/, \*\/\*;q=0\.1\Z/, '')
61
- end
42
+ def fetch_with_persistence(resource)
43
+ old_label = resource.rdf_label.first
44
+ return unless old_label == resource.rdf_subject.to_s || old_label.nil?
45
+ fetch_value(resource)
46
+ return if old_label == resource.rdf_label.first || resource.rdf_label.first == resource.rdf_subject.to_s
47
+ resource.persist! # Stores the fetched values into our marmotta triplestore
48
+ end
62
49
 
63
- # Appends the uri to the default solr field and puts the label (if found) in the label solr field
64
- # @param [Hash] solr_doc
65
- # @param [String] solr_field_key
66
- # @param [Hash] field_info
67
- # @param [Array] val an array of two elements, first is a string (the uri) and the second is a hash with one key: `:label`
68
- def append_label_and_uri(solr_doc, solr_field_key, field_info, val)
69
- val = val.solrize
70
- create_and_insert_terms_handler.create_and_insert_terms(solr_field_key,
71
- val.first,
72
- field_info.behaviors, solr_doc)
73
- return unless val.last.is_a? Hash
74
- create_and_insert_terms_handler.create_and_insert_terms("#{solr_field_key}_label",
75
- label(val),
76
- field_info.behaviors, solr_doc)
77
- end
50
+ def fetch_value(value)
51
+ Rails.logger.info "Fetching #{value.rdf_subject} from the authorative source. (this is slow)"
52
+ value.fetch(headers: { 'Accept' => default_accept_header })
53
+ rescue IOError, SocketError => e
54
+ # IOError could result from a 500 error on the remote server
55
+ # SocketError results if there is no server to connect to
56
+ Rails.logger.error "Unable to fetch #{value.rdf_subject} from the authorative source.\n#{e.message}"
57
+ end
78
58
 
79
- # Use this method to append a string value from a controlled vocabulary field
80
- # to the solr document. It just puts a copy into the corresponding label field
81
- # @param [Hash] solr_doc
82
- # @param [String] solr_field_key
83
- # @param [Hash] field_info
84
- # @param [String] val
85
- def append_label(solr_doc, solr_field_key, field_info, val)
86
- create_and_insert_terms_handler.create_and_insert_terms(solr_field_key,
87
- val,
88
- field_info.behaviors, solr_doc)
89
- create_and_insert_terms_handler.create_and_insert_terms("#{solr_field_key}_label",
90
- val,
91
- field_info.behaviors, solr_doc)
92
- end
59
+ # Stripping off the */* to work around https://github.com/rails/rails/issues/9940
60
+ def default_accept_header
61
+ RDF::Util::File::HttpAdapter.default_accept_header.sub(/, \*\/\*;q=0\.1\Z/, '')
62
+ end
93
63
 
94
- # Return a label for the solrized term:
95
- # @example
96
- # label(["http://id.loc.gov/authorities/subjects/sh85062487", {:label=>"Hotels$http://id.loc.gov/authorities/subjects/sh85062487"}])
97
- # => 'Hotels'
98
- def label(val)
99
- val.last[:label].split('$').first
100
- end
64
+ # Appends the uri to the default solr field and puts the label (if found) in the label solr field
65
+ # @param [Hash] solr_doc
66
+ # @param [String] solr_field_key
67
+ # @param [Hash] field_info
68
+ # @param [Array] val an array of two elements, first is a string (the uri) and the second is a hash with one key: `:label`
69
+ def append_label_and_uri(solr_doc, solr_field_key, field_info, val)
70
+ val = val.solrize
71
+ ActiveFedora::Indexing::Inserter.create_and_insert_terms(solr_field_key,
72
+ val.first,
73
+ field_info.behaviors, solr_doc)
74
+ return unless val.last.is_a? Hash
75
+ ActiveFedora::Indexing::Inserter.create_and_insert_terms("#{solr_field_key}_label",
76
+ label(val),
77
+ field_info.behaviors, solr_doc)
78
+ end
101
79
 
102
- # create_and_insert_terms was moved to ActiveFedora::Indexing::Inserter
103
- # in ActiveFedora 12. broker calls to it through here to ensure an
104
- # implementation is available
105
- def create_and_insert_terms_handler
106
- return self.class if self.class.respond_to?(:create_and_insert_terms)
80
+ # Use this method to append a string value from a controlled vocabulary field
81
+ # to the solr document. It just puts a copy into the corresponding label field
82
+ # @param [Hash] solr_doc
83
+ # @param [String] solr_field_key
84
+ # @param [Hash] field_info
85
+ # @param [String] val
86
+ def append_label(solr_doc, solr_field_key, field_info, val)
87
+ ActiveFedora::Indexing::Inserter.create_and_insert_terms(solr_field_key,
88
+ val,
89
+ field_info.behaviors, solr_doc)
90
+ ActiveFedora::Indexing::Inserter.create_and_insert_terms("#{solr_field_key}_label",
91
+ val,
92
+ field_info.behaviors, solr_doc)
93
+ end
107
94
 
108
- 'ActiveFedora::Indexing::Inserter'.constantize
109
- end
95
+ # Return a label for the solrized term:
96
+ # @example
97
+ # label(["http://id.loc.gov/authorities/subjects/sh85062487", {:label=>"Hotels$http://id.loc.gov/authorities/subjects/sh85062487"}])
98
+ # => 'Hotels'
99
+ def label(val)
100
+ val.last[:label].split('$').first
101
+ end
110
102
  end
111
103
  end