hyrax 2.0.3 → 2.1.0.beta1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (703) hide show
  1. checksums.yaml +4 -4
  2. data/.eslintrc +0 -1
  3. data/.github/CONTRIBUTING.md +1 -1
  4. data/.rubocop.yml +8 -4
  5. data/.rubocop_fixme.yml +20 -2
  6. data/.travis.yml +3 -3
  7. data/README.md +12 -4
  8. data/app/actors/hyrax/actors/abstract_actor.rb +1 -1
  9. data/app/actors/hyrax/actors/apply_permission_template_actor.rb +17 -1
  10. data/app/actors/hyrax/actors/attach_members_actor.rb +2 -2
  11. data/app/actors/hyrax/actors/collections_membership_actor.rb +147 -12
  12. data/app/actors/hyrax/actors/create_with_remote_files_actor.rb +15 -9
  13. data/app/actors/hyrax/actors/default_admin_set_actor.rb +3 -3
  14. data/app/actors/hyrax/actors/file_set_actor.rb +10 -6
  15. data/app/actors/hyrax/actors/interpret_visibility_actor.rb +1 -1
  16. data/app/assets/javascripts/hyrax.js +13 -7
  17. data/app/assets/javascripts/hyrax/admin/admin_set_controls.es6 +5 -3
  18. data/app/assets/javascripts/hyrax/admin/collection_type/participants.es6 +13 -0
  19. data/app/assets/javascripts/hyrax/admin/collection_type/settings.es6 +60 -0
  20. data/app/assets/javascripts/hyrax/admin/collection_type_controls.es6 +15 -0
  21. data/app/assets/javascripts/hyrax/app.js.erb +29 -7
  22. data/app/assets/javascripts/hyrax/autocomplete.es6 +10 -5
  23. data/app/assets/javascripts/hyrax/autocomplete/default.es6 +1 -1
  24. data/app/assets/javascripts/hyrax/autocomplete/linked_data.es6 +1 -1
  25. data/app/assets/javascripts/hyrax/autocomplete/{work.es6 → resource.es6} +10 -4
  26. data/app/assets/javascripts/hyrax/collection_types.es6 +65 -0
  27. data/app/assets/javascripts/hyrax/collections.js +168 -3
  28. data/app/assets/javascripts/hyrax/collections/editor.es6 +7 -1
  29. data/app/assets/javascripts/hyrax/collections_forms.js +108 -0
  30. data/app/assets/javascripts/hyrax/editor.es6 +17 -3
  31. data/app/assets/javascripts/hyrax/fileupload.js +1 -0
  32. data/app/assets/javascripts/hyrax/relationships.js +2 -1
  33. data/app/assets/javascripts/hyrax/relationships/confirm_remove_dialog.es6 +45 -0
  34. data/app/assets/javascripts/hyrax/relationships/control.es6 +25 -10
  35. data/app/assets/javascripts/hyrax/relationships/registry.es6 +28 -25
  36. data/app/assets/javascripts/hyrax/relationships/registry_entry.es6 +40 -33
  37. data/app/assets/javascripts/hyrax/relationships/resource.es6 +10 -0
  38. data/app/assets/javascripts/hyrax/select_collection_type.es6 +39 -0
  39. data/app/assets/javascripts/hyrax/{per_page.es6 → sort_and_per_page.es6} +1 -1
  40. data/app/assets/javascripts/hyrax/tabbed_form.es6 +35 -0
  41. data/app/assets/stylesheets/_bootstrap-default-overrides.scss +15 -0
  42. data/app/assets/stylesheets/fileupload/jquery.fileupload-ui.scss +6 -0
  43. data/app/assets/stylesheets/hyrax/_accessibility.scss +16 -0
  44. data/app/assets/stylesheets/hyrax/_catalog.scss +88 -1
  45. data/app/assets/stylesheets/hyrax/_collection_types.scss +53 -0
  46. data/app/assets/stylesheets/hyrax/_collections.scss +616 -22
  47. data/app/assets/stylesheets/hyrax/_featured.scss +16 -0
  48. data/app/assets/stylesheets/hyrax/_file-listing.scss +9 -2
  49. data/app/assets/stylesheets/hyrax/_forms.scss +46 -0
  50. data/app/assets/stylesheets/hyrax/_home-page.scss +10 -0
  51. data/app/assets/stylesheets/hyrax/_hyrax.scss +3 -2
  52. data/app/assets/stylesheets/hyrax/_positioning.scss +0 -11
  53. data/app/assets/stylesheets/hyrax/_recent.scss +26 -0
  54. data/app/assets/stylesheets/hyrax/_representative-media.scss +7 -0
  55. data/app/assets/stylesheets/hyrax/_select_collection_type.scss +45 -0
  56. data/app/assets/stylesheets/hyrax/_select_work_type.scss +0 -4
  57. data/app/assets/stylesheets/hyrax/_styles.scss +2 -17
  58. data/app/assets/stylesheets/hyrax/_variables.scss +2 -2
  59. data/app/assets/stylesheets/hyrax/_viewer.scss +8 -0
  60. data/app/assets/stylesheets/hyrax/_work-show.scss +44 -6
  61. data/app/assets/stylesheets/hyrax/dashboard.scss +7 -2
  62. data/app/authorities/qa/authorities/collections.rb +30 -0
  63. data/app/builders/hyrax/manifest_helper.rb +36 -0
  64. data/app/controllers/concerns/hyrax/admin/stats_behavior.rb +1 -1
  65. data/app/controllers/concerns/hyrax/admin/users_controller_behavior.rb +1 -1
  66. data/app/controllers/concerns/hyrax/collections_controller_behavior.rb +37 -40
  67. data/app/controllers/concerns/hyrax/controller.rb +0 -9
  68. data/app/controllers/concerns/hyrax/themed_layout_controller.rb +4 -1
  69. data/app/controllers/concerns/hyrax/works_controller_behavior.rb +22 -11
  70. data/app/controllers/hyrax/admin/admin_sets_controller.rb +24 -15
  71. data/app/controllers/hyrax/admin/appearances_controller.rb +1 -1
  72. data/app/controllers/hyrax/admin/collection_type_participants_controller.rb +44 -0
  73. data/app/controllers/hyrax/admin/collection_types_controller.rb +97 -0
  74. data/app/controllers/hyrax/admin/features_controller.rb +1 -1
  75. data/app/controllers/hyrax/admin/permission_template_accesses_controller.rb +55 -13
  76. data/app/controllers/hyrax/admin/permission_templates_controller.rb +66 -23
  77. data/app/controllers/hyrax/admin/workflow_roles_controller.rb +1 -1
  78. data/app/controllers/hyrax/admin/workflows_controller.rb +1 -1
  79. data/app/controllers/hyrax/batch_edits_controller.rb +1 -1
  80. data/app/controllers/hyrax/batch_uploads_controller.rb +1 -1
  81. data/app/controllers/hyrax/citations_controller.rb +3 -12
  82. data/app/controllers/hyrax/collections_controller.rb +8 -9
  83. data/app/controllers/hyrax/content_blocks_controller.rb +1 -1
  84. data/app/controllers/hyrax/dashboard/collection_members_controller.rb +73 -0
  85. data/app/controllers/hyrax/dashboard/collections_controller.rb +210 -54
  86. data/app/controllers/hyrax/dashboard/nest_collections_controller.rb +106 -0
  87. data/app/controllers/hyrax/dashboard/profiles_controller.rb +1 -1
  88. data/app/controllers/hyrax/dashboard/works_controller.rb +1 -9
  89. data/app/controllers/hyrax/dashboard_controller.rb +1 -1
  90. data/app/controllers/hyrax/file_sets_controller.rb +7 -75
  91. data/app/controllers/hyrax/my/collections_controller.rb +26 -1
  92. data/app/controllers/hyrax/my/works_controller.rb +16 -1
  93. data/app/controllers/hyrax/my_controller.rb +5 -19
  94. data/app/controllers/hyrax/notifications_controller.rb +1 -1
  95. data/app/controllers/hyrax/pages_controller.rb +3 -2
  96. data/app/controllers/hyrax/stats_controller.rb +3 -0
  97. data/app/controllers/hyrax/transfers_controller.rb +1 -1
  98. data/app/forms/hyrax/forms/admin/appearance.rb +2 -2
  99. data/app/forms/hyrax/forms/admin/collection_type_form.rb +24 -0
  100. data/app/forms/hyrax/forms/admin/collection_type_participant_form.rb +16 -0
  101. data/app/forms/hyrax/forms/admin_set_form.rb +1 -1
  102. data/app/forms/hyrax/forms/batch_edit_form.rb +28 -7
  103. data/app/forms/hyrax/forms/collection_form.rb +71 -13
  104. data/app/forms/hyrax/forms/dashboard/nest_collection_form.rb +98 -0
  105. data/app/forms/hyrax/forms/permission_template_form.rb +13 -13
  106. data/app/forms/hyrax/forms/work_form.rb +58 -14
  107. data/app/helpers/hyrax/ability_helper.rb +3 -0
  108. data/app/helpers/hyrax/citations_behaviors/formatters/chicago_formatter.rb +3 -10
  109. data/app/helpers/hyrax/collections_helper.rb +10 -2
  110. data/app/helpers/hyrax/dashboard_helper_behavior.rb +0 -4
  111. data/app/helpers/hyrax/hyrax_helper_behavior.rb +19 -5
  112. data/app/helpers/hyrax/trophy_helper.rb +0 -1
  113. data/app/indexers/hyrax/indexes_workflow.rb +1 -1
  114. data/app/indexers/hyrax/repository_reindexer.rb +19 -0
  115. data/app/jobs/hyrax/application_job.rb +1 -1
  116. data/app/jobs/import_export_job.rb +1 -1
  117. data/app/jobs/user_edit_profile_event_job.rb +1 -1
  118. data/app/models/admin_set.rb +5 -2
  119. data/app/models/collection_branding_info.rb +39 -0
  120. data/app/models/concerns/hyrax/ability.rb +26 -49
  121. data/app/models/concerns/hyrax/ability/admin_set_ability.rb +40 -0
  122. data/app/models/concerns/hyrax/ability/collection_ability.rb +40 -0
  123. data/app/models/concerns/hyrax/ability/collection_type_ability.rb +16 -0
  124. data/app/models/concerns/hyrax/ability/permission_template_ability.rb +18 -0
  125. data/app/models/concerns/hyrax/ability/solr_document_ability.rb +18 -0
  126. data/app/models/concerns/hyrax/collection_behavior.rb +86 -3
  127. data/app/models/concerns/hyrax/collection_nesting.rb +41 -0
  128. data/app/models/concerns/hyrax/file_set/belongs_to_works.rb +0 -15
  129. data/app/models/concerns/hyrax/file_set_behavior.rb +0 -1
  130. data/app/models/concerns/hyrax/has_rendering.rb +11 -0
  131. data/app/models/concerns/hyrax/human_readable_type.rb +3 -0
  132. data/app/models/concerns/hyrax/solr_document/metadata.rb +3 -0
  133. data/app/models/concerns/hyrax/solr_document_behavior.rb +8 -2
  134. data/app/models/concerns/hyrax/user.rb +11 -6
  135. data/app/models/concerns/hyrax/with_events.rb +12 -6
  136. data/app/models/concerns/hyrax/work_behavior.rb +3 -1
  137. data/app/models/hyrax/batch_create_operation.rb +1 -1
  138. data/app/models/hyrax/collection_type.rb +155 -0
  139. data/app/models/hyrax/collection_type_participant.rb +39 -0
  140. data/app/models/hyrax/operation.rb +14 -2
  141. data/app/models/hyrax/permission_template.rb +23 -1
  142. data/app/models/hyrax/permission_template_access.rb +56 -7
  143. data/app/models/hyrax/uploaded_file.rb +4 -1
  144. data/app/models/sipity/workflow.rb +6 -4
  145. data/app/presenters/hyrax/admin/workflow_role_presenter.rb +3 -3
  146. data/app/presenters/hyrax/admin_set_options_presenter.rb +1 -1
  147. data/app/presenters/hyrax/admin_set_presenter.rb +16 -0
  148. data/app/presenters/hyrax/collection_options_presenter.rb +1 -0
  149. data/app/presenters/hyrax/collection_presenter.rb +134 -6
  150. data/app/presenters/hyrax/displays_image.rb +39 -0
  151. data/app/presenters/hyrax/file_set_presenter.rb +1 -4
  152. data/app/presenters/hyrax/fixity_status_presenter.rb +2 -2
  153. data/app/presenters/hyrax/homepage_presenter.rb +20 -0
  154. data/app/presenters/hyrax/menu_presenter.rb +2 -1
  155. data/app/presenters/hyrax/select_collection_type_list_presenter.rb +42 -0
  156. data/app/presenters/hyrax/select_collection_type_presenter.rb +11 -0
  157. data/app/presenters/hyrax/select_type_presenter.rb +13 -4
  158. data/app/presenters/hyrax/work_show_presenter.rb +52 -1
  159. data/app/renderers/hyrax/renderers/attribute_renderer.rb +1 -1
  160. data/app/renderers/hyrax/renderers/license_attribute_renderer.rb +1 -1
  161. data/app/renderers/hyrax/renderers/rights_statement_attribute_renderer.rb +3 -2
  162. data/app/search_builders/hyrax/admin_admin_set_member_search_builder.rb +10 -1
  163. data/app/search_builders/hyrax/admin_set_search_builder.rb +9 -2
  164. data/app/search_builders/hyrax/collection_member_search_builder.rb +21 -8
  165. data/app/search_builders/hyrax/collection_search_builder.rb +37 -0
  166. data/app/search_builders/hyrax/dashboard/collections_search_builder.rb +42 -0
  167. data/app/search_builders/hyrax/dashboard/managed_search_filters.rb +24 -0
  168. data/app/search_builders/hyrax/dashboard/nested_collections_search_builder.rb +123 -0
  169. data/app/search_builders/hyrax/dashboard/works_search_builder.rb +18 -0
  170. data/app/search_builders/hyrax/filter_suppressed_with_roles.rb +5 -1
  171. data/app/search_builders/hyrax/my/collections_search_builder.rb +20 -3
  172. data/app/search_builders/hyrax/nested_collections_parent_search_builder.rb +27 -0
  173. data/app/search_builders/hyrax/search_filters.rb +8 -0
  174. data/app/services/hyrax/adapters/nesting_index_adapter.rb +192 -0
  175. data/app/services/hyrax/admin_set_create_service.rb +3 -2
  176. data/app/services/hyrax/admin_set_member_service.rb +40 -0
  177. data/app/services/hyrax/batch_create_failure_service.rb +4 -3
  178. data/app/services/hyrax/collection_types/create_service.rb +143 -0
  179. data/app/services/hyrax/collection_types/permissions_service.rb +233 -0
  180. data/app/services/hyrax/collections/collection_member_service.rb +91 -0
  181. data/app/services/hyrax/collections/managed_collections_service.rb +16 -0
  182. data/app/services/hyrax/collections/migration_service.rb +81 -0
  183. data/app/services/hyrax/collections/nested_collection_persistence_service.rb +26 -0
  184. data/app/services/hyrax/collections/nested_collection_query_service.rb +187 -0
  185. data/app/services/hyrax/collections/permissions_create_service.rb +71 -0
  186. data/app/services/hyrax/collections/permissions_service.rb +234 -0
  187. data/app/services/hyrax/collections_service.rb +3 -3
  188. data/app/services/hyrax/default_middleware_stack.rb +35 -0
  189. data/app/services/hyrax/file_set_fixity_check_service.rb +1 -1
  190. data/app/services/hyrax/graph_exporter.rb +19 -15
  191. data/app/services/hyrax/iiif_authorization_service.rb +19 -0
  192. data/app/services/hyrax/multiple_membership_checker.rb +78 -0
  193. data/app/services/hyrax/noid.rb +1 -3
  194. data/app/services/hyrax/qa_select_service.rb +11 -2
  195. data/app/services/hyrax/workflow/status_list_service.rb +1 -1
  196. data/app/services/hyrax/working_directory.rb +0 -8
  197. data/app/services/hyrax/works/managed_works_service.rb +16 -0
  198. data/app/views/_flash_msg.html.erb +1 -1
  199. data/app/views/_masthead.html.erb +0 -1
  200. data/app/views/catalog/_document.html.erb +3 -1
  201. data/app/views/catalog/_document_list.html.erb +2 -2
  202. data/app/views/catalog/_index_header_list_collection.html.erb +4 -3
  203. data/app/views/catalog/_index_header_list_default.html.erb +3 -3
  204. data/app/views/catalog/_index_list_default.html.erb +29 -14
  205. data/app/views/catalog/_thumbnail_list_collection.html.erb +3 -4
  206. data/app/views/catalog/_thumbnail_list_default.html.erb +5 -3
  207. data/app/views/hyrax/admin/admin_sets/_form.html.erb +2 -1
  208. data/app/views/hyrax/admin/admin_sets/_form_participant_table.html.erb +1 -1
  209. data/app/views/hyrax/admin/admin_sets/_form_participants.html.erb +1 -1
  210. data/app/views/hyrax/admin/admin_sets/_show_document_list_row.html.erb +3 -3
  211. data/app/views/hyrax/admin/admin_sets/edit.html.erb +1 -1
  212. data/app/views/hyrax/admin/collection_types/_form.html.erb +61 -0
  213. data/app/views/hyrax/admin/collection_types/_form_metadata.html.erb +2 -0
  214. data/app/views/hyrax/admin/collection_types/_form_metadata_admin_set.html.erb +2 -0
  215. data/app/views/hyrax/admin/collection_types/_form_participant_table.html.erb +26 -0
  216. data/app/views/hyrax/admin/collection_types/_form_participants.html.erb +62 -0
  217. data/app/views/hyrax/admin/collection_types/_form_settings.html.erb +39 -0
  218. data/app/views/hyrax/admin/collection_types/edit.html.erb +10 -0
  219. data/app/views/hyrax/admin/collection_types/index.html.erb +88 -0
  220. data/app/views/hyrax/admin/collection_types/new.html.erb +10 -0
  221. data/app/views/hyrax/base/_attribute_rows.html.erb +1 -0
  222. data/app/views/hyrax/base/_citations.html.erb +10 -6
  223. data/app/views/hyrax/base/_form_child_work_relationships.html.erb +22 -29
  224. data/app/views/hyrax/base/_form_files.html.erb +29 -16
  225. data/app/views/hyrax/base/_form_media.html.erb +1 -0
  226. data/app/views/hyrax/base/_form_member_of_collections.html.erb +44 -6
  227. data/app/views/hyrax/base/_form_metadata.html.erb +0 -3
  228. data/app/views/hyrax/base/_form_progress.html.erb +2 -1
  229. data/app/views/hyrax/base/_form_relationships.html.erb +3 -2
  230. data/app/views/hyrax/base/_form_rendering.html.erb +14 -0
  231. data/app/views/hyrax/base/_form_representative.html.erb +2 -2
  232. data/app/views/hyrax/base/_form_share.html.erb +44 -41
  233. data/app/views/hyrax/base/_form_thumbnail.html.erb +2 -2
  234. data/app/views/hyrax/base/_guts4form.html.erb +2 -2
  235. data/app/views/hyrax/base/_member.html.erb +3 -4
  236. data/app/views/hyrax/base/_metadata.html.erb +1 -5
  237. data/app/views/hyrax/base/_relationships.html.erb +1 -1
  238. data/app/views/hyrax/base/_relationships_parent_row.html.erb +1 -1
  239. data/app/views/hyrax/base/_representative_media.html.erb +8 -2
  240. data/app/views/hyrax/base/_work_title.erb +14 -7
  241. data/app/views/hyrax/base/_work_type.html.erb +4 -0
  242. data/app/views/hyrax/base/_workflow_actions.html.erb +7 -7
  243. data/app/views/hyrax/base/_workflow_actions_widget.erb +4 -2
  244. data/app/views/hyrax/base/show.html.erb +35 -26
  245. data/app/views/hyrax/batch_edits/edit.html.erb +1 -1
  246. data/app/views/hyrax/collections/_collection_description.erb +1 -1
  247. data/app/views/hyrax/collections/_default_group.html.erb +9 -11
  248. data/app/views/hyrax/collections/_list_collections.html.erb +19 -12
  249. data/app/views/hyrax/collections/_paginate.html.erb +5 -4
  250. data/app/views/hyrax/collections/_search_form.html.erb +1 -1
  251. data/app/views/hyrax/collections/_search_results.html.erb +0 -2
  252. data/app/views/hyrax/collections/_show_descriptions.html.erb +7 -6
  253. data/app/views/hyrax/collections/_show_document_list.html.erb +3 -3
  254. data/app/views/hyrax/collections/_show_document_list_row.html.erb +3 -3
  255. data/app/views/hyrax/collections/_show_parent_collections.html.erb +41 -0
  256. data/app/views/hyrax/collections/_sort_and_per_page.html.erb +16 -24
  257. data/app/views/hyrax/collections/_subcollection_list.html.erb +13 -0
  258. data/app/views/hyrax/collections/_view_type_group.html.erb +1 -1
  259. data/app/views/hyrax/collections/show.html.erb +120 -31
  260. data/app/views/hyrax/dashboard/collections/_button_for_batch_delete_collection.html.erb +4 -0
  261. data/app/views/hyrax/dashboard/collections/_button_for_remove_selected_from_collection.html.erb +0 -1
  262. data/app/views/hyrax/dashboard/collections/_button_for_update_collection.html.erb +1 -1
  263. data/app/views/hyrax/dashboard/collections/_button_remove_from_collection.html.erb +1 -1
  264. data/app/views/hyrax/dashboard/collections/_collection_title.html.erb +25 -0
  265. data/app/views/hyrax/dashboard/collections/_document_list.html.erb +1 -5
  266. data/app/views/hyrax/dashboard/collections/_edit_actions.html.erb +2 -2
  267. data/app/views/hyrax/dashboard/collections/_flash_msg.html.erb +9 -0
  268. data/app/views/hyrax/dashboard/collections/_form.html.erb +46 -24
  269. data/app/views/hyrax/dashboard/collections/_form_branding.html.erb +153 -0
  270. data/app/views/hyrax/dashboard/collections/_form_default_group_delt.html.erb +27 -0
  271. data/app/views/hyrax/dashboard/collections/_form_discovery.html.erb +18 -0
  272. data/app/views/hyrax/dashboard/collections/_form_share.html.erb +69 -81
  273. data/app/views/hyrax/dashboard/collections/_form_share_table.html.erb +31 -0
  274. data/app/views/hyrax/dashboard/collections/_list_collections.html.erb +54 -37
  275. data/app/views/hyrax/dashboard/collections/_modal_remove_from_collection.html.erb +17 -0
  276. data/app/views/hyrax/dashboard/collections/_modal_remove_sub_collection.html.erb +17 -0
  277. data/app/views/hyrax/dashboard/collections/_show_actions.html.erb +27 -21
  278. data/app/views/hyrax/dashboard/collections/_show_add_items_actions.html.erb +25 -0
  279. data/app/views/hyrax/dashboard/collections/_show_document_list.html.erb +4 -3
  280. data/app/views/hyrax/dashboard/collections/_show_document_list_row.html.erb +6 -5
  281. data/app/views/hyrax/dashboard/collections/_show_parent_collection_row.html.erb +6 -0
  282. data/app/views/hyrax/dashboard/collections/_show_parent_collections.html.erb +37 -0
  283. data/app/views/hyrax/dashboard/collections/_show_subcollection_actions.html.erb +26 -0
  284. data/app/views/hyrax/dashboard/collections/_sort_and_per_page.html.erb +28 -27
  285. data/app/views/hyrax/dashboard/collections/_subcollection_list.html.erb +21 -0
  286. data/app/views/hyrax/dashboard/collections/_work_action_menu.html.erb +1 -1
  287. data/app/views/hyrax/dashboard/collections/edit.html.erb +8 -31
  288. data/app/views/hyrax/dashboard/collections/new.html.erb +2 -3
  289. data/app/views/hyrax/dashboard/collections/show.html.erb +102 -35
  290. data/app/views/hyrax/dashboard/sidebar/_configuration.html.erb +5 -0
  291. data/app/views/hyrax/dashboard/sidebar/_repository_content.html.erb +0 -5
  292. data/app/views/hyrax/dashboard/sidebar/_tasks.html.erb +10 -0
  293. data/app/views/hyrax/dashboard/works/_default_group.html.erb +1 -0
  294. data/app/views/hyrax/dashboard/works/_list_works.html.erb +4 -0
  295. data/app/views/hyrax/file_sets/_extra_fields_modal.html.erb +1 -1
  296. data/app/views/hyrax/file_sets/_form.html.erb +2 -2
  297. data/app/views/hyrax/file_sets/_show_characterization_details.html.erb +1 -1
  298. data/app/views/hyrax/file_sets/media_display/_image.html.erb +3 -5
  299. data/app/views/hyrax/file_sets/media_display/_office_document.html.erb +3 -5
  300. data/app/views/hyrax/file_sets/media_display/_pdf.html.erb +3 -5
  301. data/app/views/hyrax/homepage/_featured.html.erb +5 -5
  302. data/app/views/hyrax/homepage/_featured_fields.html.erb +10 -14
  303. data/app/views/hyrax/homepage/_featured_works.html.erb +1 -1
  304. data/app/views/hyrax/homepage/_home_content.html.erb +2 -2
  305. data/app/views/hyrax/homepage/_recent_document.html.erb +14 -12
  306. data/app/views/hyrax/homepage/_recently_uploaded.html.erb +2 -6
  307. data/app/views/hyrax/homepage/index.html.erb +4 -2
  308. data/app/views/hyrax/my/_admin_set_action_menu.html.erb +54 -0
  309. data/app/views/hyrax/my/_collection_action_menu.html.erb +41 -9
  310. data/app/views/hyrax/my/_facet_pivot.html.erb +26 -0
  311. data/app/views/hyrax/my/_search_header.html.erb +1 -15
  312. data/app/views/hyrax/my/_sort_and_per_page.html.erb +12 -13
  313. data/app/views/hyrax/my/_work_action_menu.html.erb +17 -15
  314. data/app/views/hyrax/my/collections/_batch_actions.html.erb +5 -0
  315. data/app/views/hyrax/my/collections/_default_group.html.erb +21 -12
  316. data/app/views/hyrax/my/collections/_list_collections.html.erb +57 -35
  317. data/app/views/hyrax/my/collections/_modal_add_subcollection.html.erb +38 -0
  318. data/app/views/hyrax/my/collections/_modal_add_to_collection.html.erb +31 -0
  319. data/app/views/hyrax/my/collections/_modal_add_to_collection_deny.html.erb +12 -0
  320. data/app/views/hyrax/my/collections/_modal_add_to_collection_permission_deny.html.erb +12 -0
  321. data/app/views/hyrax/my/collections/_modal_collection_types_to_create.html.erb +36 -0
  322. data/app/views/hyrax/my/collections/_modal_delete_admin_set_deny.html.erb +12 -0
  323. data/app/views/hyrax/my/collections/_modal_delete_collection.html.erb +19 -0
  324. data/app/views/hyrax/my/collections/_modal_delete_collection_deny.html.erb +14 -0
  325. data/app/views/hyrax/my/collections/_modal_delete_deny.html.erb +14 -0
  326. data/app/views/hyrax/my/collections/_modal_delete_empty_collection.html.erb +18 -0
  327. data/app/views/hyrax/my/collections/_modal_delete_selected_collections.html.erb +17 -0
  328. data/app/views/hyrax/my/collections/_modal_edit_deny.html.erb +14 -0
  329. data/app/views/hyrax/my/collections/_tabs.html.erb +3 -3
  330. data/app/views/hyrax/my/collections/index.html.erb +46 -21
  331. data/app/views/hyrax/my/works/_batch_actions.html.erb +14 -0
  332. data/app/views/hyrax/my/works/_default_group.html.erb +10 -12
  333. data/app/views/hyrax/my/works/_tabs.html.erb +1 -1
  334. data/app/views/hyrax/my/works/index.html.erb +7 -5
  335. data/app/views/hyrax/notifications/_notifications.html.erb +3 -3
  336. data/app/views/hyrax/permissions/confirm_access.html.erb +1 -1
  337. data/app/views/hyrax/stats/file.html.erb +1 -1
  338. data/app/views/hyrax/stats/work.html.erb +1 -1
  339. data/app/views/hyrax/transfers/_received.html.erb +1 -1
  340. data/app/views/hyrax/transfers/_sent.html.erb +1 -1
  341. data/app/views/hyrax/uploads/_js_templates_branding.html.erb +120 -0
  342. data/app/views/hyrax/users/_activity_log.html.erb +3 -3
  343. data/app/views/kaminari/blacklight_compact/_paginator.html.erb +23 -0
  344. data/app/views/layouts/hyrax.html.erb +9 -11
  345. data/app/views/layouts/{dashboard.html.erb → hyrax/dashboard.html.erb} +0 -0
  346. data/app/views/shared/_select_work_type_modal.html.erb +25 -26
  347. data/config/features.rb +4 -0
  348. data/config/initializers/hyrax_callbacks.rb +2 -2
  349. data/config/initializers/samvera-nesting_indexer_initializer.rb +15 -0
  350. data/config/locales/hyrax.de.yml +364 -79
  351. data/config/locales/hyrax.en.yml +874 -584
  352. data/config/locales/hyrax.es.yml +323 -35
  353. data/config/locales/hyrax.fr.yml +323 -39
  354. data/config/locales/hyrax.it.yml +322 -39
  355. data/config/locales/hyrax.pt-BR.yml +317 -39
  356. data/config/locales/hyrax.zh.yml +420 -142
  357. data/config/routes.rb +17 -0
  358. data/hyrax.gemspec +58 -57
  359. data/lib/generators/hyrax/assets_generator.rb +2 -4
  360. data/lib/generators/hyrax/clamav_generator.rb +0 -2
  361. data/lib/generators/hyrax/config_generator.rb +0 -2
  362. data/lib/generators/hyrax/install_generator.rb +12 -3
  363. data/lib/generators/hyrax/riiif_generator.rb +54 -0
  364. data/lib/generators/hyrax/templates/app/assets/images/us_404.svg +91 -0
  365. data/lib/generators/hyrax/templates/config/initializers/hyrax.rb +48 -3
  366. data/lib/generators/hyrax/templates/config/initializers/riiif.rb +26 -0
  367. data/lib/generators/hyrax/templates/config/locales/hyrax.en.yml +4 -4
  368. data/lib/generators/hyrax/templates/config/locales/hyrax.fr.yml +0 -4
  369. data/lib/generators/hyrax/templates/db/migrate/20170808160431_create_collection_types.rb.erb +17 -0
  370. data/lib/generators/hyrax/templates/db/migrate/20170808160432_update_collection_type_column_names.rb.erb +9 -0
  371. data/lib/generators/hyrax/templates/db/migrate/20170810190549_update_collection_type_column_options.rb.erb +9 -0
  372. data/lib/generators/hyrax/templates/db/migrate/20170816180307_create_collection_branding_infos.rb.erb +15 -0
  373. data/lib/generators/hyrax/templates/db/migrate/20170817152654_create_collection_type_participants.rb.erb +11 -0
  374. data/lib/generators/hyrax/templates/db/migrate/20170821152307_rename_admin_set_id_to_source_id.rb.erb +5 -0
  375. data/lib/generators/hyrax/templates/db/migrate/20171103080032_add_collection_type_sharing_options.rb.erb +5 -0
  376. data/lib/generators/hyrax/templates/db/seeds.rb +226 -22
  377. data/lib/generators/hyrax/work/templates/controller.rb.erb +1 -1
  378. data/lib/generators/hyrax/work/templates/feature_spec.rb.erb +37 -1
  379. data/lib/generators/hyrax/work/templates/form.rb.erb +1 -0
  380. data/lib/generators/hyrax/work/templates/indexer.rb.erb +0 -1
  381. data/lib/generators/hyrax/work/templates/locale.de.yml.erb +1 -1
  382. data/lib/generators/hyrax/work/templates/locale.en.yml.erb +1 -1
  383. data/lib/generators/hyrax/work/templates/locale.es.yml.erb +1 -1
  384. data/lib/generators/hyrax/work/templates/locale.fr.yml.erb +1 -1
  385. data/lib/generators/hyrax/work/templates/locale.it.yml.erb +1 -1
  386. data/lib/generators/hyrax/work/templates/locale.pt-BR.yml.erb +1 -1
  387. data/lib/generators/hyrax/work/templates/locale.zh.yml.erb +1 -1
  388. data/lib/generators/hyrax/work/templates/model.rb.erb +0 -2
  389. data/lib/hyrax.rb +1 -1
  390. data/lib/hyrax/configuration.rb +96 -7
  391. data/lib/hyrax/engine.rb +5 -4
  392. data/lib/hyrax/rails/routes.rb +1 -1
  393. data/lib/hyrax/version.rb +1 -1
  394. data/lib/tasks/default_admin_set.rake +5 -3
  395. data/lib/tasks/default_collection_type.rake +19 -0
  396. data/lib/tasks/migrate.rake +8 -0
  397. data/spec/abilities/ability_spec.rb +4 -1
  398. data/spec/abilities/admin_set_ability_spec.rb +172 -0
  399. data/spec/abilities/collection_ability_spec.rb +194 -0
  400. data/spec/abilities/collection_type_ability_spec.rb +72 -0
  401. data/spec/abilities/file_set_abilities_spec.rb +3 -3
  402. data/spec/abilities/generic_work_abilities_spec.rb +5 -5
  403. data/spec/abilities/permission_template_ability_spec.rb +145 -0
  404. data/spec/abilities/solr_document_ability_spec.rb +27 -0
  405. data/spec/actors/hyrax/actors/apply_permission_template_actor_spec.rb +96 -28
  406. data/spec/actors/hyrax/actors/collections_membership_actor_spec.rb +283 -15
  407. data/spec/actors/hyrax/actors/create_with_remote_files_actor_spec.rb +7 -7
  408. data/spec/actors/hyrax/actors/default_admin_set_actor_spec.rb +1 -1
  409. data/spec/actors/hyrax/actors/file_actor_spec.rb +0 -1
  410. data/spec/actors/hyrax/actors/file_set_actor_spec.rb +8 -6
  411. data/spec/actors/hyrax/actors/generic_work_actor_spec.rb +11 -39
  412. data/spec/actors/hyrax/actors/interpret_visibility_actor_spec.rb +15 -15
  413. data/spec/actors/hyrax/actors/model_actor_spec.rb +0 -2
  414. data/spec/authorities/qa/authorities/collections_spec.rb +68 -0
  415. data/spec/channels/hyrax/application_cable/channel_spec.rb +1 -1
  416. data/spec/channels/hyrax/application_cable/connection_spec.rb +1 -1
  417. data/spec/channels/hyrax/notifications_channel_spec.rb +1 -1
  418. data/spec/controllers/catalog_controller_spec.rb +1 -1
  419. data/spec/controllers/hyrax/admin/admin_sets_controller_spec.rb +27 -1
  420. data/spec/controllers/hyrax/admin/collection_type_participants_controller_spec.rb +152 -0
  421. data/spec/controllers/hyrax/admin/collection_types_controller_spec.rb +320 -0
  422. data/spec/controllers/hyrax/admin/permission_template_accesses_controller_spec.rb +68 -29
  423. data/spec/controllers/hyrax/admin/permission_templates_controller_spec.rb +37 -10
  424. data/spec/controllers/hyrax/admin/strategies_controller_spec.rb +2 -13
  425. data/spec/controllers/hyrax/admin/workflow_roles_controller_spec.rb +52 -2
  426. data/spec/controllers/hyrax/batch_edits_controller_spec.rb +75 -4
  427. data/spec/controllers/hyrax/batch_uploads_controller_spec.rb +2 -2
  428. data/spec/controllers/hyrax/collections_controller_spec.rb +15 -6
  429. data/spec/controllers/hyrax/content_blocks_controller_spec.rb +5 -5
  430. data/spec/controllers/hyrax/dashboard/collection_members_controller_spec.rb +408 -0
  431. data/spec/controllers/hyrax/dashboard/collections_controller_spec.rb +114 -18
  432. data/spec/controllers/hyrax/dashboard/nest_collections_controller_spec.rb +360 -0
  433. data/spec/controllers/hyrax/dashboard/profiles_controller_spec.rb +2 -2
  434. data/spec/controllers/hyrax/dashboard/works_controller_spec.rb +1 -1
  435. data/spec/controllers/hyrax/downloads_controller_spec.rb +3 -3
  436. data/spec/controllers/hyrax/featured_work_lists_controller_spec.rb +2 -2
  437. data/spec/controllers/hyrax/file_sets_controller_spec.rb +8 -136
  438. data/spec/controllers/hyrax/fixity_checks_controller_spec.rb +1 -1
  439. data/spec/controllers/hyrax/generic_works_controller_spec.rb +64 -2
  440. data/spec/controllers/hyrax/homepage_controller_spec.rb +1 -1
  441. data/spec/controllers/hyrax/my/works_controller_spec.rb +4 -1
  442. data/spec/controllers/hyrax/pages_controller_spec.rb +11 -11
  443. data/spec/controllers/hyrax/users_controller_spec.rb +1 -1
  444. data/spec/controllers/hyrax/workflow_actions_controller_spec.rb +1 -1
  445. data/spec/conversions/power_converters/polymorphic_type_spec.rb +2 -2
  446. data/spec/conversions/power_converters/sipity_agent_spec.rb +1 -1
  447. data/spec/conversions/power_converters/sipity_role_spec.rb +1 -1
  448. data/spec/conversions/power_converters/sipity_workflow_state_spec.rb +1 -1
  449. data/spec/factories/admin_sets.rb +3 -3
  450. data/spec/factories/collection_branding_infos.rb +11 -0
  451. data/spec/factories/collection_type_participants.rb +8 -0
  452. data/spec/factories/collection_types.rb +104 -0
  453. data/spec/factories/collections.rb +323 -0
  454. data/spec/factories/collections_factory.rb +106 -3
  455. data/spec/factories/file_sets.rb +2 -2
  456. data/spec/factories/generic_works.rb +22 -14
  457. data/spec/factories/object_id.rb +6 -0
  458. data/spec/factories/permission_templates.rb +46 -8
  459. data/spec/factories/users.rb +1 -1
  460. data/spec/factory_tests/collections_factory_spec.rb +211 -0
  461. data/spec/features/admin_spec.rb +1 -1
  462. data/spec/features/batch_create_spec.rb +1 -1
  463. data/spec/features/batch_edit_spec.rb +0 -1
  464. data/spec/features/browse_catalog_spec.rb +1 -3
  465. data/spec/features/browse_dashboard_works_spec.rb +0 -1
  466. data/spec/features/collection_multi_membership_spec.rb +188 -0
  467. data/spec/features/collection_spec.rb +45 -7
  468. data/spec/features/collection_type_spec.rb +338 -0
  469. data/spec/features/create_child_work_spec.rb +1 -1
  470. data/spec/features/create_work_admin_spec.rb +44 -0
  471. data/spec/features/create_work_spec.rb +1 -1
  472. data/spec/features/dashboard/all_works.rb +1 -1
  473. data/spec/features/dashboard/collection_spec.rb +724 -115
  474. data/spec/features/delete_work_spec.rb +1 -1
  475. data/spec/features/edit_file_spec.rb +1 -1
  476. data/spec/features/edit_work_spec.rb +1 -1
  477. data/spec/features/embargo_spec.rb +1 -1
  478. data/spec/features/homepage_spec.rb +3 -3
  479. data/spec/features/lease_spec.rb +1 -1
  480. data/spec/features/notifications_spec.rb +2 -2
  481. data/spec/features/ownership_transfer_spec.rb +1 -2
  482. data/spec/features/proxy_spec.rb +1 -1
  483. data/spec/features/search_spec.rb +12 -11
  484. data/spec/features/static_pages_spec.rb +1 -1
  485. data/spec/features/users_spec.rb +1 -1
  486. data/spec/features/work_generator_spec.rb +1 -1
  487. data/spec/features/work_show_spec.rb +4 -4
  488. data/spec/features/workflow_roles_spec.rb +1 -1
  489. data/spec/features/workflow_state_changes_spec.rb +2 -2
  490. data/spec/forms/hyrax/forms/admin/collection_type_form_spec.rb +106 -0
  491. data/spec/forms/hyrax/forms/admin/collection_type_participant_form_spec.rb +10 -0
  492. data/spec/forms/hyrax/forms/admin_set_form_spec.rb +1 -1
  493. data/spec/forms/hyrax/forms/batch_edit_form_spec.rb +1 -1
  494. data/spec/forms/hyrax/forms/batch_upload_form_spec.rb +1 -0
  495. data/spec/forms/hyrax/forms/collection_form_spec.rb +52 -4
  496. data/spec/forms/hyrax/forms/dashboard/nest_collection_form_spec.rb +159 -0
  497. data/spec/forms/hyrax/forms/permission_template_form_spec.rb +15 -12
  498. data/spec/forms/hyrax/forms/work_form_spec.rb +61 -12
  499. data/spec/forms/hyrax/forms/workflow_action_form_spec.rb +1 -1
  500. data/spec/forms/hyrax/generic_work_form_spec.rb +6 -3
  501. data/spec/helpers/hyrax/ability_helper_spec.rb +11 -0
  502. data/spec/helpers/hyrax/collections_helper_spec.rb +17 -39
  503. data/spec/helpers/hyrax/content_block_helper_spec.rb +1 -1
  504. data/spec/helpers/{dashboard_helper_spec.rb → hyrax/dashboard_helper_behavior_spec.rb} +1 -12
  505. data/spec/helpers/hyrax/trophy_helper_spec.rb +1 -1
  506. data/spec/helpers/hyrax_helper_spec.rb +0 -3
  507. data/spec/indexers/hyrax/generic_work_indexer_spec.rb +4 -4
  508. data/spec/indexers/hyrax/repository_reindexer_spec.rb +8 -0
  509. data/spec/javascripts/relationships_control_spec.js.coffee +3 -3
  510. data/spec/javascripts/settings_spec.js +73 -0
  511. data/spec/jobs/user_edit_profile_event_job_spec.rb +1 -1
  512. data/spec/lib/hyrax/configuration_spec.rb +16 -0
  513. data/spec/models/admin_set_spec.rb +42 -4
  514. data/spec/models/collection_branding_info_spec.rb +61 -0
  515. data/spec/models/collection_spec.rb +228 -3
  516. data/spec/models/concerns/hyrax/collection_nesting_spec.rb +64 -0
  517. data/spec/models/file_set_spec.rb +4 -4
  518. data/spec/models/generic_work_spec.rb +1 -1
  519. data/spec/models/hyrax/batch_create_operation_spec.rb +59 -0
  520. data/spec/models/hyrax/collection_type_participant_spec.rb +43 -0
  521. data/spec/models/hyrax/collection_type_spec.rb +235 -0
  522. data/spec/models/hyrax/operation_spec.rb +27 -1
  523. data/spec/models/hyrax/permission_template_access_spec.rb +128 -5
  524. data/spec/models/hyrax/permission_template_spec.rb +85 -29
  525. data/spec/models/hyrax/user_usage_stats_spec.rb +1 -1
  526. data/spec/models/hyrax/work_behavior_spec.rb +12 -2
  527. data/spec/models/sipity/agent_spec.rb +1 -1
  528. data/spec/models/sipity/comment_spec.rb +1 -1
  529. data/spec/models/sipity/entity_spec.rb +3 -3
  530. data/spec/models/sipity/entity_specific_responsibility_spec.rb +1 -1
  531. data/spec/models/sipity/notifiable_context_spec.rb +1 -1
  532. data/spec/models/sipity/notification_recipient_spec.rb +1 -1
  533. data/spec/models/sipity/notification_spec.rb +1 -1
  534. data/spec/models/sipity/role_spec.rb +1 -1
  535. data/spec/models/sipity/workflow_action_spec.rb +1 -1
  536. data/spec/models/sipity/workflow_responsibility_spec.rb +1 -1
  537. data/spec/models/sipity/workflow_role_spec.rb +1 -1
  538. data/spec/models/sipity/workflow_spec.rb +7 -7
  539. data/spec/models/sipity/workflow_state_action_permission_spec.rb +1 -1
  540. data/spec/models/sipity/workflow_state_action_spec.rb +1 -1
  541. data/spec/models/sipity/workflow_state_spec.rb +1 -1
  542. data/spec/models/solr_document_spec.rb +24 -0
  543. data/spec/models/user_mailbox_spec.rb +0 -2
  544. data/spec/models/user_spec.rb +7 -7
  545. data/spec/presenters/hyrax/admin/users_presenter_spec.rb +2 -2
  546. data/spec/presenters/hyrax/admin_set_options_presenter_spec.rb +7 -7
  547. data/spec/presenters/hyrax/admin_set_presenter_spec.rb +20 -0
  548. data/spec/presenters/hyrax/collection_options_presenter_spec.rb +2 -0
  549. data/spec/presenters/hyrax/collection_presenter_spec.rb +375 -6
  550. data/spec/presenters/hyrax/file_set_presenter_spec.rb +124 -5
  551. data/spec/presenters/hyrax/inspect_work_presenter_spec.rb +1 -1
  552. data/spec/presenters/hyrax/menu_presenter_spec.rb +5 -0
  553. data/spec/presenters/hyrax/select_collection_type_list_presenter_spec.rb +59 -0
  554. data/spec/presenters/hyrax/select_collection_type_presenter_spec.rb +10 -0
  555. data/spec/presenters/hyrax/select_type_presenter_spec.rb +12 -0
  556. data/spec/presenters/hyrax/work_show_presenter_spec.rb +116 -1
  557. data/spec/presenters/hyrax/workflow_presenter_spec.rb +1 -1
  558. data/spec/renderers/hyrax/renderers/attribute_renderer_spec.rb +6 -6
  559. data/spec/renderers/hyrax/renderers/date_attribute_renderer_spec.rb +2 -2
  560. data/spec/renderers/hyrax/renderers/external_link_attribute_renderer_spec.rb +1 -1
  561. data/spec/renderers/hyrax/renderers/faceted_attribute_renderer_spec.rb +2 -2
  562. data/spec/renderers/hyrax/renderers/license_attribute_renderer_spec.rb +2 -2
  563. data/spec/renderers/hyrax/renderers/linked_attribute_renderer_spec.rb +2 -2
  564. data/spec/renderers/hyrax/renderers/rights_statement_attribute_renderer_spec.rb +10 -1
  565. data/spec/requests/riiif_spec.rb +32 -0
  566. data/spec/routing/collection_permission_templates_routes_spec.rb +31 -0
  567. data/spec/routing/collection_types_routes.rb +35 -0
  568. data/spec/routing/dashboard_routes_spec.rb +37 -0
  569. data/spec/routing/route_spec.rb +4 -10
  570. data/spec/search_builders/hyrax/admin_admin_set_member_search_builder_spec.rb +2 -2
  571. data/spec/search_builders/hyrax/admin_set_search_builder_spec.rb +4 -40
  572. data/spec/search_builders/hyrax/collection_member_search_builder_spec.rb +53 -0
  573. data/spec/search_builders/hyrax/collection_search_builder_spec.rb +74 -0
  574. data/spec/search_builders/hyrax/dashboard/collections_search_builder_spec.rb +92 -0
  575. data/spec/search_builders/hyrax/dashboard/nested_collections_search_builder_spec.rb +85 -0
  576. data/spec/search_builders/hyrax/dashboard/works_search_builder_spec.rb +44 -0
  577. data/spec/search_builders/hyrax/my/collections_search_builder_spec.rb +35 -0
  578. data/spec/search_builders/hyrax/work_search_builder_spec.rb +47 -10
  579. data/spec/services/hyrax/adapters/nesting_index_adapter_spec.rb +191 -0
  580. data/spec/services/hyrax/admin_set_create_service_spec.rb +6 -2
  581. data/spec/services/hyrax/admin_set_member_service_spec.rb +21 -0
  582. data/spec/services/hyrax/batch_create_failure_service_spec.rb +6 -2
  583. data/spec/services/hyrax/collection_types/create_service_spec.rb +91 -0
  584. data/spec/services/hyrax/collection_types/permissions_service_spec.rb +297 -0
  585. data/spec/services/hyrax/collections/collection_member_service_spec.rb +49 -0
  586. data/spec/services/hyrax/collections/managed_collections_service_spec.rb +17 -0
  587. data/spec/services/hyrax/collections/migration_service_spec.rb +280 -0
  588. data/spec/services/hyrax/collections/nested_collection_persistence_service_spec.rb +28 -0
  589. data/spec/services/hyrax/collections/nested_collection_query_service_spec.rb +353 -0
  590. data/spec/services/hyrax/collections/permissions_create_service_spec.rb +41 -0
  591. data/spec/services/hyrax/collections/permissions_service_spec.rb +278 -0
  592. data/spec/services/hyrax/collections_service_spec.rb +30 -8
  593. data/spec/services/hyrax/embargo_service_spec.rb +26 -5
  594. data/spec/services/hyrax/iiif_authorization_service_spec.rb +43 -0
  595. data/spec/services/hyrax/multiple_membership_checker_spec.rb +155 -0
  596. data/spec/services/hyrax/qa_select_service_spec.rb +8 -2
  597. data/spec/services/hyrax/workflow/notification_configuration_parameter_spec.rb +1 -1
  598. data/spec/services/hyrax/workflow/notification_generator_spec.rb +1 -1
  599. data/spec/services/hyrax/workflow/permission_generator_spec.rb +1 -1
  600. data/spec/services/hyrax/workflow/permission_query_spec.rb +2 -2
  601. data/spec/services/hyrax/workflow/status_list_service_spec.rb +1 -1
  602. data/spec/services/hyrax/workflow/workflow_factory_spec.rb +1 -1
  603. data/spec/services/hyrax/workflow/workflow_schema_spec.rb +1 -1
  604. data/spec/services/hyrax/works/managed_works_service_spec.rb +17 -0
  605. data/spec/spec_helper.rb +34 -4
  606. data/spec/support/features/session_helpers.rb +1 -1
  607. data/spec/support/matchers/collection_type_property_matchers.rb +29 -0
  608. data/spec/test_app_templates/lib/generators/test_app_generator.rb +64 -24
  609. data/spec/views/_flash_msg.html.erb_spec.rb +0 -2
  610. data/spec/views/_user_util_links.html.erb_spec.rb +0 -2
  611. data/spec/views/catalog/_index_list_default.html.erb_spec.rb +9 -9
  612. data/spec/views/hyrax/admin/admin_sets/_form_participant_table.html.erb_spec.rb +42 -20
  613. data/spec/views/hyrax/admin/collection_types/_form.html.erb_spec.rb +43 -0
  614. data/spec/views/hyrax/admin/collection_types/_form_metadata.html.erb_spec.rb +27 -0
  615. data/spec/views/hyrax/admin/collection_types/_form_metadata_admin_set.html.erb_spec.rb +27 -0
  616. data/spec/views/hyrax/admin/collection_types/_form_participants.html.erb_spec.rb +16 -0
  617. data/spec/views/hyrax/admin/collection_types/_form_participants_table.html.erb_spec.rb +73 -0
  618. data/spec/views/hyrax/admin/collection_types/_form_settings.html.erb_spec.rb +106 -0
  619. data/spec/views/hyrax/admin/collection_types/index.html.erb_spec.rb +41 -0
  620. data/spec/views/hyrax/admin/users/index.html.erb_spec.rb +1 -1
  621. data/spec/views/hyrax/base/_form.html.erb_spec.rb +18 -42
  622. data/spec/views/hyrax/base/_form_child_work_relationships.html.erb_spec.rb +11 -22
  623. data/spec/views/hyrax/base/_form_files.html.erb_spec.rb +38 -0
  624. data/spec/views/hyrax/base/_form_progress.html.erb_spec.rb +1 -1
  625. data/spec/views/hyrax/base/_form_relationships.html.erb_spec.rb +1 -2
  626. data/spec/views/hyrax/base/_form_rendering.html.erb_spec.rb +18 -0
  627. data/spec/views/hyrax/base/file_manager.html.erb_spec.rb +1 -1
  628. data/spec/views/hyrax/base/show.html.erb_spec.rb +24 -5
  629. data/spec/views/hyrax/collections/_show_descriptions.html.erb_spec.rb +1 -1
  630. data/spec/views/hyrax/collections/_show_parent_collections.html.erb_spec.rb +124 -0
  631. data/spec/views/hyrax/collections/_sort_and_per_page.html.erb_spec.rb +60 -0
  632. data/spec/views/hyrax/collections/_subcollection_list.html.erb_spec.rb +39 -0
  633. data/spec/views/hyrax/collections/show.html.erb_spec.rb +20 -23
  634. data/spec/views/hyrax/dashboard/_sidebar.html.erb_spec.rb +14 -9
  635. data/spec/views/hyrax/dashboard/collections/_form.html.erb_spec.rb +5 -1
  636. data/spec/views/hyrax/dashboard/collections/_form_branding.html.erb_spec.rb +23 -0
  637. data/spec/views/hyrax/dashboard/collections/_form_discovery.erb_spec.rb +67 -0
  638. data/spec/views/hyrax/dashboard/collections/_form_share.erb_spec.rb +13 -34
  639. data/spec/views/hyrax/dashboard/collections/_form_share_table.html.erb_spec.rb +108 -0
  640. data/spec/views/hyrax/dashboard/collections/_show_actions.html.erb_spec.rb +64 -0
  641. data/spec/views/hyrax/dashboard/collections/_show_add_items_actions.html.erb_spec.rb +44 -0
  642. data/spec/views/hyrax/dashboard/collections/_show_descriptions.html.erb_spec.rb +1 -1
  643. data/spec/views/hyrax/dashboard/collections/_show_parent_collection_row.html.erb_spec.rb +23 -0
  644. data/spec/views/hyrax/dashboard/collections/_show_parent_collections.html.erb_spec.rb +118 -0
  645. data/spec/views/hyrax/dashboard/collections/_show_subcollection_actions.html.erb_spec.rb +62 -0
  646. data/spec/views/hyrax/dashboard/collections/_sort_and_per_page.html.erb_spec.rb +60 -0
  647. data/spec/views/hyrax/dashboard/collections/_subcollection_list.html.erb_spec.rb +63 -0
  648. data/spec/views/hyrax/dashboard/collections/_work_action_menu.html.erb_spec.rb +18 -0
  649. data/spec/views/hyrax/dashboard/collections/edit.html.erb_spec.rb +5 -13
  650. data/spec/views/hyrax/dashboard/collections/show.html.erb_spec.rb +86 -9
  651. data/spec/views/hyrax/file_sets/_show_actions.html.erb_spec.rb +1 -1
  652. data/spec/views/hyrax/homepage/_featured_works.html.erb_spec.rb +1 -1
  653. data/spec/views/hyrax/homepage/index.html.erb_spec.rb +14 -5
  654. data/spec/views/hyrax/my/_collection_action_menu.html.erb_spec.rb +65 -0
  655. data/spec/views/hyrax/my/_search_header.html.erb_spec.rb +6 -6
  656. data/spec/views/hyrax/my/_work_action_menu.html.erb_spec.rb +6 -4
  657. data/spec/views/hyrax/my/collections/_list_collections.html.erb_spec.rb +90 -22
  658. data/spec/views/hyrax/my/works/index.html.erb_spec.rb +3 -1
  659. data/spec/views/hyrax/users/_user_info.html.erb_spec.rb +16 -18
  660. data/spec/views/pages/show.html.erb_spec.rb +1 -1
  661. data/spec/views/shared/select_work_type_modal.html.erb_spec.rb +36 -10
  662. data/tasks/hyrax_dev.rake +27 -4
  663. data/template.rb +2 -1
  664. metadata +578 -290
  665. data/.solr_wrapper +0 -6
  666. data/app/assets/javascripts/hyrax/relationships/work.es6 +0 -7
  667. data/app/assets/javascripts/hyrax/workflow_actions_affix.js +0 -14
  668. data/app/assets/stylesheets/hyrax/_work_editor.scss +0 -17
  669. data/app/controllers/concerns/hyrax/parent_container.rb +0 -35
  670. data/app/helpers/dashboard_helper.rb +0 -3
  671. data/app/services/hyrax/parent_service.rb +0 -19
  672. data/app/views/catalog/_show_partials/_default.html.erb +0 -21
  673. data/app/views/catalog/_show_partials/_default_details.html.erb +0 -15
  674. data/app/views/catalog/_show_partials/_facets.html.erb +0 -52
  675. data/app/views/hyrax/base/_browse_everything.html.erb +0 -6
  676. data/app/views/hyrax/base/_find_work_widget.html.erb +0 -10
  677. data/app/views/hyrax/dashboard/collections/_form_default_group.html.erb +0 -25
  678. data/app/views/hyrax/dashboard/collections/_form_permission.html.erb +0 -24
  679. data/app/views/hyrax/file_sets/jq_upload.json.jbuilder +0 -8
  680. data/solr/config/_rest_managed.json +0 -3
  681. data/solr/config/admin-extra.html +0 -31
  682. data/solr/config/elevate.xml +0 -36
  683. data/solr/config/mapping-ISOLatin1Accent.txt +0 -246
  684. data/solr/config/protwords.txt +0 -21
  685. data/solr/config/schema.xml +0 -366
  686. data/solr/config/scripts.conf +0 -24
  687. data/solr/config/solrconfig.xml +0 -322
  688. data/solr/config/spellings.txt +0 -2
  689. data/solr/config/stopwords.txt +0 -58
  690. data/solr/config/stopwords_en.txt +0 -58
  691. data/solr/config/synonyms.txt +0 -31
  692. data/solr/config/xslt/example.xsl +0 -132
  693. data/solr/config/xslt/example_atom.xsl +0 -67
  694. data/solr/config/xslt/example_rss.xsl +0 -66
  695. data/solr/config/xslt/luke.xsl +0 -337
  696. data/spec/abilities/admin_set_abilities_spec.rb +0 -15
  697. data/spec/abilities/collection_abilities_spec.rb +0 -51
  698. data/spec/features/admin_admin_set_spec.rb +0 -30
  699. data/spec/helpers/hyrax/citations_behaviors/formatters/chicago_formatter_spec.rb +0 -10
  700. data/spec/services/hyrax/parent_service_spec.rb +0 -11
  701. data/spec/support/uploaded_file_monkeypatch.rb +0 -6
  702. data/spec/views/hyrax/base/_browse_everything.html.erb_spec.rb +0 -17
  703. data/spec/views/hyrax/base/_find_work_widget.html.erb_spec.rb +0 -20
@@ -21,7 +21,7 @@ RSpec.describe Hyrax::FixityChecksController do
21
21
  # { file_id => [{ "checked_uri" => "...4-4d71-83ba-1bc52a5e4300/fcr:versions/version1", "passed" => true },
22
22
  # { "checked_uri" => ".../version2", "passed" => false },
23
23
  # ...] }
24
- json_response.each do |_file_id, array_of_checks|
24
+ json_response.each_value do |array_of_checks|
25
25
  array_of_checks.each do |check_hash|
26
26
  expect(check_hash.keys).to include("file_set_id", "file_id", "checked_uri", "passed", "expected_result", "created_at")
27
27
  expect(check_hash["passed"]).to be_in([true, false])
@@ -26,6 +26,24 @@ RSpec.describe Hyrax::GenericWorksController do
26
26
  end
27
27
  end
28
28
 
29
+ describe 'integration test for depositor of a suppressed documents without a workflow role' do
30
+ let(:work) do
31
+ create(:work, :public, state: Vocab::FedoraResourceStatus.inactive, user: user)
32
+ end
33
+
34
+ before do
35
+ create(:sipity_entity, proxy_for_global_id: work.to_global_id.to_s)
36
+ end
37
+
38
+ it 'renders without the unauthorized message' do
39
+ get :show, params: { id: work.id }
40
+ expect(response.code).to eq '200'
41
+ expect(response).to render_template(:show)
42
+ expect(assigns[:presenter]).to be_instance_of Hyrax::GenericWorkPresenter
43
+ expect(flash[:notice]).to be_nil
44
+ end
45
+ end
46
+
29
47
  describe '#show' do
30
48
  before do
31
49
  create(:sipity_entity, proxy_for_global_id: work.to_global_id.to_s)
@@ -184,7 +202,7 @@ RSpec.describe Hyrax::GenericWorksController do
184
202
  expect(assigns[:form].depositor).to eq user.user_key
185
203
  expect(assigns[:curation_concern]).to be_kind_of GenericWork
186
204
  expect(assigns[:curation_concern].depositor).to eq user.user_key
187
- expect(response).to render_template("layouts/dashboard")
205
+ expect(response).to render_template("layouts/hyrax/dashboard")
188
206
  end
189
207
  end
190
208
  end
@@ -208,10 +226,22 @@ RSpec.describe Hyrax::GenericWorksController do
208
226
  end
209
227
 
210
228
  context 'when create fails' do
229
+ let(:work) { create(:work) }
211
230
  let(:create_status) { false }
231
+ let(:errors) { double }
232
+ let(:messages) { double }
233
+ let(:error_messages) { ['Error: foo bar'] }
234
+
235
+ before do
236
+ allow(controller).to receive(:curation_concern).and_return(work)
237
+ allow(work).to receive(:errors).and_return(errors)
238
+ allow(errors).to receive(:messages).and_return(messages)
239
+ allow(messages).to receive(:[]).with(:collections).and_return(error_messages)
240
+ end
212
241
 
213
242
  it 'draws the form again' do
214
243
  post :create, params: { generic_work: { title: ['a title'] } }
244
+ expect(flash[:error]).to eq error_messages.to_sentence
215
245
  expect(response.status).to eq 422
216
246
  expect(assigns[:form]).to be_kind_of Hyrax::GenericWorkForm
217
247
  expect(response).to render_template 'new'
@@ -330,7 +360,7 @@ RSpec.describe Hyrax::GenericWorksController do
330
360
  get :edit, params: { id: work }
331
361
  expect(response).to be_success
332
362
  expect(assigns[:form]).to be_kind_of Hyrax::GenericWorkForm
333
- expect(response).to render_template("layouts/dashboard")
363
+ expect(response).to render_template("layouts/hyrax/dashboard")
334
364
  end
335
365
  end
336
366
 
@@ -431,9 +461,21 @@ RSpec.describe Hyrax::GenericWorksController do
431
461
 
432
462
  describe 'update failed' do
433
463
  let(:actor) { double(update: false) }
464
+ let(:work) { create(:work) }
465
+ let(:errors) { double }
466
+ let(:messages) { double }
467
+ let(:error_messages) { ['Error: foo bar'] }
468
+
469
+ before do
470
+ allow(controller).to receive(:curation_concern).and_return(work)
471
+ allow(work).to receive(:errors).and_return(errors)
472
+ allow(errors).to receive(:messages).and_return(messages)
473
+ allow(messages).to receive(:[]).with(:collections).and_return(error_messages)
474
+ end
434
475
 
435
476
  it 'renders the form' do
436
477
  patch :update, params: { id: work, generic_work: {} }
478
+ expect(flash[:error]).to eq error_messages.to_sentence
437
479
  expect(assigns[:form]).to be_kind_of Hyrax::GenericWorkForm
438
480
  expect(response).to render_template('edit')
439
481
  end
@@ -524,4 +566,24 @@ RSpec.describe Hyrax::GenericWorksController do
524
566
  expect(assigns(:form)).not_to be_blank
525
567
  end
526
568
  end
569
+
570
+ describe '#manifest' do
571
+ let(:work) { create(:work_with_one_file, user: user) }
572
+ let(:file_set) { work.ordered_members.to_a.first }
573
+ let(:manifest_factory) { double(to_h: { test: 'manifest' }) }
574
+
575
+ before do
576
+ Hydra::Works::AddFileToFileSet.call(file_set,
577
+ File.open(fixture_path + '/world.png'),
578
+ :original_file)
579
+ allow(IIIFManifest::ManifestFactory).to receive(:new)
580
+ .with(Hyrax::WorkShowPresenter)
581
+ .and_return(manifest_factory)
582
+ end
583
+
584
+ it "produces a manifest" do
585
+ get :manifest, params: { id: work, format: :json }
586
+ expect(response.body).to eq "{\"test\":\"manifest\"}"
587
+ end
588
+ end
527
589
  end
@@ -98,7 +98,7 @@ RSpec.describe Hyrax::HomepageController, type: :controller do
98
98
  end
99
99
 
100
100
  context "with featured works" do
101
- let!(:my_work) { FactoryBot.create(:work, user: user) }
101
+ let!(:my_work) { create(:work, user: user) }
102
102
 
103
103
  before do
104
104
  FeaturedWork.create!(work_id: my_work.id)
@@ -11,16 +11,19 @@ RSpec.describe Hyrax::My::WorksController, type: :controller do
11
11
 
12
12
  before do
13
13
  allow(Hyrax::CollectionsService).to receive(:new).and_return(collection_service)
14
+ allow(Hyrax::Works::ManagedWorksService).to receive(:managed_works_count).and_return(1)
14
15
  end
16
+
15
17
  it "shows search results and breadcrumbs" do
16
18
  expect(controller).to receive(:search_results).with(ActionController::Parameters).and_return([response, doc_list])
17
19
  expect(controller).to receive(:add_breadcrumb).with('Home', root_path(locale: 'en'))
18
20
  expect(controller).to receive(:add_breadcrumb).with('Administration', dashboard_path(locale: 'en'))
19
21
  expect(controller).to receive(:add_breadcrumb).with('Works', my_works_path(locale: 'en'))
20
- expect(collection_service).to receive(:search_results).with(:edit).and_return([my_collection])
22
+ expect(collection_service).to receive(:search_results).with(:deposit).and_return([my_collection])
21
23
  get :index, params: { per_page: 2 }
22
24
  expect(assigns[:document_list].length).to eq 2
23
25
  expect(assigns[:user_collections]).to contain_exactly(my_collection)
26
+ expect(assigns[:managed_works_count]).to eq 1
24
27
  end
25
28
  end
26
29
 
@@ -1,5 +1,5 @@
1
1
  RSpec.describe Hyrax::PagesController, type: :controller do
2
- let(:user) { FactoryBot.create(:user) }
2
+ let(:user) { create(:user) }
3
3
 
4
4
  before do
5
5
  sign_in user
@@ -34,16 +34,16 @@ RSpec.describe Hyrax::PagesController, type: :controller do
34
34
  end
35
35
  context 'when editing pages' do
36
36
  let!(:about_page) do
37
- FactoryBot.create(:content_block, name: 'about_page')
37
+ create(:content_block, name: 'about_page')
38
38
  end
39
39
  let!(:help_page) do
40
- FactoryBot.create(:content_block, name: 'help_page')
40
+ create(:content_block, name: 'help_page')
41
41
  end
42
42
  let!(:agreement_page) do
43
- FactoryBot.create(:content_block, name: 'agreement_page')
43
+ create(:content_block, name: 'agreement_page')
44
44
  end
45
45
  let!(:terms_page) do
46
- FactoryBot.create(:content_block, name: 'terms_page')
46
+ create(:content_block, name: 'terms_page')
47
47
  end
48
48
 
49
49
  context 'with an unprivileged user' do
@@ -63,7 +63,7 @@ RSpec.describe Hyrax::PagesController, type: :controller do
63
63
  end
64
64
 
65
65
  context 'with an administrator' do
66
- let(:user) { FactoryBot.create(:admin) }
66
+ let(:user) { create(:admin) }
67
67
 
68
68
  describe "GET #edit" do
69
69
  it "renders breadcrumbs and dashboard layout" do
@@ -73,35 +73,35 @@ RSpec.describe Hyrax::PagesController, type: :controller do
73
73
  expect(controller).to receive(:add_breadcrumb).with('Pages', edit_pages_path)
74
74
  get :edit
75
75
  expect(response).to have_http_status(200)
76
- expect(response).to render_template('layouts/dashboard')
76
+ expect(response).to render_template('layouts/hyrax/dashboard')
77
77
  end
78
78
  end
79
79
 
80
80
  describe "PATCH #update" do
81
81
  it "updates the about page" do
82
82
  patch :update, params: { id: about_page.id, content_block: { about: 'This is a new page about us!' } }
83
- expect(response).to redirect_to(edit_pages_path)
83
+ expect(response).to redirect_to("#{edit_pages_path}#about")
84
84
  expect(flash[:notice]).to include 'Pages updated'
85
85
  expect(ContentBlock.for(:about).value).to eq "This is a new page about us!"
86
86
  end
87
87
 
88
88
  it "updates the help page" do
89
89
  patch :update, params: { id: help_page.id, content_block: { help: 'This page will provide more of the help you need.' } }
90
- expect(response).to redirect_to(edit_pages_path)
90
+ expect(response).to redirect_to("#{edit_pages_path}#help")
91
91
  expect(flash[:notice]).to include 'Pages updated'
92
92
  expect(ContentBlock.for(:help).value).to eq 'This page will provide more of the help you need.'
93
93
  end
94
94
 
95
95
  it "updates the agreement page" do
96
96
  patch :update, params: { id: agreement_page.id, content_block: { agreement: 'Here is the deposit agreement' } }
97
- expect(response).to redirect_to(edit_pages_path)
97
+ expect(response).to redirect_to("#{edit_pages_path}#agreement")
98
98
  expect(flash[:notice]).to include 'Pages updated'
99
99
  expect(ContentBlock.for(:agreement).value).to eq 'Here is the deposit agreement'
100
100
  end
101
101
 
102
102
  it "updates the terms page" do
103
103
  patch :update, params: { id: terms_page.id, content_block: { terms: 'Terms of Use are good' } }
104
- expect(response).to redirect_to(edit_pages_path)
104
+ expect(response).to redirect_to("#{edit_pages_path}#terms")
105
105
  expect(flash[:notice]).to include 'Pages updated'
106
106
  expect(ContentBlock.for(:terms).value).to eq 'Terms of Use are good'
107
107
  end
@@ -81,7 +81,7 @@ RSpec.describe Hyrax::UsersController, type: :controller do
81
81
  end
82
82
 
83
83
  it "uses the base query" do
84
- u3 = FactoryBot.create(:user)
84
+ u3 = create(:user)
85
85
  allow(controller).to receive(:base_query).and_return(["email == \"#{u3.email}\""])
86
86
  get :index
87
87
  expect(assigns[:users]).to include(u3)
@@ -1,5 +1,5 @@
1
1
  RSpec.describe Hyrax::WorkflowActionsController, type: :controller do
2
- let(:user) { FactoryBot.create(:user) }
2
+ let(:user) { create(:user) }
3
3
  let(:generic_work) { stub_model(GenericWork, id: '123') }
4
4
  let(:form) { instance_double(Hyrax::Forms::WorkflowActionForm) }
5
5
 
@@ -1,13 +1,13 @@
1
1
  require "spec_helper"
2
2
 
3
- RSpec.describe 'PowerConverter', no_clean: true do
3
+ RSpec.describe 'PowerConverter' do
4
4
  describe '#convert_to_polymorphic_type' do
5
5
  it 'will convert an object that responds to #to_polymorphic_type' do
6
6
  object = double(to_polymorphic_type: :symbol)
7
7
  expect(PowerConverter.convert_to_polymorphic_type(object)).to eq(:symbol)
8
8
  end
9
9
  it 'will convert an ActiveRecord::Base object' do
10
- user = FactoryBot.build(:user)
10
+ user = build(:user)
11
11
  expect(PowerConverter.convert_to_polymorphic_type(user)).to eq(user.class)
12
12
  end
13
13
  it 'will convert an object that responds to #base_class' do
@@ -1,6 +1,6 @@
1
1
  require "spec_helper"
2
2
 
3
- RSpec.describe 'PowerConverter', no_clean: true do
3
+ RSpec.describe 'PowerConverter' do
4
4
  context '#convert_to_sipity_agent' do
5
5
  it 'will convert a Sipity::Agent' do
6
6
  object = Sipity::Agent.new
@@ -1,4 +1,4 @@
1
- RSpec.describe 'PowerConverter', no_clean: true do
1
+ RSpec.describe 'PowerConverter' do
2
2
  context 'role' do
3
3
  it "converts Sipity::Role" do
4
4
  object = Sipity::Role.new
@@ -1,4 +1,4 @@
1
- RSpec.describe 'PowerConverter', no_clean: true do
1
+ RSpec.describe 'PowerConverter' do
2
2
  context 'sipity_workflow_state' do
3
3
  let(:workflow_state) { Sipity::WorkflowState.new(id: 1, name: 'hello') }
4
4
  let(:workflow) { create(:workflow) }
@@ -9,11 +9,11 @@ FactoryBot.define do
9
9
  # This way, we can go ahead
10
10
  after(:create) do |admin_set, evaluator|
11
11
  if evaluator.with_permission_template
12
- attributes = { admin_set_id: admin_set.id }
12
+ attributes = { source_id: admin_set.id }
13
13
  attributes = evaluator.with_permission_template.merge(attributes) if evaluator.with_permission_template.respond_to?(:merge)
14
- # There is a unique constraint on permission_templates.admin_set_id; I don't want to
14
+ # There is a unique constraint on permission_templates.source_id; I don't want to
15
15
  # create a permission template if one already exists for this admin_set
16
- create(:permission_template, attributes) unless Hyrax::PermissionTemplate.find_by(admin_set_id: admin_set.id)
16
+ create(:permission_template, attributes) unless Hyrax::PermissionTemplate.find_by(source_id: admin_set.id)
17
17
  end
18
18
  end
19
19
 
@@ -0,0 +1,11 @@
1
+ FactoryBot.define do
2
+ factory :collection_branding_info do
3
+ collection_id "1"
4
+ role "banner"
5
+ local_path "/fake/path/to/banner.png"
6
+ alt_text "This is the banner"
7
+ target_url "http://example.com/"
8
+ height ""
9
+ width ""
10
+ end
11
+ end
@@ -0,0 +1,8 @@
1
+ FactoryBot.define do
2
+ factory :collection_type_participant, class: Hyrax::CollectionTypeParticipant do
3
+ association :hyrax_collection_type, factory: :collection_type
4
+ sequence(:agent_id) { |n| "user#{n}@example.com" }
5
+ agent_type 'user'
6
+ access Hyrax::CollectionTypeParticipant::MANAGE_ACCESS
7
+ end
8
+ end
@@ -0,0 +1,104 @@
1
+ FactoryBot.define do
2
+ factory :collection_type, class: Hyrax::CollectionType do
3
+ sequence(:title) { |n| "Title #{n}" }
4
+ sequence(:machine_id) { |n| "title_#{n}" }
5
+
6
+ description 'Collection type with all options'
7
+ nestable true
8
+ discoverable true
9
+ sharable true
10
+ share_applies_to_new_works true
11
+ allow_multiple_membership true
12
+ require_membership false
13
+ assigns_workflow false
14
+ assigns_visibility false
15
+
16
+ transient do
17
+ creator_user nil
18
+ creator_group nil
19
+ manager_user nil
20
+ manager_group nil
21
+ end
22
+
23
+ after(:create) do |collection_type, evaluator|
24
+ if evaluator.creator_user
25
+ attributes = { hyrax_collection_type_id: collection_type.id,
26
+ access: Hyrax::CollectionTypeParticipant::CREATE_ACCESS,
27
+ agent_id: evaluator.creator_user,
28
+ agent_type: Hyrax::CollectionTypeParticipant::USER_TYPE }
29
+ create(:collection_type_participant, attributes)
30
+ end
31
+
32
+ if evaluator.creator_group
33
+ attributes = { hyrax_collection_type_id: collection_type.id,
34
+ access: Hyrax::CollectionTypeParticipant::CREATE_ACCESS,
35
+ agent_id: evaluator.creator_group,
36
+ agent_type: Hyrax::CollectionTypeParticipant::GROUP_TYPE }
37
+ create(:collection_type_participant, attributes)
38
+ end
39
+
40
+ if evaluator.manager_user
41
+ attributes = { hyrax_collection_type_id: collection_type.id,
42
+ access: Hyrax::CollectionTypeParticipant::MANAGE_ACCESS,
43
+ agent_id: evaluator.manager_user,
44
+ agent_type: Hyrax::CollectionTypeParticipant::USER_TYPE }
45
+ create(:collection_type_participant, attributes)
46
+ end
47
+
48
+ if evaluator.manager_group
49
+ attributes = { hyrax_collection_type_id: collection_type.id,
50
+ access: Hyrax::CollectionTypeParticipant::MANAGE_ACCESS,
51
+ agent_id: evaluator.manager_group,
52
+ agent_type: Hyrax::CollectionTypeParticipant::GROUP_TYPE }
53
+ create(:collection_type_participant, attributes)
54
+ end
55
+ end
56
+
57
+ trait :nestable do
58
+ nestable true
59
+ end
60
+
61
+ trait :not_nestable do
62
+ nestable false
63
+ end
64
+
65
+ trait :discoverable do
66
+ discoverable true
67
+ end
68
+
69
+ trait :not_discoverable do
70
+ discoverable false
71
+ end
72
+
73
+ trait :sharable do
74
+ sharable true
75
+ share_applies_to_new_works true
76
+ end
77
+
78
+ trait :sharable_no_work_permissions do
79
+ sharable true
80
+ share_applies_to_new_works false
81
+ end
82
+
83
+ trait :not_sharable do
84
+ sharable false
85
+ share_applies_to_new_works false
86
+ end
87
+
88
+ trait :allow_multiple_membership do
89
+ allow_multiple_membership true
90
+ end
91
+
92
+ trait :not_allow_multiple_membership do
93
+ allow_multiple_membership false
94
+ end
95
+ end
96
+
97
+ factory :user_collection_type, class: Hyrax::CollectionType do
98
+ initialize_with { Hyrax::CollectionType.find_or_create_default_collection_type }
99
+ end
100
+
101
+ factory :admin_set_collection_type, class: Hyrax::CollectionType do
102
+ initialize_with { Hyrax::CollectionType.find_or_create_admin_set_type }
103
+ end
104
+ end
@@ -0,0 +1,323 @@
1
+ FactoryBot.define do
2
+ # Tests that create a Fedora Object are very slow. This factory lets you control which parts of the object ecosystem
3
+ # get built.
4
+ #
5
+ # PREFERRED: Use build whenever possible. You can control the creation of the permission template, collection type, and
6
+ # solr document by passing parameters to the build(:collection_lw) method. That way you can build only the parts
7
+ # needed for a specific test.
8
+ #
9
+ # AVOID: Do not use create unless absolutely necessary. It will create everything including the Fedora object.
10
+ #
11
+ # @example Simple build of a collection with no additional parts created. Lightest weight.
12
+ # NOTE: A user is automatically created as the owner of the collection.
13
+ # let(:collection) { build(:collection_lw)
14
+ #
15
+ # @example Simple build of a collection with no additional parts created. User is the owner of the collection. Lightest weight.
16
+ # let(:collection) { build(:collection_lw, user:)
17
+ #
18
+ # @example Simple build of a collection with only solr-document. Owner is given edit-access in solr-document. Light weight.
19
+ # let(:collection) { build(:collection_lw, with_solr_document: true)
20
+ #
21
+ # @example Simple build of a collection with only a permission template created. Owner is set as a manager. Light weight.
22
+ # let(:collection) { build(:collection_lw, with_permission_template: true)
23
+ #
24
+ # @example Build a collection with only a permission template created. Permissions are set based on
25
+ # attributes set for `with_permission_template`. Middle weight.
26
+ # # permissions passed thru `with_permission_template` can be any of the following in any combination
27
+ # let(:permissions) { { manage_users: [user.user_key], # multiple users can be listed
28
+ # deposit_users: [user.user_key],
29
+ # view_users: [user.user_key],
30
+ # manage_groups: [group_name], # multiple groups can be listed
31
+ # deposit_groups: [group_name],
32
+ # view_groups: [group_name], } }
33
+ # let(:collection) { build(:collection_lw, user: , with_permission_template: permissions)
34
+ #
35
+ # @example Build a collection with permission template and solr-document created. Permissions are set based on
36
+ # attributes set for `with_permission_template`. Solr-document includes read/edit access defined based
37
+ # on attributes passed thru `with_permission_template`. Middle weight.
38
+ # # permissions passed thru `with_permission_template` can be any of the following in any combination
39
+ # let(:permissions) { { manage_users: [user.user_key], # multiple users can be listed
40
+ # deposit_users: [user.user_key],
41
+ # view_users: [user.user_key],
42
+ # manage_groups: [group_name], # multiple groups can be listed
43
+ # deposit_groups: [group_name],
44
+ # view_groups: [group_name], } }
45
+ # let(:collection) { build(:collection_lw, user: , with_permission_template: permissions, with_solr_document: true)
46
+ #
47
+ # @example Build a collection generating its collection type with specific settings. Light Weight.
48
+ # NOTE: Do not use this approach if you need access to the collection type in the test.
49
+ # DEFAULT: If `collection_type_settings` and `collection_type_gid` are not specified, then the default
50
+ # User Collection type will be used.
51
+ # # Any not specified default to ON. At least one setting should be specified.
52
+ # let(:settings) { [
53
+ # :nestable, # OR :not_nestable,
54
+ # :discoverable, # OR :not_discoverable
55
+ # :sharable, # OR :not_sharable OR :sharable_no_work_permissions
56
+ # :allow_multiple_membership, # OR :not_allow_multiple_membership
57
+ # ] }
58
+ # let(:collection) { build(:collection_lw, collection_type_settings: settings) }
59
+ #
60
+ # @example Build a collection using the passed in collection type. Light Weight.
61
+ # NOTE: Use this approach if you need access to the collection type in the test.
62
+ # # Any not specified default to ON. At least one setting should be specified.
63
+ # let(:settings) { [
64
+ # :nestable, # OR :not_nestable,
65
+ # :discoverable, # OR :not_discoverable
66
+ # :sharable, # OR :not_sharable OR :sharable_no_work_permissions
67
+ # :allow_multiple_membership, # OR :not_allow_multiple_membership
68
+ # ] }
69
+ # let(:collection_type) { create(:collection_lw_type, settings)}
70
+ # let(:collection) { build(:collection_lw, collection_type_gid: collection_type.gid)}
71
+ #
72
+ # @example Build a collection with nesting fields set in the solr document. Light weight.
73
+ # NOTE: The property `with_nesting_attributes` is only supported for building collections. The attributes will
74
+ # be overwritten by the save process when creating a collection, thus effectively ignoring this property.
75
+ # let(:collection) { build(:collection_lw, with_nesting_attributes: { ancestors: ['Parent_1'],
76
+ # parent_ids: ['Parent_1'],
77
+ # pathnames: ['Parent_1/Collection123'],
78
+ # depth: 2 })
79
+ #
80
+ # @example Create a collection with everything. Extreme heavy weight. This is very slow and should be avoided.
81
+ # NOTE: Everything gets created.
82
+ # NOTE: Build options effect created collections as follows...
83
+ # * `with_permission_template` can specify user/group permissions. A permission template is always created.
84
+ # * `collection_type_settings` can specify to create a collection type with specific settings
85
+ # * `with_solr_document` is ignored. A solr document is always created.
86
+ # * `with_nested_attributes` is ignored.
87
+ # NOTE: Additional process is required for testing nested collections with Fedora objects. See next example.
88
+ # let(:collection) { create(:collection_lw)
89
+ #
90
+ # @example Create collections for use with nested collection index testing.
91
+ # NOTE: For light weight nested collection testing using solr documents only, see `with_nested_attributes` above
92
+ # NOTE: Full indexed nested collections with solr documents and Fedora objects are created by...
93
+ # * creating multiple collections (expensive)
94
+ # * nesting them and saving - causing reindex of the Fedora objects (expensive)
95
+ # For tests of nesting functionality requiring the Fedora object and reindexing, in the test itself
96
+ # include `:with_nested_reindexing`
97
+ # it "returns the collection and its members", :with_nested_reindexing do
98
+
99
+ factory :collection_lw, class: Collection do
100
+ transient do
101
+ user { create(:user) }
102
+
103
+ collection_type_settings nil
104
+ with_permission_template false
105
+ with_nesting_attributes nil
106
+ with_solr_document false
107
+ end
108
+ sequence(:title) { |n| ["Title #{n}"] }
109
+
110
+ after(:build) do |collection, evaluator|
111
+ collection.apply_depositor_metadata(evaluator.user.user_key)
112
+
113
+ CollectionLwFactoryHelper.process_collection_type_settings(collection, evaluator)
114
+ CollectionLwFactoryHelper.process_with_permission_template(collection, evaluator)
115
+ CollectionLwFactoryHelper.process_with_solr_document(collection, evaluator)
116
+ CollectionLwFactoryHelper.process_with_nesting_attributes(collection, evaluator)
117
+ end
118
+
119
+ before(:create) do |collection, evaluator|
120
+ # force create a permission template if it doesn't exist for the newly created collection
121
+ CollectionLwFactoryHelper.process_with_permission_template(collection, evaluator, true) unless evaluator.with_permission_template
122
+ end
123
+
124
+ after(:create) do |collection, _evaluator|
125
+ collection.reset_access_controls!
126
+ end
127
+
128
+ factory :public_collection_lw, traits: [:public_lw]
129
+
130
+ factory :private_collection_lw do
131
+ visibility Hydra::AccessControls::AccessRight::VISIBILITY_TEXT_VALUE_PRIVATE
132
+ end
133
+
134
+ factory :institution_collection_lw do
135
+ visibility Hydra::AccessControls::AccessRight::VISIBILITY_TEXT_VALUE_AUTHENTICATED
136
+ end
137
+
138
+ factory :named_collection_lw do
139
+ title ['collection title']
140
+ description ['collection description']
141
+ end
142
+
143
+ trait :public_lw do
144
+ visibility Hydra::AccessControls::AccessRight::VISIBILITY_TEXT_VALUE_PUBLIC
145
+ end
146
+
147
+ trait :private_lw do
148
+ visibility Hydra::AccessControls::AccessRight::VISIBILITY_TEXT_VALUE_PRIVATE
149
+ end
150
+
151
+ trait :institution_lw do
152
+ visibility Hydra::AccessControls::AccessRight::VISIBILITY_TEXT_VALUE_AUTHENTICATED
153
+ end
154
+
155
+ trait :public_lw do
156
+ visibility Hydra::AccessControls::AccessRight::VISIBILITY_TEXT_VALUE_PUBLIC
157
+ end
158
+ end
159
+
160
+ factory :user_collection_lw, class: Collection do
161
+ transient do
162
+ user { create(:user) }
163
+ end
164
+
165
+ sequence(:title) { |n| ["Title #{n}"] }
166
+
167
+ after(:build) do |collection, evaluator|
168
+ collection.apply_depositor_metadata(evaluator.user.user_key)
169
+ collection_type = create(:user_collection_type)
170
+ collection.collection_type_gid = collection_type.gid
171
+ end
172
+ end
173
+
174
+ factory :typeless_collection_lw, class: Collection do
175
+ # To create a pre-Hyrax 2.1.0 collection without a collection type gid...
176
+ # col = build(:typeless_collection, ...)
177
+ # col.save(validate: false)
178
+ transient do
179
+ user { create(:user) }
180
+ with_permission_template false
181
+ do_save false
182
+ end
183
+
184
+ sequence(:title) { |n| ["Title #{n}"] }
185
+
186
+ after(:build) do |collection, evaluator|
187
+ collection.apply_depositor_metadata(evaluator.user.user_key)
188
+ collection.save(validate: false) if evaluator.do_save || evaluator.with_permission_template
189
+ if evaluator.with_permission_template
190
+ attributes = { source_id: collection.id }
191
+ attributes[:manage_users] = [evaluator.user]
192
+ attributes = evaluator.with_permission_template.merge(attributes) if evaluator.with_permission_template.respond_to?(:merge)
193
+ create(:permission_template, attributes) unless Hyrax::PermissionTemplate.find_by(source_id: collection.id)
194
+ end
195
+ end
196
+ end
197
+
198
+ class CollectionLwFactoryHelper
199
+ # @returns array of user keys
200
+ def self.permission_from_template(permission_template_attributes, permission_key)
201
+ permissions = []
202
+ return permissions if permission_template_attributes.blank?
203
+ return permissions unless permission_template_attributes.is_a? Hash
204
+ return permissions unless permission_template_attributes.key?(permission_key)
205
+ permission_template_attributes[permission_key]
206
+ end
207
+ private_class_method :permission_from_template
208
+
209
+ # @param [Hash] permission_template_attributes where names identify the role and value are the user keys for that role
210
+ # @parem [String] creator_user is the user who created the new collection
211
+ # @param [Boolean] include_creator, when true, adds the creator_user as a manager
212
+ # @returns array of user keys
213
+ def self.user_managers(permission_template_attributes, creator_user)
214
+ managers = permission_from_template(permission_template_attributes, :manage_users)
215
+ managers << creator_user
216
+ managers
217
+ end
218
+
219
+ # @param [Hash] permission_template_attributes where names identify the role and value are the user keys for that role
220
+ # @returns array of user keys
221
+ def self.group_managers(permission_template_attributes)
222
+ permission_from_template(permission_template_attributes, :manage_groups)
223
+ end
224
+
225
+ # @param [Hash] permission_template_attributes where names identify the role and value are the user keys for that role
226
+ # @returns array of user keys
227
+ def self.user_depositors(permission_template_attributes)
228
+ permission_from_template(permission_template_attributes, :deposit_users)
229
+ end
230
+
231
+ # @param [Hash] permission_template_attributes where names identify the role and value are the user keys for that role
232
+ # @returns array of user keys
233
+ def self.group_depositors(permission_template_attributes)
234
+ permission_from_template(permission_template_attributes, :deposit_groups)
235
+ end
236
+
237
+ # @param [Hash] permission_template_attributes where names identify the role and value are the user keys for that role
238
+ # @returns array of user keys
239
+ def self.user_viewers(permission_template_attributes)
240
+ permission_from_template(permission_template_attributes, :view_users)
241
+ end
242
+
243
+ # @param [Hash] permission_template_attributes where names identify the role and value are the user keys for that role
244
+ # @returns array of user keys
245
+ def self.group_viewers(permission_template_attributes)
246
+ permission_from_template(permission_template_attributes, :view_groups)
247
+ end
248
+
249
+ # Process the collection_type_settings transient property such that...
250
+ # * creates the collection type with specified settings if collection_type_settings has settings (ignores collection_type_gid)
251
+ # * uses passed in collection type if collection_type_gid is specified AND collection_type_settings is nil
252
+ # * uses default User Collection type if neither are specified
253
+ # @param [Collection] collection object being built/created by the factory
254
+ # @param [Class] evaluator holding the transient properties for the current build/creation process
255
+ def self.process_collection_type_settings(collection, evaluator)
256
+ if evaluator.collection_type_settings.present?
257
+ collection.collection_type = FactoryBot.create(:collection_type, *evaluator.collection_type_settings)
258
+ elsif collection.collection_type_gid.blank?
259
+ collection.collection_type = FactoryBot.create(:user_collection_type)
260
+ end
261
+ end
262
+
263
+ # Process the with_permission_template transient property such that...
264
+ # * a permission template is created for the collection
265
+ # * a permission template access is created for the collection creator
266
+ # * additional permission template accesses are created for each user/group identified in the attributes
267
+ # of with_permission_template (created by the permission_template factory)
268
+ # @param [Collection] collection object being built/created by the factory
269
+ # @param [Class] evaluator holding the transient properties for the current build/creation process
270
+ # @param [Boolean] if true, force the permission template to be created
271
+ def self.process_with_permission_template(collection, evaluator, force = false)
272
+ return unless force || evaluator.with_permission_template || RSpec.current_example.metadata[:with_nested_reindexing]
273
+ collection.id ||= FactoryBot.generate(:object_id)
274
+ attributes = { source_id: collection.id }
275
+ attributes[:manage_users] = user_managers(evaluator.with_permission_template, evaluator.user)
276
+ attributes = evaluator.with_permission_template.merge(attributes) if evaluator.with_permission_template.respond_to?(:merge)
277
+ FactoryBot.create(:permission_template, attributes) unless Hyrax::PermissionTemplate.find_by(source_id: collection.id)
278
+ end
279
+
280
+ # Process the with_nesting_attributes transient property such that...
281
+ # * adds nesting related solr-document fields for ancestors, parent_ids, pathnames, and depth
282
+ # @param [Collection] collection object being built/created by the factory
283
+ # @param [Class] evaluator holding the transient properties for the current build/creation process
284
+ def self.process_with_nesting_attributes(collection, evaluator)
285
+ return unless evaluator.with_nesting_attributes.present? && collection.nestable?
286
+ Hyrax::Adapters::NestingIndexAdapter.add_nesting_attributes(
287
+ solr_doc: solr_document_with_permissions(collection, evaluator),
288
+ ancestors: evaluator.with_nesting_attributes[:ancestors],
289
+ parent_ids: evaluator.with_nesting_attributes[:parent_ids],
290
+ pathnames: evaluator.with_nesting_attributes[:pathnames],
291
+ depth: evaluator.with_nesting_attributes[:depth]
292
+ )
293
+ end
294
+
295
+ # Process the with_solr_document transient property such that...
296
+ # * a solr document is created for the collection
297
+ # * permissions identified by with_permission_template, if any, are added to the solr fields
298
+ # @param [Collection] collection object being built/created by the factory
299
+ # @param [Class] evaluator holding the transient properties for the current build/creation process
300
+ def self.process_with_solr_document(collection, evaluator)
301
+ return unless evaluator.with_solr_document
302
+ return if evaluator.with_nesting_attributes.present? && collection.nestable? # will create the solr document there instead
303
+ ActiveFedora::SolrService.add(solr_document_with_permissions(collection, evaluator), commit: true)
304
+ end
305
+
306
+ # Return the collection's solr document with permissions added, such that...
307
+ # * permissions identified by with_permission_template, if any, are added to the solr fields
308
+ # @param [Collection] collection object being built/created by the factory
309
+ # @param [Class] evaluator holding the transient properties for the current build/creation process
310
+ # @returns the collection's solr document with permissions added
311
+ def self.solr_document_with_permissions(collection, evaluator)
312
+ collection.id ||= FactoryBot.generate(:object_id)
313
+ collection.edit_users = user_managers(evaluator.with_permission_template, evaluator.user)
314
+ collection.edit_groups = group_managers(evaluator.with_permission_template)
315
+ collection.read_users = user_viewers(evaluator.with_permission_template) +
316
+ user_depositors(evaluator.with_permission_template)
317
+ collection.read_groups = group_viewers(evaluator.with_permission_template) +
318
+ group_depositors(evaluator.with_permission_template)
319
+ collection.to_solr
320
+ end
321
+ private_class_method :solr_document_with_permissions
322
+ end
323
+ end