hyrax 3.0.0.pre.beta3 → 3.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (1978) hide show
  1. checksums.yaml +4 -4
  2. data/.circleci/config.yml +72 -39
  3. data/.dassie/.env +4 -0
  4. data/.dassie/.gitignore +27 -0
  5. data/.dassie/Gemfile +57 -0
  6. data/.dassie/README.md +3 -0
  7. data/.dassie/Rakefile +6 -0
  8. data/.dassie/app/actors/hyrax/actors/generic_work_actor.rb +8 -0
  9. data/.dassie/app/actors/hyrax/actors/namespaced_works/nested_work_actor.rb +8 -0
  10. data/.dassie/app/assets/config/manifest.js +3 -0
  11. data/.dassie/app/assets/images/.keep +0 -0
  12. data/.dassie/app/assets/images/unauthorized.png +0 -0
  13. data/.dassie/app/assets/images/us_404.svg +91 -0
  14. data/.dassie/app/assets/javascripts/application.js +26 -0
  15. data/.dassie/app/assets/javascripts/blacklight_gallery.js +1 -0
  16. data/.dassie/app/assets/javascripts/cable.js +13 -0
  17. data/.dassie/app/assets/javascripts/channels/.keep +0 -0
  18. data/.dassie/app/assets/javascripts/openseadragon.js +2 -0
  19. data/.dassie/app/assets/stylesheets/application.css +16 -0
  20. data/.dassie/app/assets/stylesheets/hyrax.scss +17 -0
  21. data/.dassie/app/assets/stylesheets/openseadragon.css +3 -0
  22. data/.dassie/app/channels/application_cable/channel.rb +4 -0
  23. data/.dassie/app/channels/application_cable/connection.rb +4 -0
  24. data/.dassie/app/controllers/application_controller.rb +14 -0
  25. data/.dassie/app/controllers/catalog_controller.rb +300 -0
  26. data/.dassie/app/controllers/concerns/.keep +0 -0
  27. data/.dassie/app/controllers/hyrax/generic_works_controller.rb +14 -0
  28. data/.dassie/app/controllers/hyrax/monographs_controller.rb +17 -0
  29. data/.dassie/app/controllers/hyrax/namespaced_works/nested_works_controller.rb +14 -0
  30. data/.dassie/app/forms/hyrax/generic_work_form.rb +9 -0
  31. data/.dassie/app/forms/hyrax/namespaced_works/nested_work_form.rb +9 -0
  32. data/.dassie/app/forms/monograph_form.rb +20 -0
  33. data/.dassie/app/helpers/application_helper.rb +2 -0
  34. data/.dassie/app/helpers/hyrax_helper.rb +6 -0
  35. data/.dassie/app/indexers/generic_work_indexer.rb +18 -0
  36. data/.dassie/app/indexers/monograph_indexer.rb +16 -0
  37. data/.dassie/app/indexers/namespaced_works/nested_work_indexer.rb +18 -0
  38. data/.dassie/app/jobs/application_job.rb +2 -0
  39. data/.dassie/app/mailers/application_mailer.rb +4 -0
  40. data/.dassie/app/models/ability.rb +21 -0
  41. data/.dassie/app/models/application_record.rb +3 -0
  42. data/.dassie/app/models/collection.rb +8 -0
  43. data/.dassie/app/models/concerns/.keep +0 -0
  44. data/.dassie/app/models/file_set.rb +5 -0
  45. data/.dassie/app/models/generic_work.rb +14 -0
  46. data/.dassie/app/models/monograph.rb +8 -0
  47. data/.dassie/app/models/namespaced_works/nested_work.rb +16 -0
  48. data/.dassie/app/models/qa.rb +5 -0
  49. data/.dassie/app/models/qa/local_authority.rb +2 -0
  50. data/.dassie/app/models/qa/local_authority_entry.rb +3 -0
  51. data/.dassie/app/models/search_builder.rb +16 -0
  52. data/.dassie/app/models/solr_document.rb +28 -0
  53. data/.dassie/app/models/time_span.rb +22 -0
  54. data/.dassie/app/models/user.rb +26 -0
  55. data/.dassie/app/presenters/hyrax/generic_work_presenter.rb +6 -0
  56. data/.dassie/app/presenters/hyrax/namespaced_works/nested_work_presenter.rb +6 -0
  57. data/.dassie/app/views/hyrax/generic_works/_generic_work.html.erb +2 -0
  58. data/.dassie/app/views/hyrax/monographs/_monograph.html.erb +2 -0
  59. data/.dassie/app/views/hyrax/namespaced_works/nested_works/_nested_work.html.erb +2 -0
  60. data/.dassie/app/views/layouts/application.html.erb +15 -0
  61. data/.dassie/app/views/layouts/mailer.html.erb +13 -0
  62. data/.dassie/app/views/layouts/mailer.text.erb +1 -0
  63. data/.dassie/bin/bundle +3 -0
  64. data/.dassie/bin/rails +9 -0
  65. data/.dassie/bin/rake +9 -0
  66. data/.dassie/bin/setup +36 -0
  67. data/.dassie/bin/spring +17 -0
  68. data/.dassie/bin/update +31 -0
  69. data/.dassie/bin/yarn +11 -0
  70. data/.dassie/config.ru +5 -0
  71. data/.dassie/config/analytics.yml +6 -0
  72. data/.dassie/config/application.rb +22 -0
  73. data/.dassie/config/arkivo.yml +6 -0
  74. data/.dassie/config/authorities/licenses.yml +46 -0
  75. data/.dassie/config/authorities/resource_types.yml +41 -0
  76. data/.dassie/config/authorities/rights_statements.yml +37 -0
  77. data/.dassie/config/blacklight.yml +9 -0
  78. data/.dassie/config/boot.rb +4 -0
  79. data/.dassie/config/browse_everything_providers.yml +2 -0
  80. data/.dassie/config/cable.yml +10 -0
  81. data/.dassie/config/credentials.yml.enc +1 -0
  82. data/.dassie/config/environment.rb +5 -0
  83. data/.dassie/config/environments/development.rb +71 -0
  84. data/.dassie/config/environments/production.rb +94 -0
  85. data/.dassie/config/environments/test.rb +51 -0
  86. data/.dassie/config/fedora.yml +15 -0
  87. data/.dassie/config/initializers/arkivo_constraint.rb +12 -0
  88. data/.dassie/config/initializers/assets.rb +2 -0
  89. data/.dassie/config/initializers/clamav.rb +2 -0
  90. data/.dassie/config/initializers/cookies_serializer.rb +1 -0
  91. data/.dassie/config/initializers/devise.rb +13 -0
  92. data/.dassie/config/initializers/filter_parameter_logging.rb +1 -0
  93. data/.dassie/config/initializers/hydra_config.rb +6 -0
  94. data/.dassie/config/initializers/hyrax.rb +48 -0
  95. data/.dassie/config/initializers/mailboxer.rb +21 -0
  96. data/.dassie/config/initializers/mime_types.rb +4 -0
  97. data/.dassie/config/initializers/mini_magick.rb +6 -0
  98. data/.dassie/config/initializers/redis_config.rb +4 -0
  99. data/.dassie/config/initializers/riiif.rb +27 -0
  100. data/.dassie/config/initializers/simple_form.rb +28 -0
  101. data/.dassie/config/initializers/simple_form_bootstrap.rb +143 -0
  102. data/.dassie/config/initializers/wrap_parameters.rb +3 -0
  103. data/.dassie/config/locales/blacklight.en.yml +3 -0
  104. data/.dassie/config/locales/devise.en.yml +65 -0
  105. data/.dassie/config/locales/generic_work.de.yml +8 -0
  106. data/.dassie/config/locales/generic_work.en.yml +8 -0
  107. data/.dassie/config/locales/generic_work.es.yml +10 -0
  108. data/.dassie/config/locales/generic_work.fr.yml +8 -0
  109. data/.dassie/config/locales/generic_work.it.yml +8 -0
  110. data/.dassie/config/locales/generic_work.pt-BR.yml +8 -0
  111. data/.dassie/config/locales/generic_work.zh.yml +10 -0
  112. data/.dassie/config/locales/hyrax.de.yml +58 -0
  113. data/.dassie/config/locales/hyrax.en.yml +58 -0
  114. data/.dassie/config/locales/hyrax.es.yml +60 -0
  115. data/.dassie/config/locales/hyrax.fr.yml +58 -0
  116. data/.dassie/config/locales/hyrax.it.yml +58 -0
  117. data/.dassie/config/locales/hyrax.pt-BR.yml +58 -0
  118. data/.dassie/config/locales/hyrax.zh.yml +58 -0
  119. data/.dassie/config/locales/namespaced_works/nested_work.de.yml +8 -0
  120. data/.dassie/config/locales/namespaced_works/nested_work.en.yml +8 -0
  121. data/.dassie/config/locales/namespaced_works/nested_work.es.yml +10 -0
  122. data/.dassie/config/locales/namespaced_works/nested_work.fr.yml +8 -0
  123. data/.dassie/config/locales/namespaced_works/nested_work.it.yml +8 -0
  124. data/.dassie/config/locales/namespaced_works/nested_work.pt-BR.yml +8 -0
  125. data/.dassie/config/locales/namespaced_works/nested_work.zh.yml +10 -0
  126. data/.dassie/config/metadata/monograph.yaml +55 -0
  127. data/.dassie/config/metadata/sample_metadata.yaml +3 -0
  128. data/.dassie/config/puma.rb +6 -0
  129. data/.dassie/config/redis.yml +10 -0
  130. data/.dassie/config/role_map.yml +24 -0
  131. data/.dassie/config/routes.rb +35 -0
  132. data/.dassie/config/solr.yml +7 -0
  133. data/.dassie/config/spring.rb +6 -0
  134. data/.dassie/config/storage.yml +7 -0
  135. data/.dassie/config/tinymce.yml +13 -0
  136. data/.dassie/config/uv/uv-config.json +3 -0
  137. data/.dassie/config/uv/uv.html +87 -0
  138. data/.dassie/config/valkyrie_index.yml +12 -0
  139. data/.dassie/config/workflows/default_workflow.json +21 -0
  140. data/.dassie/config/workflows/mediated_deposit_workflow.json +76 -0
  141. data/.dassie/config/zotero.yml +6 -0
  142. data/.dassie/db/migrate/20200821212749_create_searches.blacklight.rb +17 -0
  143. data/.dassie/db/migrate/20200821212750_create_bookmarks.blacklight.rb +19 -0
  144. data/.dassie/db/migrate/20200821212751_add_polymorphic_type_to_bookmarks.blacklight.rb +9 -0
  145. data/.dassie/db/migrate/20200821212803_devise_create_users.rb +44 -0
  146. data/.dassie/db/migrate/20200821212806_add_devise_guests_to_users.rb +15 -0
  147. data/.dassie/db/migrate/20200821212828_create_version_committers.hyrax.rb +15 -0
  148. data/.dassie/db/migrate/20200821212829_create_checksum_audit_logs.hyrax.rb +19 -0
  149. data/.dassie/db/migrate/20200821212830_create_single_use_links.hyrax.rb +12 -0
  150. data/.dassie/db/migrate/20200821212831_add_social_to_users.hyrax.rb +13 -0
  151. data/.dassie/db/migrate/20200821212832_add_ldap_attrs_to_user.hyrax.rb +27 -0
  152. data/.dassie/db/migrate/20200821212833_add_avatars_to_users.hyrax.rb +15 -0
  153. data/.dassie/db/migrate/20200821212834_create_trophies.hyrax.rb +10 -0
  154. data/.dassie/db/migrate/20200821212835_add_linkedin_to_users.hyrax.rb +5 -0
  155. data/.dassie/db/migrate/20200821212836_create_tinymce_assets.hyrax.rb +8 -0
  156. data/.dassie/db/migrate/20200821212837_create_content_blocks.hyrax.rb +10 -0
  157. data/.dassie/db/migrate/20200821212838_create_featured_works.hyrax.rb +12 -0
  158. data/.dassie/db/migrate/20200821212839_add_external_key_to_content_blocks.hyrax.rb +6 -0
  159. data/.dassie/db/migrate/20200821212840_create_proxy_deposit_rights.hyrax.rb +10 -0
  160. data/.dassie/db/migrate/20200821212841_create_proxy_deposit_requests.hyrax.rb +15 -0
  161. data/.dassie/db/migrate/20200821212842_create_file_view_stats.hyrax.rb +12 -0
  162. data/.dassie/db/migrate/20200821212843_create_file_download_stats.hyrax.rb +12 -0
  163. data/.dassie/db/migrate/20200821212844_add_orcid_to_users.hyrax.rb +5 -0
  164. data/.dassie/db/migrate/20200821212845_create_user_stats.hyrax.rb +19 -0
  165. data/.dassie/db/migrate/20200821212846_create_work_view_stats.hyrax.rb +12 -0
  166. data/.dassie/db/migrate/20200821212847_add_works_to_user_stats.hyrax.rb +13 -0
  167. data/.dassie/db/migrate/20200821212848_change_trophy_generic_file_id_to_work_id.hyrax.rb +5 -0
  168. data/.dassie/db/migrate/20200821212849_change_proxy_deposit_generic_file_id_to_work_id.hyrax.rb +5 -0
  169. data/.dassie/db/migrate/20200821212850_change_audit_log_generic_file_id_to_file_set_id.hyrax.rb +5 -0
  170. data/.dassie/db/migrate/20200821212851_change_proxy_deposit_request_generic_file_id_to_work_id.hyrax.rb +5 -0
  171. data/.dassie/db/migrate/20200821212852_create_uploaded_files.hyrax.rb +10 -0
  172. data/.dassie/db/migrate/20200821212853_create_features.hyrax.rb +10 -0
  173. data/.dassie/db/migrate/20200821212854_create_operations.hyrax.rb +23 -0
  174. data/.dassie/db/migrate/20200821212855_change_featured_work_generic_file_id_to_work_id.hyrax.rb +6 -0
  175. data/.dassie/db/migrate/20200821212856_add_arkivo_to_users.hyrax.rb +8 -0
  176. data/.dassie/db/migrate/20200821212857_create_sipity.hyrax.rb +163 -0
  177. data/.dassie/db/migrate/20200821212858_create_sipity_workflow_methods.hyrax.rb +10 -0
  178. data/.dassie/db/migrate/20200821212859_create_permission_template.hyrax.rb +11 -0
  179. data/.dassie/db/migrate/20200821212860_create_permission_template_access.hyrax.rb +11 -0
  180. data/.dassie/db/migrate/20200821212861_add_release_to_permission_templates.hyrax.rb +6 -0
  181. data/.dassie/db/migrate/20200821212862_add_permission_template_to_sipity_workflow.hyrax.rb +26 -0
  182. data/.dassie/db/migrate/20200821212863_tidy_up_because_of_bad_exception.hyrax.rb +13 -0
  183. data/.dassie/db/migrate/20200821212864_add_allows_access_grant_to_workflow.hyrax.rb +5 -0
  184. data/.dassie/db/migrate/20200821212865_change_checksum_audit_log.hyrax.rb +18 -0
  185. data/.dassie/db/migrate/20200821212866_create_job_io_wrappers.hyrax.rb +15 -0
  186. data/.dassie/db/migrate/20200821212867_create_collection_types.hyrax.rb +17 -0
  187. data/.dassie/db/migrate/20200821212868_update_collection_type_column_names.hyrax.rb +9 -0
  188. data/.dassie/db/migrate/20200821212869_update_collection_type_column_options.hyrax.rb +17 -0
  189. data/.dassie/db/migrate/20200821212870_create_collection_branding_infos.hyrax.rb +15 -0
  190. data/.dassie/db/migrate/20200821212871_create_collection_type_participants.hyrax.rb +11 -0
  191. data/.dassie/db/migrate/20200821212872_rename_admin_set_id_to_source_id.hyrax.rb +5 -0
  192. data/.dassie/db/migrate/20200821212873_add_preferred_locale_to_users.hyrax.rb +5 -0
  193. data/.dassie/db/migrate/20200821212874_add_collection_type_sharing_options.hyrax.rb +5 -0
  194. data/.dassie/db/migrate/20200821212875_add_unique_constraint_to_permission_template_accesses.hyrax.rb +8 -0
  195. data/.dassie/db/migrate/20200821212876_add_branding_to_collection_type.hyrax.rb +5 -0
  196. data/.dassie/db/migrate/20200821212877_add_badge_color_to_collection_types.hyrax.rb +5 -0
  197. data/.dassie/db/migrate/20200821212878_update_single_use_links_column_names.hyrax.rb +6 -0
  198. data/.dassie/db/migrate/20200821212879_change_sipity_entity_specific_responsibility.hyrax.rb +9 -0
  199. data/.dassie/db/migrate/20200821212880_create_mailboxer.mailboxer_engine.rb +65 -0
  200. data/.dassie/db/migrate/20200821212881_add_conversation_optout.mailboxer_engine.rb +15 -0
  201. data/.dassie/db/migrate/20200821212882_add_missing_indices.mailboxer_engine.rb +20 -0
  202. data/.dassie/db/migrate/20200821212883_add_delivery_tracking_info_to_mailboxer_receipts.mailboxer_engine.rb +8 -0
  203. data/.dassie/db/migrate/20200821212884_create_qa_local_authorities.rb +10 -0
  204. data/.dassie/db/migrate/20200821212885_create_qa_local_authority_entries.rb +12 -0
  205. data/.dassie/db/migrate/20200821212902_create_minter_states.noid_rails_engine.rb +17 -0
  206. data/.dassie/db/migrate/20200821212903_rename_minter_state_random_to_rand.noid_rails_engine.rb +8 -0
  207. data/.dassie/db/schema.rb +563 -0
  208. data/.dassie/db/seeds.rb +22 -0
  209. data/.dassie/lib/assets/.keep +0 -0
  210. data/.dassie/lib/tasks/.keep +0 -0
  211. data/.dassie/log/.keep +0 -0
  212. data/.dassie/package.json +17 -0
  213. data/.dassie/public/404.html +67 -0
  214. data/.dassie/public/422.html +67 -0
  215. data/.dassie/public/500.html +66 -0
  216. data/.dassie/public/apple-touch-icon-precomposed.png +0 -0
  217. data/.dassie/public/apple-touch-icon.png +0 -0
  218. data/.dassie/public/favicon.ico +0 -0
  219. data/.dassie/public/robots.txt +1 -0
  220. data/.dassie/solr/conf/_rest_managed.json +3 -0
  221. data/.dassie/solr/conf/mapping-ISOLatin1Accent.txt +246 -0
  222. data/.dassie/solr/conf/schema.xml +367 -0
  223. data/.dassie/solr/conf/scripts.conf +24 -0
  224. data/.dassie/solr/conf/solrconfig.xml +208 -0
  225. data/.dassie/solr/conf/stopwords.txt +58 -0
  226. data/.dassie/solr/conf/stopwords_en.txt +58 -0
  227. data/.dassie/solr/conf/xslt/example.xsl +132 -0
  228. data/.dassie/solr/conf/xslt/example_atom.xsl +67 -0
  229. data/.dassie/solr/conf/xslt/example_rss.xsl +66 -0
  230. data/.dassie/solr/conf/xslt/luke.xsl +337 -0
  231. data/.dassie/solr/sample_solr_documents.yml +2692 -0
  232. data/.dassie/storage/.keep +0 -0
  233. data/.dassie/values.stage.yaml +7 -0
  234. data/.dassie/values.yaml +15 -0
  235. data/.dassie/vendor/.keep +0 -0
  236. data/.dockerignore +12 -0
  237. data/.engine_cart.yml +40 -1
  238. data/.env +26 -0
  239. data/.github/CODE_OF_CONDUCT.md +4 -4
  240. data/.github/CONTRIBUTING.md +1 -1
  241. data/.github/SUPPORT.md +13 -1
  242. data/.gitignore +2 -1
  243. data/.regen +1 -1
  244. data/.rubocop.yml +12 -30
  245. data/.rubocop_fixme.yml +41 -61
  246. data/CODE_OF_CONDUCT.md +4 -4
  247. data/CONTAINERS.md +160 -0
  248. data/CONTRIBUTING.md +183 -0
  249. data/Dockerfile +80 -0
  250. data/Gemfile +27 -35
  251. data/README.md +64 -290
  252. data/Rakefile +7 -0
  253. data/app/actors/hyrax/actors/abstract_actor.rb +1 -0
  254. data/app/actors/hyrax/actors/active_fedora_to_valkyrie.rb +5 -5
  255. data/app/actors/hyrax/actors/add_to_work_actor.rb +39 -40
  256. data/app/actors/hyrax/actors/apply_order_actor.rb +38 -37
  257. data/app/actors/hyrax/actors/apply_permission_template_actor.rb +20 -19
  258. data/app/actors/hyrax/actors/attach_members_actor.rb +54 -51
  259. data/app/actors/hyrax/actors/base_actor.rb +67 -57
  260. data/app/actors/hyrax/actors/cleanup_file_sets_actor.rb +13 -12
  261. data/app/actors/hyrax/actors/cleanup_trophies_actor.rb +4 -3
  262. data/app/actors/hyrax/actors/collections_membership_actor.rb +83 -73
  263. data/app/actors/hyrax/actors/create_with_files_actor.rb +24 -23
  264. data/app/actors/hyrax/actors/create_with_files_ordered_members_actor.rb +29 -28
  265. data/app/actors/hyrax/actors/create_with_remote_files_actor.rb +75 -49
  266. data/app/actors/hyrax/actors/create_with_remote_files_ordered_members_actor.rb +24 -28
  267. data/app/actors/hyrax/actors/default_admin_set_actor.rb +23 -23
  268. data/app/actors/hyrax/actors/embargo_actor.rb +1 -0
  269. data/app/actors/hyrax/actors/environment.rb +1 -0
  270. data/app/actors/hyrax/actors/featured_work_actor.rb +8 -7
  271. data/app/actors/hyrax/actors/file_actor.rb +73 -66
  272. data/app/actors/hyrax/actors/file_set_actor.rb +110 -60
  273. data/app/actors/hyrax/actors/initialize_workflow_actor.rb +13 -4
  274. data/app/actors/hyrax/actors/interpret_visibility_actor.rb +144 -135
  275. data/app/actors/hyrax/actors/lease_actor.rb +1 -0
  276. data/app/actors/hyrax/actors/model_actor.rb +12 -5
  277. data/app/actors/hyrax/actors/null_actor.rb +12 -0
  278. data/app/actors/hyrax/actors/optimistic_lock_validator.rb +12 -11
  279. data/app/actors/hyrax/actors/ordered_members_actor.rb +1 -1
  280. data/app/actors/hyrax/actors/terminator.rb +1 -0
  281. data/app/actors/hyrax/actors/transactional_request.rb +1 -0
  282. data/app/actors/hyrax/actors/transfer_request_actor.rb +13 -7
  283. data/app/actors/hyrax/actors/valkyrie_to_active_fedora.rb +6 -6
  284. data/app/assets/images/unauthorized.png +0 -0
  285. data/app/assets/javascripts/hyrax.js +3 -0
  286. data/app/assets/javascripts/hyrax/admin/admin_set/visibility.es6 +57 -0
  287. data/app/assets/javascripts/hyrax/app.js.erb +0 -10
  288. data/app/assets/javascripts/hyrax/autocomplete.es6 +29 -0
  289. data/app/assets/javascripts/hyrax/batch_select_all.js +5 -0
  290. data/app/assets/javascripts/hyrax/collapse.js +91 -0
  291. data/app/assets/javascripts/hyrax/collections/editor.es6 +7 -2
  292. data/app/assets/javascripts/hyrax/editor.es6 +9 -10
  293. data/app/assets/javascripts/hyrax/file_manager/save_manager.es6 +6 -5
  294. data/app/assets/javascripts/hyrax/monkey_patch_turbolinks.js +36 -0
  295. data/app/assets/javascripts/hyrax/nav_safety.js +22 -6
  296. data/app/assets/javascripts/hyrax/skip_to_content.js +15 -0
  297. data/app/assets/stylesheets/hyrax/_catalog.scss +1 -0
  298. data/app/assets/stylesheets/hyrax/_file_sets.scss +27 -0
  299. data/app/assets/stylesheets/hyrax/_home-page.scss +4 -1
  300. data/app/assets/stylesheets/hyrax/_representative-media.scss +2 -2
  301. data/app/assets/stylesheets/hyrax/_settings.scss +2 -2
  302. data/app/assets/stylesheets/hyrax/_styles.scss +10 -0
  303. data/app/assets/stylesheets/hyrax/_usage-stats.scss +1 -1
  304. data/app/assets/stylesheets/hyrax/_users.scss +7 -2
  305. data/app/authorities/qa/authorities/collections.rb +20 -9
  306. data/app/authorities/qa/authorities/find_works.rb +21 -5
  307. data/app/builders/hyrax/bootstrap_breadcrumbs_builder.rb +5 -4
  308. data/app/builders/hyrax/form_builder.rb +1 -0
  309. data/app/builders/hyrax/manifest_helper.rb +2 -1
  310. data/app/channels/hyrax/application_cable/channel.rb +1 -0
  311. data/app/channels/hyrax/application_cable/connection.rb +16 -15
  312. data/app/channels/hyrax/notifications_channel.rb +1 -0
  313. data/app/connections/hyrax/clean_connection.rb +9 -8
  314. data/app/controllers/concerns/hyrax/admin/stats_behavior.rb +6 -5
  315. data/app/controllers/concerns/hyrax/admin/users_controller_behavior.rb +4 -3
  316. data/app/controllers/concerns/hyrax/api.rb +23 -20
  317. data/app/controllers/concerns/hyrax/breadcrumbs.rb +1 -0
  318. data/app/controllers/concerns/hyrax/breadcrumbs_for_collections.rb +4 -3
  319. data/app/controllers/concerns/hyrax/breadcrumbs_for_works.rb +22 -21
  320. data/app/controllers/concerns/hyrax/collections.rb +1 -0
  321. data/app/controllers/concerns/hyrax/collections/accepts_batches.rb +26 -25
  322. data/app/controllers/concerns/hyrax/collections_controller_behavior.rb +68 -58
  323. data/app/controllers/concerns/hyrax/controller.rb +57 -34
  324. data/app/controllers/concerns/hyrax/deny_access_override_behavior.rb +2 -1
  325. data/app/controllers/concerns/hyrax/embargoes_controller_behavior.rb +6 -4
  326. data/app/controllers/concerns/hyrax/leases_controller_behavior.rb +6 -3
  327. data/app/controllers/concerns/hyrax/local_file_downloads_controller_behavior.rb +69 -68
  328. data/app/controllers/concerns/hyrax/manages_embargoes.rb +1 -0
  329. data/app/controllers/concerns/hyrax/singular_subresource_controller.rb +1 -0
  330. data/app/controllers/concerns/hyrax/themed_layout_controller.rb +1 -0
  331. data/app/controllers/concerns/hyrax/works_controller_behavior.rb +277 -184
  332. data/app/controllers/hyrax/admin/admin_sets_controller.rb +50 -49
  333. data/app/controllers/hyrax/admin/appearances_controller.rb +7 -6
  334. data/app/controllers/hyrax/admin/collection_type_participants_controller.rb +1 -0
  335. data/app/controllers/hyrax/admin/collection_types_controller.rb +31 -32
  336. data/app/controllers/hyrax/admin/features_controller.rb +1 -0
  337. data/app/controllers/hyrax/admin/permission_template_accesses_controller.rb +47 -46
  338. data/app/controllers/hyrax/admin/permission_templates_controller.rb +63 -62
  339. data/app/controllers/hyrax/admin/stats_controller.rb +1 -0
  340. data/app/controllers/hyrax/admin/strategies_controller.rb +1 -0
  341. data/app/controllers/hyrax/admin/users_controller.rb +1 -0
  342. data/app/controllers/hyrax/admin/workflow_roles_controller.rb +4 -3
  343. data/app/controllers/hyrax/admin/workflows_controller.rb +4 -3
  344. data/app/controllers/hyrax/api/items_controller.rb +34 -33
  345. data/app/controllers/hyrax/api/zotero_controller.rb +39 -38
  346. data/app/controllers/hyrax/batch_edits_controller.rb +46 -45
  347. data/app/controllers/hyrax/batch_uploads_controller.rb +50 -49
  348. data/app/controllers/hyrax/citations_controller.rb +4 -3
  349. data/app/controllers/hyrax/collections_controller.rb +13 -12
  350. data/app/controllers/hyrax/contact_form_controller.rb +14 -10
  351. data/app/controllers/hyrax/content_blocks_controller.rb +13 -12
  352. data/app/controllers/hyrax/dashboard/collection_members_controller.rb +24 -23
  353. data/app/controllers/hyrax/dashboard/collections_controller.rb +241 -230
  354. data/app/controllers/hyrax/dashboard/nest_collections_controller.rb +29 -28
  355. data/app/controllers/hyrax/dashboard/profiles_controller.rb +27 -26
  356. data/app/controllers/hyrax/dashboard/works_controller.rb +11 -11
  357. data/app/controllers/hyrax/dashboard_controller.rb +1 -0
  358. data/app/controllers/hyrax/depositors_controller.rb +31 -23
  359. data/app/controllers/hyrax/downloads_controller.rb +49 -48
  360. data/app/controllers/hyrax/embargoes_controller.rb +1 -0
  361. data/app/controllers/hyrax/featured_work_lists_controller.rb +4 -3
  362. data/app/controllers/hyrax/featured_works_controller.rb +1 -0
  363. data/app/controllers/hyrax/file_sets_controller.rb +157 -87
  364. data/app/controllers/hyrax/fixity_checks_controller.rb +9 -8
  365. data/app/controllers/hyrax/homepage_controller.rb +23 -22
  366. data/app/controllers/hyrax/leases_controller.rb +1 -0
  367. data/app/controllers/hyrax/my/collections_controller.rb +19 -19
  368. data/app/controllers/hyrax/my/highlights_controller.rb +24 -24
  369. data/app/controllers/hyrax/my/shares_controller.rb +10 -10
  370. data/app/controllers/hyrax/my/works_controller.rb +15 -19
  371. data/app/controllers/hyrax/my_controller.rb +25 -16
  372. data/app/controllers/hyrax/notifications_controller.rb +4 -3
  373. data/app/controllers/hyrax/operations_controller.rb +1 -0
  374. data/app/controllers/hyrax/pages_controller.rb +17 -16
  375. data/app/controllers/hyrax/permissions_controller.rb +2 -0
  376. data/app/controllers/hyrax/resource_sync_controller.rb +23 -22
  377. data/app/controllers/hyrax/single_use_links_controller.rb +7 -6
  378. data/app/controllers/hyrax/single_use_links_viewer_controller.rb +52 -45
  379. data/app/controllers/hyrax/static_controller.rb +1 -0
  380. data/app/controllers/hyrax/stats_controller.rb +11 -13
  381. data/app/controllers/hyrax/transfers_controller.rb +14 -13
  382. data/app/controllers/hyrax/trophies_controller.rb +1 -0
  383. data/app/controllers/hyrax/uploads_controller.rb +1 -0
  384. data/app/controllers/hyrax/users_controller.rb +52 -36
  385. data/app/controllers/hyrax/workflow_actions_controller.rb +19 -18
  386. data/app/conversions/power_converters.rb +1 -0
  387. data/app/conversions/power_converters/polymorphic_type.rb +2 -0
  388. data/app/conversions/power_converters/sipity_action.rb +2 -0
  389. data/app/conversions/power_converters/sipity_action_name.rb +2 -0
  390. data/app/conversions/power_converters/sipity_agent.rb +3 -0
  391. data/app/conversions/power_converters/sipity_entity.rb +2 -0
  392. data/app/conversions/power_converters/sipity_role.rb +2 -0
  393. data/app/conversions/power_converters/sipity_workflow_id.rb +1 -0
  394. data/app/conversions/power_converters/sipity_workflow_state.rb +3 -0
  395. data/app/forms/hyrax/forms/admin/appearance.rb +20 -19
  396. data/app/forms/hyrax/forms/admin/collection_type_form.rb +12 -1
  397. data/app/forms/hyrax/forms/admin/collection_type_participant_form.rb +1 -0
  398. data/app/forms/hyrax/forms/admin_set_form.rb +4 -11
  399. data/app/forms/hyrax/forms/batch_edit_form.rb +18 -17
  400. data/app/forms/hyrax/forms/batch_upload_form.rb +1 -1
  401. data/app/forms/hyrax/forms/collection_form.rb +24 -52
  402. data/app/forms/hyrax/forms/dashboard/nest_collection_form.rb +23 -22
  403. data/app/forms/hyrax/forms/failed_submission_form_wrapper.rb +136 -0
  404. data/app/forms/hyrax/forms/file_manager_form.rb +12 -4
  405. data/app/forms/hyrax/forms/file_set_edit_form.rb +1 -0
  406. data/app/forms/hyrax/forms/permission_template_form.rb +178 -176
  407. data/app/forms/hyrax/forms/resource_form.rb +209 -0
  408. data/app/forms/hyrax/forms/widgets/admin_set_embargo_period.rb +1 -0
  409. data/app/forms/hyrax/forms/widgets/admin_set_visibility.rb +1 -0
  410. data/app/forms/hyrax/forms/work_form.rb +12 -39
  411. data/app/forms/hyrax/forms/workflow_action_form.rb +12 -5
  412. data/app/forms/hyrax/forms/workflow_responsibility_form.rb +1 -0
  413. data/app/helpers/hyrax/ability_helper.rb +7 -5
  414. data/app/helpers/hyrax/batch_edits_helper.rb +1 -0
  415. data/app/helpers/hyrax/blacklight_override.rb +1 -0
  416. data/app/helpers/hyrax/charts_helper.rb +1 -0
  417. data/app/helpers/hyrax/citations_behavior.rb +1 -0
  418. data/app/helpers/hyrax/citations_behaviors/common_behavior.rb +1 -0
  419. data/app/helpers/hyrax/citations_behaviors/formatters.rb +1 -0
  420. data/app/helpers/hyrax/citations_behaviors/formatters/apa_formatter.rb +40 -38
  421. data/app/helpers/hyrax/citations_behaviors/formatters/chicago_formatter.rb +14 -14
  422. data/app/helpers/hyrax/citations_behaviors/formatters/mla_formatter.rb +10 -9
  423. data/app/helpers/hyrax/citations_behaviors/formatters/open_url_formatter.rb +1 -0
  424. data/app/helpers/hyrax/citations_behaviors/name_behavior.rb +5 -4
  425. data/app/helpers/hyrax/citations_behaviors/publication_behavior.rb +5 -5
  426. data/app/helpers/hyrax/citations_behaviors/title_behavior.rb +2 -1
  427. data/app/helpers/hyrax/collections_helper.rb +46 -9
  428. data/app/helpers/hyrax/contact_form_helper.rb +23 -0
  429. data/app/helpers/hyrax/content_block_helper.rb +1 -0
  430. data/app/helpers/hyrax/content_block_helper_behavior.rb +2 -1
  431. data/app/helpers/hyrax/dashboard_helper_behavior.rb +8 -2
  432. data/app/helpers/hyrax/embargo_helper.rb +25 -0
  433. data/app/helpers/hyrax/file_set_helper.rb +2 -1
  434. data/app/helpers/hyrax/hyrax_helper_behavior.rb +88 -50
  435. data/app/helpers/hyrax/iiif_helper.rb +1 -0
  436. data/app/helpers/hyrax/lease_helper.rb +25 -0
  437. data/app/helpers/hyrax/membership_helper.rb +48 -0
  438. data/app/helpers/hyrax/permission_levels_helper.rb +32 -0
  439. data/app/helpers/hyrax/permissions_helper.rb +8 -7
  440. data/app/helpers/hyrax/title_helper.rb +11 -5
  441. data/app/helpers/hyrax/trophy_helper.rb +1 -0
  442. data/app/helpers/hyrax/url_helper.rb +1 -0
  443. data/app/helpers/hyrax/work_form_helper.rb +48 -0
  444. data/app/helpers/hyrax/workflows_helper.rb +42 -0
  445. data/app/indexers/concerns/hyrax/indexes_basic_metadata.rb +1 -0
  446. data/app/indexers/concerns/hyrax/indexes_linked_metadata.rb +1 -0
  447. data/app/indexers/hyrax/admin_set_indexer.rb +7 -1
  448. data/app/indexers/hyrax/basic_metadata_indexer.rb +37 -36
  449. data/app/indexers/hyrax/collection_indexer.rb +1 -2
  450. data/app/indexers/hyrax/collection_with_basic_metadata_indexer.rb +1 -0
  451. data/app/indexers/hyrax/deep_indexing_service.rb +65 -64
  452. data/app/indexers/hyrax/file_set_indexer.rb +19 -18
  453. data/app/indexers/hyrax/indexes_workflow.rb +4 -3
  454. data/app/indexers/hyrax/pcdm_collection_indexer.rb +21 -0
  455. data/app/indexers/hyrax/permission_indexer.rb +25 -0
  456. data/app/indexers/hyrax/repository_reindexer.rb +1 -0
  457. data/app/indexers/hyrax/resource_indexer.rb +15 -0
  458. data/app/indexers/hyrax/valkyrie_collection_indexer.rb +10 -0
  459. data/app/indexers/hyrax/valkyrie_file_set_indexer.rb +116 -0
  460. data/app/indexers/hyrax/valkyrie_indexer.rb +120 -0
  461. data/app/indexers/hyrax/valkyrie_work_indexer.rb +30 -0
  462. data/app/indexers/hyrax/visibility_indexer.rb +26 -0
  463. data/app/indexers/hyrax/work_indexer.rb +1 -0
  464. data/app/inputs/controlled_vocabulary_input.rb +62 -62
  465. data/app/inputs/multi_value_select_input.rb +31 -30
  466. data/app/inputs/multifile_input.rb +1 -0
  467. data/app/jobs/attach_files_to_work_job.rb +38 -27
  468. data/app/jobs/attach_files_to_work_with_ordered_members_job.rb +19 -18
  469. data/app/jobs/batch_create_job.rb +15 -14
  470. data/app/jobs/characterize_job.rb +14 -14
  471. data/app/jobs/concerns/hyrax/members_permission_job_behavior.rb +28 -0
  472. data/app/jobs/concerns/hyrax/permission_job_behavior.rb +23 -0
  473. data/app/jobs/content_delete_event_job.rb +1 -0
  474. data/app/jobs/content_deposit_event_job.rb +1 -0
  475. data/app/jobs/content_depositor_change_event_job.rb +1 -0
  476. data/app/jobs/content_event_job.rb +1 -0
  477. data/app/jobs/content_new_version_event_job.rb +1 -0
  478. data/app/jobs/content_restored_version_event_job.rb +1 -0
  479. data/app/jobs/content_update_event_job.rb +1 -0
  480. data/app/jobs/create_derivatives_job.rb +1 -0
  481. data/app/jobs/create_work_job.rb +4 -3
  482. data/app/jobs/embargo_expiry_job.rb +17 -0
  483. data/app/jobs/event_job.rb +17 -8
  484. data/app/jobs/file_set_attached_event_job.rb +19 -13
  485. data/app/jobs/fixity_check_job.rb +28 -29
  486. data/app/jobs/hyrax/application_job.rb +11 -0
  487. data/app/jobs/hyrax/grant_edit_job.rb +13 -8
  488. data/app/jobs/hyrax/grant_edit_to_members_job.rb +5 -13
  489. data/app/jobs/hyrax/grant_read_job.rb +13 -8
  490. data/app/jobs/hyrax/grant_read_to_members_job.rb +5 -13
  491. data/app/jobs/hyrax/revoke_edit_from_members_job.rb +6 -13
  492. data/app/jobs/hyrax/revoke_edit_job.rb +13 -8
  493. data/app/jobs/iiif_manifest_cache_prewarm_job.rb +16 -0
  494. data/app/jobs/import_export_job.rb +14 -13
  495. data/app/jobs/import_url_job.rb +84 -67
  496. data/app/jobs/ingest_job.rb +1 -0
  497. data/app/jobs/ingest_local_file_job.rb +4 -3
  498. data/app/jobs/inherit_permissions_job.rb +36 -4
  499. data/app/jobs/lease_expiry_job.rb +17 -0
  500. data/app/jobs/resolrize_job.rb +1 -0
  501. data/app/jobs/stream_notifications_job.rb +1 -0
  502. data/app/jobs/user_edit_profile_event_job.rb +1 -0
  503. data/app/jobs/visibility_copy_job.rb +1 -0
  504. data/app/mailers/hyrax/contact_mailer.rb +2 -1
  505. data/app/models/admin_set.rb +45 -55
  506. data/app/models/batch_upload_item.rb +1 -0
  507. data/app/models/checksum_audit_log.rb +1 -0
  508. data/app/models/collection_branding_info.rb +1 -0
  509. data/app/models/concerns/hyrax/ability.rb +328 -134
  510. data/app/models/concerns/hyrax/ability/admin_set_ability.rb +1 -5
  511. data/app/models/concerns/hyrax/ability/collection_ability.rb +12 -11
  512. data/app/models/concerns/hyrax/ability/collection_type_ability.rb +1 -0
  513. data/app/models/concerns/hyrax/ability/permission_template_ability.rb +1 -0
  514. data/app/models/concerns/hyrax/ability/solr_document_ability.rb +1 -0
  515. data/app/models/concerns/hyrax/basic_metadata.rb +3 -2
  516. data/app/models/concerns/hyrax/collection_behavior.rb +48 -71
  517. data/app/models/concerns/hyrax/collection_nesting.rb +4 -3
  518. data/app/models/concerns/hyrax/core_metadata.rb +1 -0
  519. data/app/models/concerns/hyrax/file_set/belongs_to_works.rb +2 -1
  520. data/app/models/concerns/hyrax/file_set/characterization.rb +3 -2
  521. data/app/models/concerns/hyrax/file_set/derivatives.rb +5 -4
  522. data/app/models/concerns/hyrax/file_set/indexing.rb +2 -1
  523. data/app/models/concerns/hyrax/file_set/querying.rb +2 -1
  524. data/app/models/concerns/hyrax/file_set_behavior.rb +1 -0
  525. data/app/models/concerns/hyrax/has_rendering.rb +1 -0
  526. data/app/models/concerns/hyrax/has_representative.rb +1 -0
  527. data/app/models/concerns/hyrax/human_readable_type.rb +2 -9
  528. data/app/models/concerns/hyrax/in_admin_set.rb +4 -0
  529. data/app/models/concerns/hyrax/naming.rb +11 -2
  530. data/app/models/concerns/hyrax/nested_works.rb +1 -0
  531. data/app/models/concerns/hyrax/permissions.rb +1 -0
  532. data/app/models/concerns/hyrax/permissions/readable.rb +1 -0
  533. data/app/models/concerns/hyrax/permissions/writable.rb +3 -2
  534. data/app/models/concerns/hyrax/proxy_deposit.rb +1 -0
  535. data/app/models/concerns/hyrax/serializers.rb +2 -1
  536. data/app/models/concerns/hyrax/solr_document/characterization.rb +36 -2
  537. data/app/models/concerns/hyrax/solr_document/export.rb +24 -23
  538. data/app/models/concerns/hyrax/solr_document/metadata.rb +3 -1
  539. data/app/models/concerns/hyrax/solr_document/ordered_members.rb +44 -0
  540. data/app/models/concerns/hyrax/solr_document_behavior.rb +59 -10
  541. data/app/models/concerns/hyrax/suppressible.rb +6 -4
  542. data/app/models/concerns/hyrax/user.rb +2 -1
  543. data/app/models/concerns/hyrax/user_usage_stats.rb +1 -0
  544. data/app/models/concerns/hyrax/virus_check.rb +1 -0
  545. data/app/models/concerns/hyrax/with_events.rb +17 -7
  546. data/app/models/concerns/hyrax/with_file_sets.rb +6 -0
  547. data/app/models/concerns/hyrax/work_behavior.rb +2 -7
  548. data/app/models/concerns/hyrax/works/metadata.rb +1 -0
  549. data/app/models/content_block.rb +8 -1
  550. data/app/models/featured_work.rb +1 -0
  551. data/app/models/featured_work_list.rb +17 -16
  552. data/app/models/file_download_stat.rb +1 -0
  553. data/app/models/file_view_stat.rb +1 -0
  554. data/app/models/hyrax/access_control.rb +44 -0
  555. data/app/models/hyrax/administrative_set.rb +12 -0
  556. data/app/models/hyrax/avatar_validator.rb +1 -0
  557. data/app/models/hyrax/base.rb +18 -0
  558. data/app/models/hyrax/batch_create_operation.rb +3 -2
  559. data/app/models/hyrax/change_set.rb +49 -0
  560. data/app/models/hyrax/collection_type.rb +110 -59
  561. data/app/models/hyrax/collection_type_participant.rb +6 -5
  562. data/app/models/hyrax/contact_form.rb +2 -7
  563. data/app/models/hyrax/download.rb +1 -0
  564. data/app/models/hyrax/event.rb +28 -0
  565. data/app/models/hyrax/feature.rb +1 -0
  566. data/app/models/hyrax/file_metadata.rb +61 -12
  567. data/app/models/hyrax/file_set.rb +29 -0
  568. data/app/models/hyrax/group.rb +13 -6
  569. data/app/models/hyrax/operation.rb +5 -4
  570. data/app/models/hyrax/orcid_validator.rb +13 -5
  571. data/app/models/hyrax/pageview.rb +1 -0
  572. data/app/models/hyrax/pcdm_collection.rb +35 -0
  573. data/app/models/hyrax/permission.rb +19 -0
  574. data/app/models/hyrax/permission_template.rb +50 -31
  575. data/app/models/hyrax/resource.rb +95 -10
  576. data/app/models/hyrax/statistic.rb +17 -16
  577. data/app/models/hyrax/uploaded_file.rb +20 -2
  578. data/app/models/hyrax/valkyrie_global_id_proxy.rb +44 -0
  579. data/app/models/hyrax/version_committer.rb +1 -0
  580. data/app/models/hyrax/virus_scanner.rb +9 -7
  581. data/app/models/hyrax/work.rb +32 -0
  582. data/app/models/hyrax/workflow_action_info.rb +3 -2
  583. data/app/models/job_io_wrapper.rb +25 -24
  584. data/app/models/proxy_deposit_request.rb +46 -41
  585. data/app/models/proxy_deposit_rights.rb +1 -0
  586. data/app/models/single_use_link.rb +16 -11
  587. data/app/models/sipity.rb +108 -0
  588. data/app/models/sipity/agent.rb +3 -3
  589. data/app/models/sipity/comment.rb +1 -0
  590. data/app/models/sipity/entity.rb +5 -4
  591. data/app/models/sipity/entity_specific_responsibility.rb +1 -0
  592. data/app/models/sipity/method.rb +1 -0
  593. data/app/models/sipity/notifiable_context.rb +2 -1
  594. data/app/models/sipity/notification.rb +2 -3
  595. data/app/models/sipity/notification_recipient.rb +1 -0
  596. data/app/models/sipity/role.rb +4 -4
  597. data/app/models/sipity/workflow.rb +42 -21
  598. data/app/models/sipity/workflow_action.rb +24 -0
  599. data/app/models/sipity/workflow_responsibility.rb +1 -0
  600. data/app/models/sipity/workflow_role.rb +1 -0
  601. data/app/models/sipity/workflow_state.rb +1 -0
  602. data/app/models/sipity/workflow_state_action.rb +1 -0
  603. data/app/models/sipity/workflow_state_action_permission.rb +1 -0
  604. data/app/models/solr_hit.rb +1 -0
  605. data/app/models/trophy.rb +1 -0
  606. data/app/models/user_mailbox.rb +15 -14
  607. data/app/models/user_stat.rb +1 -0
  608. data/app/models/vocab/fedora_resource_status.rb +5 -4
  609. data/app/models/work_view_stat.rb +1 -0
  610. data/app/presenters/hyrax/admin/dashboard_presenter.rb +1 -0
  611. data/app/presenters/hyrax/admin/repository_growth_presenter.rb +9 -8
  612. data/app/presenters/hyrax/admin/repository_object_presenter.rb +24 -18
  613. data/app/presenters/hyrax/admin/user_activity_presenter.rb +9 -8
  614. data/app/presenters/hyrax/admin/users_presenter.rb +5 -4
  615. data/app/presenters/hyrax/admin/workflow_role_presenter.rb +8 -7
  616. data/app/presenters/hyrax/admin/workflow_roles_presenter.rb +1 -0
  617. data/app/presenters/hyrax/admin_set_options_presenter.rb +37 -31
  618. data/app/presenters/hyrax/admin_set_presenter.rb +1 -0
  619. data/app/presenters/hyrax/admin_stats_presenter.rb +7 -6
  620. data/app/presenters/hyrax/characterization_behavior.rb +13 -12
  621. data/app/presenters/hyrax/collapsable_section_presenter.rb +24 -24
  622. data/app/presenters/hyrax/collection_presenter.rb +17 -5
  623. data/app/presenters/hyrax/composite_presenter_factory.rb +1 -0
  624. data/app/presenters/hyrax/dashboard/user_presenter.rb +11 -10
  625. data/app/presenters/hyrax/displays_image.rb +54 -31
  626. data/app/presenters/hyrax/embargo_presenter.rb +1 -0
  627. data/app/presenters/hyrax/file_set_presenter.rb +23 -9
  628. data/app/presenters/hyrax/file_usage.rb +7 -6
  629. data/app/presenters/hyrax/fixity_status_presenter.rb +49 -48
  630. data/app/presenters/hyrax/google_scholar_presenter.rb +86 -0
  631. data/app/presenters/hyrax/homepage_presenter.rb +5 -4
  632. data/app/presenters/hyrax/iiif_manifest_presenter.rb +237 -0
  633. data/app/presenters/hyrax/inspect_work_presenter.rb +18 -17
  634. data/app/presenters/hyrax/lease_presenter.rb +1 -0
  635. data/app/presenters/hyrax/member_presenter_factory.rb +21 -26
  636. data/app/presenters/hyrax/menu_presenter.rb +3 -2
  637. data/app/presenters/hyrax/model_icon.rb +1 -0
  638. data/app/presenters/hyrax/model_proxy.rb +13 -9
  639. data/app/presenters/hyrax/page_title_decorator.rb +30 -0
  640. data/app/presenters/hyrax/permission_badge.rb +14 -13
  641. data/app/presenters/hyrax/presenter_factory.rb +11 -22
  642. data/app/presenters/hyrax/presenter_renderer.rb +30 -22
  643. data/app/presenters/hyrax/presents_attributes.rb +22 -21
  644. data/app/presenters/hyrax/select_collection_type_list_presenter.rb +1 -0
  645. data/app/presenters/hyrax/select_collection_type_presenter.rb +17 -3
  646. data/app/presenters/hyrax/select_type_list_presenter.rb +4 -2
  647. data/app/presenters/hyrax/select_type_presenter.rb +19 -17
  648. data/app/presenters/hyrax/single_use_link_presenter.rb +7 -6
  649. data/app/presenters/hyrax/stats_usage_presenter.rb +27 -27
  650. data/app/presenters/hyrax/transfers_presenter.rb +9 -8
  651. data/app/presenters/hyrax/trophy_presenter.rb +1 -0
  652. data/app/presenters/hyrax/twitter_presenter.rb +1 -0
  653. data/app/presenters/hyrax/user_profile_presenter.rb +1 -0
  654. data/app/presenters/hyrax/version_list_presenter.rb +7 -6
  655. data/app/presenters/hyrax/version_presenter.rb +1 -0
  656. data/app/presenters/hyrax/work_show_presenter.rb +67 -67
  657. data/app/presenters/hyrax/work_usage.rb +4 -3
  658. data/app/presenters/hyrax/workflow_presenter.rb +10 -9
  659. data/app/renderers/hyrax/renderers.rb +1 -0
  660. data/app/renderers/hyrax/renderers/attribute_renderer.rb +54 -40
  661. data/app/renderers/hyrax/renderers/configured_microdata.rb +4 -3
  662. data/app/renderers/hyrax/renderers/date_attribute_renderer.rb +4 -3
  663. data/app/renderers/hyrax/renderers/external_link_attribute_renderer.rb +5 -4
  664. data/app/renderers/hyrax/renderers/faceted_attribute_renderer.rb +10 -9
  665. data/app/renderers/hyrax/renderers/license_attribute_renderer.rb +15 -14
  666. data/app/renderers/hyrax/renderers/linked_attribute_renderer.rb +12 -11
  667. data/app/renderers/hyrax/renderers/rights_statement_attribute_renderer.rb +16 -15
  668. data/app/search_builders/hyrax/README.md +3 -3
  669. data/app/search_builders/hyrax/abstract_type_relation.rb +1 -0
  670. data/app/search_builders/hyrax/admin_admin_set_member_search_builder.rb +10 -3
  671. data/app/search_builders/hyrax/admin_set_search_builder.rb +8 -7
  672. data/app/search_builders/hyrax/catalog_search_builder.rb +17 -16
  673. data/app/search_builders/hyrax/collection_member_search_builder.rb +30 -16
  674. data/app/search_builders/hyrax/collection_search_builder.rb +13 -12
  675. data/app/search_builders/hyrax/dashboard/collections_search_builder.rb +6 -5
  676. data/app/search_builders/hyrax/dashboard/managed_search_filters.rb +2 -1
  677. data/app/search_builders/hyrax/dashboard/nested_collections_search_builder.rb +54 -77
  678. data/app/search_builders/hyrax/dashboard/works_search_builder.rb +1 -0
  679. data/app/search_builders/hyrax/deactivated_embargo_search_builder.rb +1 -0
  680. data/app/search_builders/hyrax/deactivated_lease_search_builder.rb +1 -0
  681. data/app/search_builders/hyrax/deposit_search_builder.rb +4 -3
  682. data/app/search_builders/hyrax/embargo_search_builder.rb +1 -1
  683. data/app/search_builders/hyrax/expired_embargo_search_builder.rb +1 -0
  684. data/app/search_builders/hyrax/expired_lease_search_builder.rb +1 -0
  685. data/app/search_builders/hyrax/exposed_models_relation.rb +2 -1
  686. data/app/search_builders/hyrax/file_set_search_builder.rb +1 -0
  687. data/app/search_builders/hyrax/filter_by_type.rb +42 -40
  688. data/app/search_builders/hyrax/filter_suppressed.rb +1 -0
  689. data/app/search_builders/hyrax/filter_suppressed_with_roles.rb +26 -19
  690. data/app/search_builders/hyrax/homepage_search_builder.rb +1 -0
  691. data/app/search_builders/hyrax/lease_search_builder.rb +1 -1
  692. data/app/search_builders/hyrax/member_with_files_search_builder.rb +4 -3
  693. data/app/search_builders/hyrax/my/collections_search_builder.rb +1 -0
  694. data/app/search_builders/hyrax/my/find_works_search_builder.rb +1 -0
  695. data/app/search_builders/hyrax/my/highlights_search_builder.rb +1 -0
  696. data/app/search_builders/hyrax/my/search_builder.rb +1 -0
  697. data/app/search_builders/hyrax/my/search_builder_behavior.rb +1 -0
  698. data/app/search_builders/hyrax/my/shares_search_builder.rb +1 -0
  699. data/app/search_builders/hyrax/my/works_search_builder.rb +1 -0
  700. data/app/search_builders/hyrax/nested_collections_parent_search_builder.rb +13 -2
  701. data/app/search_builders/hyrax/parent_collection_search_builder.rb +1 -0
  702. data/app/search_builders/hyrax/search_builder.rb +2 -4
  703. data/app/search_builders/hyrax/search_filters.rb +7 -8
  704. data/app/search_builders/hyrax/single_admin_set_search_builder.rb +1 -0
  705. data/app/search_builders/hyrax/single_collection_search_builder.rb +1 -0
  706. data/app/search_builders/hyrax/single_result.rb +1 -0
  707. data/app/search_builders/hyrax/single_use_link_search_builder.rb +1 -0
  708. data/app/search_builders/hyrax/stats/work_status_search_builder.rb +4 -3
  709. data/app/search_builders/hyrax/work_relation.rb +1 -0
  710. data/app/search_builders/hyrax/work_search_builder.rb +1 -0
  711. data/app/search_builders/hyrax/works_search_builder.rb +1 -0
  712. data/app/services/hyrax/abstract_message_service.rb +4 -3
  713. data/app/services/hyrax/access_control_list.rb +249 -0
  714. data/app/services/hyrax/adapters/nesting_index_adapter.rb +32 -12
  715. data/app/services/hyrax/admin_set_create_service.rb +50 -49
  716. data/app/services/hyrax/admin_set_member_service.rb +30 -15
  717. data/app/services/hyrax/admin_set_service.rb +16 -16
  718. data/app/services/hyrax/analytics.rb +1 -0
  719. data/app/services/hyrax/batch_create_failure_service.rb +1 -0
  720. data/app/services/hyrax/batch_create_success_service.rb +1 -0
  721. data/app/services/hyrax/caching_iiif_manifest_builder.rb +57 -0
  722. data/app/services/hyrax/callbacks.rb +88 -0
  723. data/app/services/hyrax/change_content_depositor_service.rb +60 -3
  724. data/app/services/hyrax/characterization/file_set_description.rb +45 -0
  725. data/app/services/hyrax/characterization/model_wrapper.rb +0 -0
  726. data/app/services/hyrax/child_types.rb +40 -0
  727. data/app/services/hyrax/collection_member_service.rb +6 -1
  728. data/app/services/hyrax/collection_types/create_service.rb +1 -0
  729. data/app/services/hyrax/collection_types/permissions_service.rb +6 -4
  730. data/app/services/hyrax/collections/collection_member_service.rb +45 -64
  731. data/app/services/hyrax/collections/managed_collections_service.rb +16 -2
  732. data/app/services/hyrax/collections/migration_service.rb +15 -8
  733. data/app/services/hyrax/collections/nested_collection_persistence_service.rb +4 -3
  734. data/app/services/hyrax/collections/nested_collection_query_service.rb +49 -28
  735. data/app/services/hyrax/collections/permissions_create_service.rb +3 -2
  736. data/app/services/hyrax/collections/permissions_service.rb +7 -8
  737. data/app/services/hyrax/collections/search_service.rb +1 -0
  738. data/app/services/hyrax/collections_service.rb +13 -12
  739. data/app/services/hyrax/contextual_path.rb +1 -0
  740. data/app/services/hyrax/curation_concern.rb +1 -0
  741. data/app/services/hyrax/custom_queries/find_access_control.rb +28 -0
  742. data/app/services/hyrax/custom_queries/find_by_collection_type.rb +0 -0
  743. data/app/services/hyrax/custom_queries/find_collections_by_type.rb +38 -0
  744. data/app/services/hyrax/custom_queries/find_file_metadata.rb +72 -0
  745. data/app/services/hyrax/custom_queries/find_ids_by_model.rb +37 -0
  746. data/app/services/hyrax/custom_queries/find_many_by_alternate_ids.rb +33 -0
  747. data/app/services/hyrax/custom_queries/navigators/child_collections_navigator.rb +18 -11
  748. data/app/services/hyrax/custom_queries/navigators/child_filesets_navigator.rb +16 -10
  749. data/app/services/hyrax/custom_queries/navigators/child_works_navigator.rb +16 -10
  750. data/app/services/hyrax/custom_queries/navigators/collection_members.rb +48 -0
  751. data/app/services/hyrax/custom_queries/navigators/find_files.rb +91 -0
  752. data/app/services/hyrax/database_migrator.rb +25 -21
  753. data/app/services/hyrax/default_middleware_stack.rb +1 -6
  754. data/app/services/hyrax/derivative_path.rb +23 -22
  755. data/app/services/hyrax/derivative_service.rb +1 -0
  756. data/app/services/hyrax/edit_permissions_service.rb +201 -0
  757. data/app/services/hyrax/embargo_manager.rb +114 -10
  758. data/app/services/hyrax/embargo_service.rb +4 -3
  759. data/app/services/hyrax/ensure_well_formed_admin_set_service.rb +27 -0
  760. data/app/services/hyrax/file_set_csv_service.rb +1 -0
  761. data/app/services/hyrax/file_set_derivatives_service.rb +61 -60
  762. data/app/services/hyrax/file_set_fixity_check_service.rb +54 -54
  763. data/app/services/hyrax/file_set_type_service.rb +55 -0
  764. data/app/services/hyrax/file_set_visibility_propagator.rb +10 -10
  765. data/app/services/hyrax/fixity/active_fedora_fixity_service.rb +20 -0
  766. data/app/services/hyrax/fixity/missing_content_error.rb +9 -0
  767. data/app/services/hyrax/fixity_check_failure_service.rb +1 -0
  768. data/app/services/hyrax/form_factory.rb +29 -0
  769. data/app/services/hyrax/form_metadata_service.rb +1 -0
  770. data/app/services/hyrax/graph_exporter.rb +109 -52
  771. data/app/services/hyrax/identifier/builder.rb +45 -0
  772. data/app/services/hyrax/identifier/dispatcher.rb +61 -0
  773. data/app/services/hyrax/identifier/registrar.rb +41 -0
  774. data/app/services/hyrax/iiif_authorization_service.rb +4 -3
  775. data/app/services/hyrax/import_url_failure_service.rb +1 -0
  776. data/app/services/hyrax/indexes_thumbnails.rb +2 -1
  777. data/app/services/hyrax/institution.rb +1 -0
  778. data/app/services/hyrax/lease_manager.rb +62 -7
  779. data/app/services/hyrax/lease_service.rb +4 -4
  780. data/app/services/hyrax/license_service.rb +1 -0
  781. data/app/services/hyrax/list_source_exporter.rb +17 -34
  782. data/app/services/hyrax/listeners.rb +22 -0
  783. data/app/services/hyrax/listeners/acl_index_listener.rb +21 -0
  784. data/app/services/hyrax/listeners/active_fedora_acl_index_listener.rb +26 -0
  785. data/app/services/hyrax/listeners/batch_notification_listener.rb +26 -0
  786. data/app/services/hyrax/listeners/file_set_lifecycle_listener.rb +22 -0
  787. data/app/services/hyrax/listeners/file_set_lifecycle_notification_listener.rb +34 -0
  788. data/app/services/hyrax/listeners/metadata_index_listener.rb +44 -0
  789. data/app/services/hyrax/listeners/object_lifecycle_listener.rb +27 -0
  790. data/app/services/hyrax/listeners/proxy_deposit_listener.rb +20 -0
  791. data/app/services/hyrax/listeners/workflow_listener.rb +36 -0
  792. data/app/services/hyrax/local_file_service.rb +1 -0
  793. data/app/services/hyrax/lock_manager.rb +1 -0
  794. data/app/services/hyrax/lockable.rb +1 -0
  795. data/app/services/hyrax/manifest_builder_service.rb +88 -0
  796. data/app/services/hyrax/messenger_service.rb +1 -0
  797. data/app/services/hyrax/microdata.rb +22 -21
  798. data/app/services/hyrax/multiple_membership_checker.rb +25 -23
  799. data/app/services/hyrax/noid.rb +4 -3
  800. data/app/services/hyrax/permission_manager.rb +199 -0
  801. data/app/services/hyrax/persist_derivatives.rb +1 -0
  802. data/app/services/hyrax/persist_directly_contained_output_file_service.rb +2 -1
  803. data/app/services/hyrax/qa_select_service.rb +2 -1
  804. data/app/services/hyrax/quick_classification_query.rb +23 -12
  805. data/app/services/hyrax/repository_fixity_check_service.rb +1 -0
  806. data/app/services/hyrax/resource_status.rb +60 -0
  807. data/app/services/hyrax/resource_types_service.rb +1 -0
  808. data/app/services/hyrax/resource_visibility_propagator.rb +6 -4
  809. data/app/services/hyrax/restriction_service.rb +14 -13
  810. data/app/services/hyrax/rights_statement_service.rb +1 -0
  811. data/app/services/hyrax/search_service.rb +108 -0
  812. data/app/services/hyrax/simple_schema_loader.rb +154 -0
  813. data/app/services/hyrax/solr_query_builder_service.rb +30 -29
  814. data/app/services/hyrax/solr_service.rb +71 -61
  815. data/app/services/hyrax/statistics/collections/over_time.rb +4 -3
  816. data/app/services/hyrax/statistics/depositors/summary.rb +23 -23
  817. data/app/services/hyrax/statistics/file_sets/by_format.rb +5 -4
  818. data/app/services/hyrax/statistics/over_time.rb +17 -16
  819. data/app/services/hyrax/statistics/query_service.rb +7 -6
  820. data/app/services/hyrax/statistics/system_stats.rb +9 -9
  821. data/app/services/hyrax/statistics/term_query.rb +1 -0
  822. data/app/services/hyrax/statistics/users/over_time.rb +8 -7
  823. data/app/services/hyrax/statistics/works/by_depositor.rb +4 -3
  824. data/app/services/hyrax/statistics/works/by_resource_type.rb +4 -3
  825. data/app/services/hyrax/statistics/works/count.rb +12 -11
  826. data/app/services/hyrax/statistics/works/over_time.rb +4 -3
  827. data/app/services/hyrax/thumbnail_path_service.rb +37 -31
  828. data/app/services/hyrax/time_service.rb +11 -0
  829. data/app/services/hyrax/user_stat_importer.rb +83 -82
  830. data/app/services/hyrax/versioning_service.rb +14 -37
  831. data/app/services/hyrax/virus_checker_service.rb +21 -20
  832. data/app/services/hyrax/visibility_propagator.rb +4 -3
  833. data/app/services/hyrax/visibility_reader.rb +7 -3
  834. data/app/services/hyrax/visibility_writer.rb +12 -5
  835. data/app/services/hyrax/work_form_service.rb +3 -0
  836. data/app/services/hyrax/work_query_service.rb +13 -12
  837. data/app/services/hyrax/work_thumbnail_path_service.rb +1 -0
  838. data/app/services/hyrax/work_uploads_handler.rb +169 -0
  839. data/app/services/hyrax/workflow/abstract_notification.rb +18 -17
  840. data/app/services/hyrax/workflow/action_taken_service.rb +15 -1
  841. data/app/services/hyrax/workflow/activate_object.rb +1 -0
  842. data/app/services/hyrax/workflow/changes_required_notification.rb +13 -12
  843. data/app/services/hyrax/workflow/deactivate_object.rb +1 -0
  844. data/app/services/hyrax/workflow/deposited_notification.rb +12 -11
  845. data/app/services/hyrax/workflow/grant_edit_to_depositor.rb +4 -1
  846. data/app/services/hyrax/workflow/grant_read_to_depositor.rb +1 -0
  847. data/app/services/hyrax/workflow/invalid_state_removal_exception.rb +1 -0
  848. data/app/services/hyrax/workflow/method_generator.rb +18 -17
  849. data/app/services/hyrax/workflow/notification_configuration_parameter.rb +1 -0
  850. data/app/services/hyrax/workflow/notification_generator.rb +26 -25
  851. data/app/services/hyrax/workflow/notification_service.rb +1 -0
  852. data/app/services/hyrax/workflow/pending_review_notification.rb +12 -11
  853. data/app/services/hyrax/workflow/permission_generator.rb +55 -49
  854. data/app/services/hyrax/workflow/permission_query.rb +31 -18
  855. data/app/services/hyrax/workflow/revoke_edit_from_depositor.rb +1 -0
  856. data/app/services/hyrax/workflow/sipity_actions_generator.rb +47 -46
  857. data/app/services/hyrax/workflow/state_machine_generator.rb +53 -52
  858. data/app/services/hyrax/workflow/status_list_service.rb +27 -26
  859. data/app/services/hyrax/workflow/workflow_action_service.rb +30 -29
  860. data/app/services/hyrax/workflow/workflow_factory.rb +36 -28
  861. data/app/services/hyrax/workflow/workflow_importer.rb +58 -44
  862. data/app/services/hyrax/workflow/workflow_permissions_generator.rb +13 -12
  863. data/app/services/hyrax/workflow/workflow_schema.rb +29 -35
  864. data/app/services/hyrax/working_directory.rb +17 -17
  865. data/app/services/hyrax/works/managed_works_service.rb +15 -2
  866. data/app/services/hyrax/works/migration_service.rb +1 -0
  867. data/app/strategies/hyrax/strategies/yaml_strategy.rb +13 -12
  868. data/app/uploaders/hyrax/avatar_uploader.rb +1 -0
  869. data/app/uploaders/hyrax/uploaded_file_uploader.rb +7 -6
  870. data/app/validators/hyrax/has_one_title_validator.rb +1 -0
  871. data/app/values/hyrax/chart_data.rb +14 -13
  872. data/app/views/_controls.html.erb +1 -1
  873. data/app/views/_masthead.html.erb +3 -2
  874. data/app/views/catalog/_index_header_list_collection.html.erb +1 -1
  875. data/app/views/catalog/_index_header_list_default.html.erb +1 -1
  876. data/app/views/catalog/_index_list_default.html.erb +1 -1
  877. data/app/views/hyrax/admin/admin_sets/_form_visibility.html.erb +3 -3
  878. data/app/views/hyrax/admin/admin_sets/_show_actions.html.erb +3 -2
  879. data/app/views/hyrax/admin/admin_sets/_show_document_list_row.html.erb +2 -2
  880. data/app/views/hyrax/admin/admin_sets/index.json.jbuilder +1 -0
  881. data/app/views/hyrax/admin/collection_types/index.html.erb +1 -1
  882. data/app/views/hyrax/base/_currently_shared.html.erb +46 -0
  883. data/app/views/hyrax/base/_form.html.erb +2 -2
  884. data/app/views/hyrax/base/_form_child_work_relationships.html.erb +1 -1
  885. data/app/views/hyrax/base/_form_member_of_collections.html.erb +1 -1
  886. data/app/views/hyrax/base/_form_permission.html.erb +3 -3
  887. data/app/views/hyrax/base/_form_progress.html.erb +5 -1
  888. data/app/views/hyrax/base/_form_relationships.html.erb +1 -1
  889. data/app/views/hyrax/base/_form_share.html.erb +10 -38
  890. data/app/views/hyrax/base/_form_visibility_component.html.erb +2 -2
  891. data/app/views/hyrax/base/_guts4form.html.erb +0 -1
  892. data/app/views/hyrax/base/_member.html.erb +1 -1
  893. data/app/views/hyrax/base/_representative_media.html.erb +1 -1
  894. data/app/views/hyrax/base/_show_actions.html.erb +19 -15
  895. data/app/views/hyrax/base/_social_media.html.erb +6 -3
  896. data/app/views/hyrax/base/_workflow_actions.html.erb +1 -1
  897. data/app/views/hyrax/base/edit.html.erb +1 -1
  898. data/app/views/hyrax/base/iiif_viewers/_universal_viewer.html.erb +1 -1
  899. data/app/views/hyrax/base/new.html.erb +1 -1
  900. data/app/views/hyrax/base/show.html.erb +2 -2
  901. data/app/views/hyrax/base/show.json.jbuilder +5 -1
  902. data/app/views/hyrax/base/unavailable.html.erb +1 -1
  903. data/app/views/hyrax/batch_edits/_currently_shared.html.erb +8 -0
  904. data/app/views/hyrax/batch_edits/edit.html.erb +3 -3
  905. data/app/views/hyrax/batch_select/_add_button.html.erb +1 -1
  906. data/app/views/hyrax/batch_uploads/_form.html.erb +1 -1
  907. data/app/views/hyrax/collections/_default_group.html.erb +2 -0
  908. data/app/views/hyrax/collections/_list_collections.html.erb +2 -2
  909. data/app/views/hyrax/collections/_media_display.html.erb +1 -1
  910. data/app/views/hyrax/collections/_search_form.html.erb +2 -2
  911. data/app/views/hyrax/collections/_show_descriptions.html.erb +5 -5
  912. data/app/views/hyrax/collections/_show_document_list_row.html.erb +2 -2
  913. data/app/views/hyrax/collections/_sort_and_per_page.html.erb +3 -3
  914. data/app/views/hyrax/collections/show.html.erb +13 -12
  915. data/app/views/hyrax/contact_form/new.html.erb +3 -3
  916. data/app/views/hyrax/dashboard/_index_partials/_transfers.html.erb +2 -2
  917. data/app/views/hyrax/dashboard/_sidebar.html.erb +1 -1
  918. data/app/views/hyrax/dashboard/collections/_collection_title.html.erb +2 -2
  919. data/app/views/hyrax/dashboard/collections/_default_group.html.erb +1 -1
  920. data/app/views/hyrax/dashboard/collections/_form_for_select_collection.html.erb +1 -1
  921. data/app/views/hyrax/dashboard/collections/_list_collections.html.erb +3 -2
  922. data/app/views/hyrax/dashboard/collections/_list_works.html.erb +1 -1
  923. data/app/views/hyrax/dashboard/collections/_show_descriptions.html.erb +3 -3
  924. data/app/views/hyrax/dashboard/collections/_show_document_list_menu.html.erb +1 -1
  925. data/app/views/hyrax/dashboard/collections/_show_document_list_row.html.erb +2 -2
  926. data/app/views/hyrax/dashboard/collections/_sort_and_per_page.html.erb +3 -3
  927. data/app/views/hyrax/dashboard/collections/edit.html.erb +2 -2
  928. data/app/views/hyrax/dashboard/collections/show.html.erb +9 -8
  929. data/app/views/hyrax/dashboard/show_admin.html.erb +4 -4
  930. data/app/views/hyrax/dashboard/show_user.html.erb +4 -4
  931. data/app/views/hyrax/dashboard/sidebar/_repository_content.html.erb +2 -0
  932. data/app/views/hyrax/dashboard/sidebar/_tasks.html.erb +8 -4
  933. data/app/views/hyrax/dashboard/works/_default_group.html.erb +3 -1
  934. data/app/views/hyrax/dashboard/works/_list_works.html.erb +2 -2
  935. data/app/views/hyrax/embargoes/_list_expired_active_embargoes.html.erb +1 -1
  936. data/app/views/hyrax/file_sets/_actions.html.erb +1 -2
  937. data/app/views/hyrax/file_sets/_permission_form.html.erb +4 -33
  938. data/app/views/hyrax/file_sets/_show_actions.html.erb +4 -2
  939. data/app/views/hyrax/file_sets/_versioning.html.erb +53 -7
  940. data/app/views/hyrax/file_sets/edit.html.erb +1 -1
  941. data/app/views/hyrax/file_sets/media_display/_audio.html.erb +2 -2
  942. data/app/views/hyrax/file_sets/media_display/_default.html.erb +1 -1
  943. data/app/views/hyrax/file_sets/media_display/_image.html.erb +1 -1
  944. data/app/views/hyrax/file_sets/media_display/_office_document.html.erb +1 -1
  945. data/app/views/hyrax/file_sets/media_display/_pdf.html.erb +2 -2
  946. data/app/views/hyrax/file_sets/media_display/_video.html.erb +2 -2
  947. data/app/views/hyrax/file_sets/show.json.jbuilder +1 -0
  948. data/app/views/hyrax/homepage/_announcement.html.erb +2 -2
  949. data/app/views/hyrax/homepage/_explore_collections.html.erb +1 -1
  950. data/app/views/hyrax/homepage/_featured_fields.html.erb +1 -1
  951. data/app/views/hyrax/homepage/_home_content.html.erb +6 -6
  952. data/app/views/hyrax/homepage/_marketing.html.erb +1 -1
  953. data/app/views/hyrax/homepage/_recent_document.html.erb +1 -1
  954. data/app/views/hyrax/homepage/_sortable_featured.html.erb +1 -0
  955. data/app/views/hyrax/leases/_list_expired_active_leases.html.erb +2 -1
  956. data/app/views/hyrax/my/_sort_and_per_page.html.erb +1 -1
  957. data/app/views/hyrax/my/collections/_default_group.html.erb +1 -1
  958. data/app/views/hyrax/my/collections/_list_collections.html.erb +3 -2
  959. data/app/views/hyrax/my/collections/_modal_add_subcollection.html.erb +1 -1
  960. data/app/views/hyrax/my/collections/_tabs.html.erb +3 -4
  961. data/app/views/hyrax/my/works/_default_group.html.erb +3 -1
  962. data/app/views/hyrax/my/works/_list_works.html.erb +2 -2
  963. data/app/views/hyrax/my/works/_tabs.html.erb +1 -1
  964. data/app/views/hyrax/stats/file.html.erb +1 -1
  965. data/app/views/hyrax/stats/work.html.erb +1 -1
  966. data/app/views/hyrax/transfers/_received.html.erb +6 -6
  967. data/app/views/hyrax/transfers/_sent.html.erb +5 -5
  968. data/app/views/hyrax/uploads/_js_templates.html.erb +4 -4
  969. data/app/views/hyrax/uploads/_js_templates_versioning.html.erb +172 -0
  970. data/app/views/hyrax/uploads/create.json.jbuilder +1 -0
  971. data/app/views/hyrax/users/_contributions.html.erb +1 -1
  972. data/app/views/hyrax/users/_profile_tabs.html.erb +3 -3
  973. data/app/views/hyrax/users/_search_form.html.erb +1 -1
  974. data/app/views/hyrax/users/_user.html.erb +1 -1
  975. data/app/views/hyrax/users/_user_info.html.erb +9 -9
  976. data/app/views/hyrax/users/_vitals.html.erb +2 -2
  977. data/app/views/hyrax/users/index.json.jbuilder +1 -0
  978. data/app/views/layouts/_head_tag_content.html.erb +1 -1
  979. data/app/views/layouts/hyrax.html.erb +2 -3
  980. data/app/views/shared/_citations.html.erb +26 -5
  981. data/app/views/shared/_nav_safety_modal.html.erb +1 -0
  982. data/bin/db-migrate-seed.sh +11 -0
  983. data/bin/db-wait.sh +14 -0
  984. data/bin/hyrax-entrypoint.sh +22 -0
  985. data/bin/solrcloud-assign-configset.sh +27 -0
  986. data/bin/solrcloud-upload-configset.sh +31 -0
  987. data/chart/hyrax/.gitignore +2 -0
  988. data/chart/hyrax/.helmignore +23 -0
  989. data/chart/hyrax/Chart.yaml +27 -0
  990. data/chart/hyrax/README.md +105 -0
  991. data/chart/hyrax/templates/NOTES.txt +21 -0
  992. data/chart/hyrax/templates/_helpers.tpl +168 -0
  993. data/chart/hyrax/templates/configmap-env.yaml +31 -0
  994. data/chart/hyrax/templates/cron-embargo.yaml +24 -0
  995. data/chart/hyrax/templates/cron-lease.yaml +24 -0
  996. data/chart/hyrax/templates/deployment.yaml +111 -0
  997. data/chart/hyrax/templates/hpa.yaml +28 -0
  998. data/chart/hyrax/templates/ingress.yaml +41 -0
  999. data/chart/hyrax/templates/secrets.yaml +13 -0
  1000. data/chart/hyrax/templates/service.yaml +15 -0
  1001. data/chart/hyrax/templates/serviceaccount.yaml +12 -0
  1002. data/chart/hyrax/templates/tests/test-connection.yaml +15 -0
  1003. data/chart/hyrax/values.yaml +168 -0
  1004. data/config/features.rb +6 -5
  1005. data/config/initializers/1_healthz.rb +33 -0
  1006. data/config/initializers/indexing_adapter_initializer.rb +7 -14
  1007. data/config/initializers/listeners.rb +48 -0
  1008. data/config/initializers/nesting_indexer_initializer.rb +16 -0
  1009. data/config/initializers/simple_form.rb +1 -0
  1010. data/config/initializers/valkyrie_id_equality.rb +3 -0
  1011. data/config/locales/hyrax.de.yml +118 -60
  1012. data/config/locales/hyrax.en.yml +63 -5
  1013. data/config/locales/hyrax.es.yml +62 -4
  1014. data/config/locales/hyrax.fr.yml +62 -4
  1015. data/config/locales/hyrax.it.yml +62 -4
  1016. data/config/locales/hyrax.pt-BR.yml +62 -4
  1017. data/config/locales/hyrax.zh.yml +62 -4
  1018. data/config/metadata/basic_metadata.yaml +126 -0
  1019. data/config/metadata/core_metadata.yaml +17 -0
  1020. data/config/routes.rb +1 -0
  1021. data/db/seeds.rb +20 -0
  1022. data/docker-compose.yml +132 -0
  1023. data/documentation/developing-your-hyrax-based-app.md +271 -0
  1024. data/documentation/legacyREADME.md +336 -0
  1025. data/documentation/note-about-versions.md +15 -0
  1026. data/hyrax.gemspec +25 -22
  1027. data/lib/generators/hyrax/arkivo_api_generator.rb +1 -0
  1028. data/lib/generators/hyrax/assets_generator.rb +4 -3
  1029. data/lib/generators/hyrax/clamav_generator.rb +1 -0
  1030. data/lib/generators/hyrax/collection_generator.rb +1 -0
  1031. data/lib/generators/hyrax/config_generator.rb +1 -0
  1032. data/lib/generators/hyrax/health_check_generator.rb +14 -0
  1033. data/lib/generators/hyrax/install_generator.rb +7 -0
  1034. data/lib/generators/hyrax/models_generator.rb +4 -3
  1035. data/lib/generators/hyrax/riiif_generator.rb +1 -0
  1036. data/lib/generators/hyrax/sample_data_generator.rb +1 -0
  1037. data/lib/generators/hyrax/templates/app/models/collection.rb +1 -0
  1038. data/lib/generators/hyrax/templates/app/models/file_set.rb +1 -0
  1039. data/lib/generators/hyrax/templates/catalog_controller.rb +8 -2
  1040. data/lib/generators/hyrax/templates/config/action_dispatch_http_upload_monkey_patch.rb +1 -0
  1041. data/lib/generators/hyrax/templates/config/arkivo_constraint.rb +1 -0
  1042. data/lib/generators/hyrax/templates/config/clamav.rb +1 -0
  1043. data/lib/generators/hyrax/templates/config/initializers/hyrax.rb +16 -8
  1044. data/lib/generators/hyrax/templates/config/initializers/mini_magick.rb +1 -0
  1045. data/lib/generators/hyrax/templates/config/initializers/redis_config.rb +1 -0
  1046. data/lib/generators/hyrax/templates/config/initializers/riiif.rb +3 -2
  1047. data/lib/generators/hyrax/templates/config/initializers/simple_form.rb +1 -0
  1048. data/lib/generators/hyrax/templates/config/initializers/simple_form_bootstrap.rb +1 -0
  1049. data/lib/generators/hyrax/templates/config/locales/hyrax.es.yml +1 -1
  1050. data/lib/generators/hyrax/templates/config/mime_types.rb +1 -0
  1051. data/lib/generators/hyrax/templates/config/redis.yml +6 -6
  1052. data/lib/generators/hyrax/templates/config/tinymce.yml +3 -2
  1053. data/lib/generators/hyrax/templates/db/migrate/20200617002029_change_sipity_entity_specific_responsibility.rb.erb +9 -0
  1054. data/lib/generators/hyrax/templates/db/seeds.rb +17 -14
  1055. data/lib/generators/hyrax/templates/hyrax_helper.rb +1 -0
  1056. data/lib/generators/hyrax/templates/package.json +2 -2
  1057. data/lib/generators/hyrax/templates/spec/models/collection_spec.rb +1 -0
  1058. data/lib/generators/hyrax/templates/spec/models/file_set_spec.rb +1 -0
  1059. data/lib/generators/hyrax/templates/uv.html +1 -1
  1060. data/lib/generators/hyrax/work/USAGE +10 -5
  1061. data/lib/generators/hyrax/work/templates/feature_spec.rb.erb +1 -1
  1062. data/lib/generators/hyrax/work/work_generator.rb +15 -14
  1063. data/lib/generators/hyrax/work_resource/USAGE +17 -0
  1064. data/lib/generators/hyrax/work_resource/templates/controller.rb.erb +17 -0
  1065. data/lib/generators/hyrax/work_resource/templates/form.rb.erb +20 -0
  1066. data/lib/generators/hyrax/work_resource/templates/indexer.rb.erb +16 -0
  1067. data/lib/generators/hyrax/work_resource/templates/indexer_spec.rb.erb +12 -0
  1068. data/lib/generators/hyrax/work_resource/templates/metadata.yaml +22 -0
  1069. data/lib/generators/hyrax/work_resource/templates/work.html.erb_spec.rb.erb +7 -0
  1070. data/lib/generators/hyrax/work_resource/templates/work.rb.erb +8 -0
  1071. data/lib/generators/hyrax/work_resource/templates/work_spec.rb.erb +12 -0
  1072. data/lib/generators/hyrax/work_resource/work_resource_generator.rb +123 -0
  1073. data/lib/hyrax.rb +60 -0
  1074. data/lib/hyrax/arkivo.rb +1 -0
  1075. data/lib/hyrax/arkivo/actor.rb +49 -48
  1076. data/lib/hyrax/arkivo/config.rb +1 -0
  1077. data/lib/hyrax/arkivo/create_subscription_job.rb +31 -30
  1078. data/lib/hyrax/arkivo/metadata_munger.rb +20 -19
  1079. data/lib/hyrax/arkivo/schema_validator.rb +1 -0
  1080. data/lib/hyrax/collection_name.rb +15 -0
  1081. data/lib/hyrax/configuration.rb +404 -182
  1082. data/lib/hyrax/controlled_vocabularies.rb +1 -0
  1083. data/lib/hyrax/controlled_vocabularies/location.rb +1 -0
  1084. data/lib/hyrax/controlled_vocabulary/importer/downloader.rb +1 -0
  1085. data/lib/hyrax/controlled_vocabulary/importer/language.rb +2 -1
  1086. data/lib/hyrax/controller_resource.rb +5 -4
  1087. data/lib/hyrax/engine.rb +16 -13
  1088. data/lib/hyrax/errors.rb +1 -0
  1089. data/lib/hyrax/event_store.rb +86 -0
  1090. data/lib/hyrax/form_fields.rb +55 -0
  1091. data/lib/hyrax/health_checks.rb +4 -0
  1092. data/lib/hyrax/health_checks/solr_check.rb +24 -0
  1093. data/lib/hyrax/indexer.rb +43 -0
  1094. data/lib/hyrax/inflections.rb +1 -0
  1095. data/lib/hyrax/model_decorator.rb +31 -0
  1096. data/lib/hyrax/move_all_works_to_admin_set.rb +1 -0
  1097. data/lib/hyrax/name.rb +2 -1
  1098. data/lib/hyrax/publisher.rb +133 -0
  1099. data/lib/hyrax/rails/routes.rb +24 -23
  1100. data/lib/hyrax/redis_event_store.rb +25 -12
  1101. data/lib/hyrax/resource_name.rb +18 -0
  1102. data/lib/hyrax/resource_sync.rb +1 -0
  1103. data/lib/hyrax/resource_sync/capability_list_writer.rb +15 -14
  1104. data/lib/hyrax/resource_sync/change_list_writer.rb +58 -58
  1105. data/lib/hyrax/resource_sync/resource_list_writer.rb +46 -45
  1106. data/lib/hyrax/resource_sync/source_description_writer.rb +11 -10
  1107. data/lib/hyrax/role_registry.rb +7 -6
  1108. data/lib/hyrax/schema.rb +92 -0
  1109. data/lib/hyrax/search_state.rb +1 -0
  1110. data/lib/hyrax/specs/capybara.rb +98 -0
  1111. data/lib/hyrax/specs/clamav.rb +15 -0
  1112. data/lib/hyrax/specs/disable_animations_in_test_environment.rb +53 -0
  1113. data/lib/hyrax/specs/engine_routes.rb +11 -0
  1114. data/lib/hyrax/specs/shared_specs.rb +4 -0
  1115. data/lib/hyrax/specs/shared_specs/change_set.rb +11 -0
  1116. data/lib/hyrax/specs/shared_specs/factories/strategies/json_strategy.rb +13 -0
  1117. data/lib/hyrax/specs/shared_specs/factories/strategies/valkyrie_resource.rb +21 -0
  1118. data/lib/hyrax/specs/shared_specs/hydra_works.rb +298 -0
  1119. data/lib/hyrax/specs/shared_specs/identifiers.rb +27 -0
  1120. data/lib/hyrax/specs/shared_specs/indexers.rb +192 -0
  1121. data/lib/hyrax/specs/shared_specs/metadata.rb +94 -0
  1122. data/lib/hyrax/specs/spy_listener.rb +65 -0
  1123. data/lib/hyrax/transactions.rb +2 -7
  1124. data/lib/hyrax/transactions/apply_change_set.rb +47 -0
  1125. data/lib/hyrax/transactions/container.rb +80 -5
  1126. data/lib/hyrax/transactions/create_work.rb +5 -1
  1127. data/lib/hyrax/transactions/destroy_work.rb +4 -0
  1128. data/lib/hyrax/transactions/steps/add_file_sets.rb +35 -0
  1129. data/lib/hyrax/transactions/steps/add_to_collections.rb +36 -0
  1130. data/lib/hyrax/transactions/steps/apply_visibility.rb +4 -4
  1131. data/lib/hyrax/transactions/steps/delete_resource.rb +38 -0
  1132. data/lib/hyrax/transactions/steps/destroy_work.rb +1 -0
  1133. data/lib/hyrax/transactions/steps/ensure_admin_set.rb +5 -5
  1134. data/lib/hyrax/transactions/steps/save.rb +51 -0
  1135. data/lib/hyrax/transactions/steps/save_access_control.rb +29 -0
  1136. data/lib/hyrax/transactions/steps/set_default_admin_set.rb +10 -9
  1137. data/lib/hyrax/transactions/steps/set_modified_date.rb +16 -7
  1138. data/lib/hyrax/transactions/steps/set_uploaded_date_unless_present.rb +58 -0
  1139. data/lib/hyrax/transactions/steps/set_user_as_depositor.rb +41 -0
  1140. data/lib/hyrax/transactions/steps/validate.rb +36 -0
  1141. data/lib/hyrax/transactions/transaction.rb +161 -0
  1142. data/lib/hyrax/transactions/update_work.rb +18 -0
  1143. data/lib/hyrax/transactions/work_create.rb +26 -0
  1144. data/lib/hyrax/transactions/work_destroy.rb +20 -0
  1145. data/lib/hyrax/valkyrie_can_can_adapter.rb +25 -0
  1146. data/lib/hyrax/version.rb +2 -1
  1147. data/lib/hyrax/zotero.rb +1 -0
  1148. data/lib/hyrax/zotero/config.rb +1 -0
  1149. data/lib/tasks/collection_type_global_id.rake +22 -0
  1150. data/lib/tasks/controlled_vocabularies.rake +1 -0
  1151. data/lib/tasks/default_admin_set.rake +6 -0
  1152. data/lib/tasks/default_collection_type.rake +1 -0
  1153. data/lib/tasks/embargo_lease.rake +27 -0
  1154. data/lib/tasks/hyrax.rake +1 -0
  1155. data/lib/tasks/hyrax_user.rake +1 -0
  1156. data/lib/tasks/install.rake +1 -0
  1157. data/lib/tasks/migrate.rake +2 -1
  1158. data/lib/tasks/reindex.rake +1 -0
  1159. data/lib/tasks/stats_tasks.rake +1 -0
  1160. data/lib/tasks/universal_viewer.rake +1 -0
  1161. data/lib/tasks/workflow.rake +1 -0
  1162. data/lib/valkyrie/indexing/null_indexing_adapter.rb +31 -0
  1163. data/lib/valkyrie/indexing/solr/indexing_adapter.rb +44 -49
  1164. data/lib/valkyrie/indexing_adapter.rb +1 -1
  1165. data/lib/wings.rb +103 -22
  1166. data/lib/wings/active_fedora_classifier.rb +16 -0
  1167. data/lib/wings/active_fedora_converter.rb +86 -91
  1168. data/lib/wings/active_fedora_converter/default_work.rb +133 -0
  1169. data/lib/wings/active_fedora_converter/nested_resource.rb +25 -0
  1170. data/lib/wings/attribute_transformer.rb +67 -0
  1171. data/lib/wings/converter_value_mapper.rb +185 -32
  1172. data/lib/wings/hydra/works/services/add_file_to_file_set.rb +57 -0
  1173. data/lib/wings/model_registry.rb +55 -0
  1174. data/lib/wings/model_transformer.rb +67 -178
  1175. data/lib/wings/orm_converter.rb +101 -0
  1176. data/lib/wings/services/custom_queries/find_access_control.rb +42 -0
  1177. data/lib/wings/services/custom_queries/find_collections_by_type.rb +27 -0
  1178. data/lib/wings/services/custom_queries/find_file_metadata.rb +117 -0
  1179. data/lib/wings/services/custom_queries/find_ids_by_model.rb +46 -0
  1180. data/lib/wings/services/custom_queries/find_many_by_alternate_ids.rb +35 -0
  1181. data/lib/wings/services/file_converter_service.rb +19 -0
  1182. data/lib/wings/services/file_metadata_builder.rb +55 -42
  1183. data/lib/wings/setup.rb +97 -0
  1184. data/lib/wings/transformer_value_mapper.rb +2 -1
  1185. data/lib/wings/valkyrie/metadata_adapter.rb +2 -2
  1186. data/lib/wings/valkyrie/persister.rb +54 -14
  1187. data/lib/wings/valkyrie/query_service.rb +60 -50
  1188. data/lib/wings/valkyrie/storage.rb +94 -0
  1189. data/tasks/benchmark.rake +56 -0
  1190. data/tasks/hyrax_dev.rake +4 -1
  1191. data/template.rb +2 -3
  1192. metadata +592 -1623
  1193. data/app/indexers/hyrax/valkyrie_indexers/base_indexer.rb +0 -19
  1194. data/app/models/hyrax/active_job_proxy.rb +0 -43
  1195. data/app/presenters/hyrax/collection_options_presenter.rb +0 -31
  1196. data/app/services/hyrax/custom_queries/wings.rb +0 -34
  1197. data/app/views/records/edit_fields/_alt_title.html.erb +0 -3
  1198. data/app/views/records/edit_fields/_title.html.erb +0 -1
  1199. data/config/initializers/hyrax_callbacks.rb +0 -43
  1200. data/config/initializers/samvera-nesting_indexer_initializer.rb +0 -16
  1201. data/lib/hyrax/callbacks.rb +0 -26
  1202. data/lib/hyrax/callbacks/registry.rb +0 -48
  1203. data/lib/hyrax/transactions/steps/set_uploaded_date.rb +0 -28
  1204. data/lib/wings/hydra/pcdm/models/concerns/collection_valkyrie_behavior.rb +0 -27
  1205. data/lib/wings/hydra/pcdm/models/concerns/object_valkyrie_behavior.rb +0 -27
  1206. data/lib/wings/hydra/pcdm/models/concerns/pcdm_valkyrie_behavior.rb +0 -172
  1207. data/lib/wings/hydra/works/models/concerns/collection_valkyrie_behavior.rb +0 -30
  1208. data/lib/wings/hydra/works/models/concerns/file_set_valkyrie_behavior.rb +0 -30
  1209. data/lib/wings/hydra/works/models/concerns/work_valkyrie_behavior.rb +0 -59
  1210. data/lib/wings/hydra/works/services/add_file_metadata_to_file_set.rb +0 -113
  1211. data/lib/wings/models/concerns/collection_behavior.rb +0 -38
  1212. data/lib/wings/models/multi_checksum.rb +0 -18
  1213. data/lib/wings/services/id_converter_service.rb +0 -14
  1214. data/lib/wings/valkyrie/storage/active_fedora.rb +0 -27
  1215. data/spec/.gitignore +0 -1
  1216. data/spec/abilities/ability_spec.rb +0 -183
  1217. data/spec/abilities/admin_ability_spec.rb +0 -18
  1218. data/spec/abilities/admin_set_ability_spec.rb +0 -177
  1219. data/spec/abilities/collection_ability_spec.rb +0 -194
  1220. data/spec/abilities/collection_type_ability_spec.rb +0 -72
  1221. data/spec/abilities/embargo_and_lease_ability_spec.rb +0 -22
  1222. data/spec/abilities/file_set_abilities_spec.rb +0 -70
  1223. data/spec/abilities/generic_work_abilities_spec.rb +0 -63
  1224. data/spec/abilities/operation_ability_spec.rb +0 -12
  1225. data/spec/abilities/permission_template_ability_spec.rb +0 -145
  1226. data/spec/abilities/proxies_and_transfer_abilities_spec.rb +0 -149
  1227. data/spec/abilities/solr_document_ability_spec.rb +0 -27
  1228. data/spec/actors/hyrax/actors/active_fedora_to_valkyrie_spec.rb +0 -70
  1229. data/spec/actors/hyrax/actors/apply_order_actor_spec.rb +0 -92
  1230. data/spec/actors/hyrax/actors/apply_permission_template_actor_spec.rb +0 -135
  1231. data/spec/actors/hyrax/actors/attach_members_actor_spec.rb +0 -113
  1232. data/spec/actors/hyrax/actors/cleanup_file_sets_actor_spec.rb +0 -24
  1233. data/spec/actors/hyrax/actors/cleanup_trophies_actor_spec.rb +0 -25
  1234. data/spec/actors/hyrax/actors/collections_membership_actor_spec.rb +0 -195
  1235. data/spec/actors/hyrax/actors/create_with_files_actor_spec.rb +0 -60
  1236. data/spec/actors/hyrax/actors/create_with_files_ordered_members_actor_spec.rb +0 -41
  1237. data/spec/actors/hyrax/actors/create_with_remote_files_actor_spec.rb +0 -136
  1238. data/spec/actors/hyrax/actors/create_with_remote_files_ordered_members_actor_spec.rb +0 -49
  1239. data/spec/actors/hyrax/actors/default_admin_set_actor_spec.rb +0 -81
  1240. data/spec/actors/hyrax/actors/embargo_actor_spec.rb +0 -37
  1241. data/spec/actors/hyrax/actors/featured_work_actor_spec.rb +0 -38
  1242. data/spec/actors/hyrax/actors/file_actor_spec.rb +0 -241
  1243. data/spec/actors/hyrax/actors/file_set_actor_spec.rb +0 -347
  1244. data/spec/actors/hyrax/actors/file_set_ordered_members_actor_spec.rb +0 -35
  1245. data/spec/actors/hyrax/actors/generic_work_actor_spec.rb +0 -312
  1246. data/spec/actors/hyrax/actors/initialize_workflow_actor_spec.rb +0 -35
  1247. data/spec/actors/hyrax/actors/interpret_visibility_actor_spec.rb +0 -447
  1248. data/spec/actors/hyrax/actors/lease_actor_spec.rb +0 -54
  1249. data/spec/actors/hyrax/actors/model_actor_spec.rb +0 -24
  1250. data/spec/actors/hyrax/actors/optimistic_lock_validator_spec.rb +0 -55
  1251. data/spec/actors/hyrax/actors/ordered_members_actor_spec.rb +0 -59
  1252. data/spec/actors/hyrax/actors/transactional_request_spec.rb +0 -44
  1253. data/spec/actors/hyrax/actors/transfer_request_actor_spec.rb +0 -43
  1254. data/spec/actors/hyrax/actors/valkyrie_to_active_fedora_spec.rb +0 -70
  1255. data/spec/authorities/qa/authorities/collections_spec.rb +0 -68
  1256. data/spec/authorities/qa/authorities/find_works_spec.rb +0 -52
  1257. data/spec/channels/hyrax/application_cable/channel_spec.rb +0 -14
  1258. data/spec/channels/hyrax/application_cable/connection_spec.rb +0 -37
  1259. data/spec/channels/hyrax/notifications_channel_spec.rb +0 -45
  1260. data/spec/config/hyrax_events_spec.rb +0 -44
  1261. data/spec/controllers/catalog_controller_spec.rb +0 -135
  1262. data/spec/controllers/hyrax/accepts_batches_controller_spec.rb +0 -67
  1263. data/spec/controllers/hyrax/admin/admin_sets_controller_spec.rb +0 -284
  1264. data/spec/controllers/hyrax/admin/appearances_controller_spec.rb +0 -66
  1265. data/spec/controllers/hyrax/admin/collection_type_participants_controller_spec.rb +0 -152
  1266. data/spec/controllers/hyrax/admin/collection_types_controller_spec.rb +0 -322
  1267. data/spec/controllers/hyrax/admin/features_controller_spec.rb +0 -31
  1268. data/spec/controllers/hyrax/admin/permission_template_accesses_controller_spec.rb +0 -101
  1269. data/spec/controllers/hyrax/admin/permission_templates_controller_spec.rb +0 -71
  1270. data/spec/controllers/hyrax/admin/stats_controller_spec.rb +0 -61
  1271. data/spec/controllers/hyrax/admin/strategies_controller_spec.rb +0 -39
  1272. data/spec/controllers/hyrax/admin/users_controller_spec.rb +0 -17
  1273. data/spec/controllers/hyrax/admin/workflow_roles_controller_spec.rb +0 -76
  1274. data/spec/controllers/hyrax/admin/workflows_controller_spec.rb +0 -18
  1275. data/spec/controllers/hyrax/api/items_controller_spec.rb +0 -398
  1276. data/spec/controllers/hyrax/api/zotero_controller_spec.rb +0 -162
  1277. data/spec/controllers/hyrax/batch_edits_controller_spec.rb +0 -232
  1278. data/spec/controllers/hyrax/batch_uploads_controller_spec.rb +0 -131
  1279. data/spec/controllers/hyrax/citations_controller_spec.rb +0 -61
  1280. data/spec/controllers/hyrax/collections_controller_spec.rb +0 -130
  1281. data/spec/controllers/hyrax/contact_form_controller_spec.rb +0 -96
  1282. data/spec/controllers/hyrax/content_blocks_controller_spec.rb +0 -71
  1283. data/spec/controllers/hyrax/dashboard/collection_members_controller_spec.rb +0 -411
  1284. data/spec/controllers/hyrax/dashboard/collections_controller_spec.rb +0 -524
  1285. data/spec/controllers/hyrax/dashboard/nest_collections_controller_spec.rb +0 -360
  1286. data/spec/controllers/hyrax/dashboard/profiles_controller_spec.rb +0 -155
  1287. data/spec/controllers/hyrax/dashboard/works_controller_spec.rb +0 -13
  1288. data/spec/controllers/hyrax/dashboard_controller_spec.rb +0 -42
  1289. data/spec/controllers/hyrax/depositors_controller_spec.rb +0 -109
  1290. data/spec/controllers/hyrax/downloads_controller_spec.rb +0 -154
  1291. data/spec/controllers/hyrax/embargoes_controller_spec.rb +0 -147
  1292. data/spec/controllers/hyrax/featured_work_lists_controller_spec.rb +0 -20
  1293. data/spec/controllers/hyrax/featured_works_controller_spec.rb +0 -56
  1294. data/spec/controllers/hyrax/file_sets_controller_spec.rb +0 -360
  1295. data/spec/controllers/hyrax/fixity_checks_controller_spec.rb +0 -44
  1296. data/spec/controllers/hyrax/generic_works_controller_json_spec.rb +0 -92
  1297. data/spec/controllers/hyrax/generic_works_controller_spec.rb +0 -641
  1298. data/spec/controllers/hyrax/homepage_controller_spec.rb +0 -138
  1299. data/spec/controllers/hyrax/leases_controller_spec.rb +0 -117
  1300. data/spec/controllers/hyrax/my/collections_controller_spec.rb +0 -36
  1301. data/spec/controllers/hyrax/my/highlights_controller_spec.rb +0 -53
  1302. data/spec/controllers/hyrax/my/shares_controller_spec.rb +0 -47
  1303. data/spec/controllers/hyrax/my/works_controller_spec.rb +0 -54
  1304. data/spec/controllers/hyrax/notifications_controller_spec.rb +0 -33
  1305. data/spec/controllers/hyrax/operations_controller_spec.rb +0 -27
  1306. data/spec/controllers/hyrax/pages_controller_spec.rb +0 -111
  1307. data/spec/controllers/hyrax/permissions_controller_spec.rb +0 -56
  1308. data/spec/controllers/hyrax/resource_sync_controller_spec.rb +0 -71
  1309. data/spec/controllers/hyrax/single_use_links_controller_spec.rb +0 -100
  1310. data/spec/controllers/hyrax/single_use_links_viewer_controller_spec.rb +0 -63
  1311. data/spec/controllers/hyrax/static_controller_spec.rb +0 -28
  1312. data/spec/controllers/hyrax/stats_controller_spec.rb +0 -73
  1313. data/spec/controllers/hyrax/transfers_controller_spec.rb +0 -200
  1314. data/spec/controllers/hyrax/trophies_controller_spec.rb +0 -40
  1315. data/spec/controllers/hyrax/uploads_controller_spec.rb +0 -60
  1316. data/spec/controllers/hyrax/users_controller_spec.rb +0 -151
  1317. data/spec/controllers/hyrax/workflow_actions_controller_spec.rb +0 -54
  1318. data/spec/conversions/power_converters/polymorphic_type_spec.rb +0 -22
  1319. data/spec/conversions/power_converters/sipity_action_name_spec.rb +0 -32
  1320. data/spec/conversions/power_converters/sipity_action_spec.rb +0 -43
  1321. data/spec/conversions/power_converters/sipity_agent_spec.rb +0 -20
  1322. data/spec/conversions/power_converters/sipity_entity_spec.rb +0 -53
  1323. data/spec/conversions/power_converters/sipity_role_spec.rb +0 -31
  1324. data/spec/conversions/power_converters/sipity_workflow_id_spec.rb +0 -28
  1325. data/spec/conversions/power_converters/sipity_workflow_state_spec.rb +0 -20
  1326. data/spec/factories/admin_sets.rb +0 -25
  1327. data/spec/factories/admin_sets_lw.rb +0 -215
  1328. data/spec/factories/api_items.rb +0 -91
  1329. data/spec/factories/collection_branding_infos.rb +0 -11
  1330. data/spec/factories/collection_type_participants.rb +0 -8
  1331. data/spec/factories/collection_types.rb +0 -113
  1332. data/spec/factories/collections.rb +0 -325
  1333. data/spec/factories/collections_factory.rb +0 -134
  1334. data/spec/factories/content_blocks.rb +0 -4
  1335. data/spec/factories/featured_works.rb +0 -4
  1336. data/spec/factories/file_sets.rb +0 -33
  1337. data/spec/factories/generic_works.rb +0 -196
  1338. data/spec/factories/hyrax_embargo.rb +0 -16
  1339. data/spec/factories/hyrax_lease.rb +0 -16
  1340. data/spec/factories/hyrax_resource.rb +0 -16
  1341. data/spec/factories/object_id.rb +0 -6
  1342. data/spec/factories/operations.rb +0 -21
  1343. data/spec/factories/permission_template_accesses.rb +0 -16
  1344. data/spec/factories/permission_templates.rb +0 -79
  1345. data/spec/factories/proxy_deposit_requests.rb +0 -6
  1346. data/spec/factories/single_use_links.rb +0 -13
  1347. data/spec/factories/sipity_entities.rb +0 -7
  1348. data/spec/factories/uploaded_files.rb +0 -5
  1349. data/spec/factories/users.rb +0 -59
  1350. data/spec/factories/workflow_actions.rb +0 -6
  1351. data/spec/factories/workflow_states.rb +0 -6
  1352. data/spec/factories/workflows.rb +0 -6
  1353. data/spec/factory_tests/adminsets_factory_spec.rb +0 -132
  1354. data/spec/factory_tests/collections_factory_spec.rb +0 -212
  1355. data/spec/features/actor_stack_spec.rb +0 -112
  1356. data/spec/features/admin_spec.rb +0 -30
  1357. data/spec/features/batch_create_spec.rb +0 -74
  1358. data/spec/features/batch_edit_spec.rb +0 -119
  1359. data/spec/features/browse_catalog_spec.rb +0 -59
  1360. data/spec/features/browse_dashboard_works_spec.rb +0 -56
  1361. data/spec/features/catalog_search_spec.rb +0 -72
  1362. data/spec/features/collection_multi_membership_spec.rb +0 -206
  1363. data/spec/features/collection_spec.rb +0 -122
  1364. data/spec/features/collection_type_spec.rb +0 -394
  1365. data/spec/features/contact_form_spec.rb +0 -16
  1366. data/spec/features/create_child_work_spec.rb +0 -82
  1367. data/spec/features/create_work_admin_spec.rb +0 -44
  1368. data/spec/features/create_work_spec.rb +0 -133
  1369. data/spec/features/dashboard/all_works.rb +0 -23
  1370. data/spec/features/dashboard/collection_spec.rb +0 -1007
  1371. data/spec/features/dashboard/display_admin_dashboard_spec.rb +0 -29
  1372. data/spec/features/dashboard/display_dashboard_spec.rb +0 -18
  1373. data/spec/features/delete_work_spec.rb +0 -23
  1374. data/spec/features/edit_content_block_admin_spec.rb +0 -62
  1375. data/spec/features/edit_file_spec.rb +0 -23
  1376. data/spec/features/edit_pages_admin.spec.rb +0 -62
  1377. data/spec/features/edit_work_spec.rb +0 -61
  1378. data/spec/features/embargo_spec.rb +0 -90
  1379. data/spec/features/homepage_spec.rb +0 -43
  1380. data/spec/features/lease_spec.rb +0 -35
  1381. data/spec/features/notifications_spec.rb +0 -20
  1382. data/spec/features/ownership_transfer_spec.rb +0 -101
  1383. data/spec/features/proxy_spec.rb +0 -46
  1384. data/spec/features/search_spec.rb +0 -62
  1385. data/spec/features/static_pages_spec.rb +0 -7
  1386. data/spec/features/users_spec.rb +0 -48
  1387. data/spec/features/work_generator_spec.rb +0 -29
  1388. data/spec/features/work_show_spec.rb +0 -152
  1389. data/spec/features/workflow_roles_spec.rb +0 -46
  1390. data/spec/features/workflow_state_changes_spec.rb +0 -59
  1391. data/spec/fixtures/1.5mb-avatar.jpg +0 -0
  1392. data/spec/fixtures/4-20.png +0 -0
  1393. data/spec/fixtures/Example.ogg +0 -0
  1394. data/spec/fixtures/authorities/licenses.yml +0 -13
  1395. data/spec/fixtures/charter.docx +0 -0
  1396. data/spec/fixtures/config/schema_org.yml +0 -7
  1397. data/spec/fixtures/config/schema_org_second.yml +0 -7
  1398. data/spec/fixtures/countdown.avi +0 -0
  1399. data/spec/fixtures/docx_fits.xml +0 -21
  1400. data/spec/fixtures/dublin_core_rdf_descMetadata.nt +0 -13
  1401. data/spec/fixtures/hyrax/.gitignore +0 -1
  1402. data/spec/fixtures/hyrax/hyrax_test4.pdf +0 -0
  1403. data/spec/fixtures/hyrax/hyrax_test5.mp3 +0 -0
  1404. data/spec/fixtures/hyrax_generic_stub.txt +0 -1
  1405. data/spec/fixtures/icons.zip +0 -0
  1406. data/spec/fixtures/image.jp2 +0 -0
  1407. data/spec/fixtures/image.jpg +0 -0
  1408. data/spec/fixtures/image.png +0 -0
  1409. data/spec/fixtures/jp2_fits.xml +0 -36
  1410. data/spec/fixtures/jpg_fits.xml +0 -43
  1411. data/spec/fixtures/mp3_fits.xml +0 -32
  1412. data/spec/fixtures/pdf_fits.xml +0 -43
  1413. data/spec/fixtures/piano_note.wav +0 -0
  1414. data/spec/fixtures/png_fits.xml +0 -29
  1415. data/spec/fixtures/sample-file.pdf +0 -0
  1416. data/spec/fixtures/sample_mpeg4.mp4 +0 -0
  1417. data/spec/fixtures/small_file.txt +0 -1
  1418. data/spec/fixtures/spoken-text.m4a +0 -0
  1419. data/spec/fixtures/txt_fits.xml +0 -29
  1420. data/spec/fixtures/updated-file.txt +0 -1
  1421. data/spec/fixtures/world.png +0 -0
  1422. data/spec/fixtures/xls_fits.xml +0 -18
  1423. data/spec/fixtures/xml_fits.xml +0 -37
  1424. data/spec/forms/hyrax/forms/admin/appearance_spec.rb +0 -46
  1425. data/spec/forms/hyrax/forms/admin/collection_type_form_spec.rb +0 -108
  1426. data/spec/forms/hyrax/forms/admin/collection_type_participant_form_spec.rb +0 -10
  1427. data/spec/forms/hyrax/forms/admin_set_form_spec.rb +0 -88
  1428. data/spec/forms/hyrax/forms/batch_edit_form_spec.rb +0 -111
  1429. data/spec/forms/hyrax/forms/batch_upload_form_spec.rb +0 -79
  1430. data/spec/forms/hyrax/forms/collection_form_spec.rb +0 -199
  1431. data/spec/forms/hyrax/forms/dashboard/nest_collection_form_spec.rb +0 -159
  1432. data/spec/forms/hyrax/forms/file_manager_form_spec.rb +0 -19
  1433. data/spec/forms/hyrax/forms/file_set_edit_form_spec.rb +0 -53
  1434. data/spec/forms/hyrax/forms/permission_template_form_spec.rb +0 -599
  1435. data/spec/forms/hyrax/forms/work_form_spec.rb +0 -361
  1436. data/spec/forms/hyrax/forms/workflow_action_form_spec.rb +0 -129
  1437. data/spec/forms/hyrax/forms/workflow_responsibility_form_spec.rb +0 -41
  1438. data/spec/forms/hyrax/generic_work_form_spec.rb +0 -127
  1439. data/spec/helpers/blacklight_helper_spec.rb +0 -139
  1440. data/spec/helpers/hyrax/ability_helper_spec.rb +0 -61
  1441. data/spec/helpers/hyrax/batch_edits_helper_spec.rb +0 -59
  1442. data/spec/helpers/hyrax/charts_helper_spec.rb +0 -63
  1443. data/spec/helpers/hyrax/citations_behaviors/formatters/chicago_formatter_spec.rb +0 -10
  1444. data/spec/helpers/hyrax/collections_helper_spec.rb +0 -159
  1445. data/spec/helpers/hyrax/content_block_helper_spec.rb +0 -44
  1446. data/spec/helpers/hyrax/dashboard_helper_behavior_spec.rb +0 -73
  1447. data/spec/helpers/hyrax/file_set_helper_spec.rb +0 -65
  1448. data/spec/helpers/hyrax/iiif_helper_spec.rb +0 -60
  1449. data/spec/helpers/hyrax/trophy_helper_spec.rb +0 -37
  1450. data/spec/helpers/hyrax_helper_spec.rb +0 -403
  1451. data/spec/hyrax/transactions/create_work_spec.rb +0 -223
  1452. data/spec/hyrax/transactions/destroy_work_spec.rb +0 -35
  1453. data/spec/hyrax/transactions/steps/apply_collection_permission_template_spec.rb +0 -59
  1454. data/spec/hyrax/transactions/steps/apply_permission_template_spec.rb +0 -72
  1455. data/spec/hyrax/transactions/steps/apply_visibility_spec.rb +0 -82
  1456. data/spec/hyrax/transactions/steps/destroy_work_spec.rb +0 -33
  1457. data/spec/hyrax/transactions/steps/ensure_admin_set_spec.rb +0 -25
  1458. data/spec/hyrax/transactions/steps/ensure_permission_template_spec.rb +0 -33
  1459. data/spec/hyrax/transactions/steps/save_work_spec.rb +0 -32
  1460. data/spec/hyrax/transactions/steps/set_default_admin_set_spec.rb +0 -38
  1461. data/spec/hyrax/transactions/steps/set_modified_date_spec.rb +0 -22
  1462. data/spec/hyrax/transactions/steps/set_uploaded_date_spec.rb +0 -32
  1463. data/spec/indexers/hyrax/admin_set_indexer_spec.rb +0 -15
  1464. data/spec/indexers/hyrax/collection_indexer_spec.rb +0 -43
  1465. data/spec/indexers/hyrax/file_set_indexer_spec.rb +0 -150
  1466. data/spec/indexers/hyrax/generic_work_indexer_spec.rb +0 -123
  1467. data/spec/indexers/hyrax/repository_reindexer_spec.rb +0 -8
  1468. data/spec/indexers/hyrax/valkyrie_indexers/base_indexer_spec.rb +0 -16
  1469. data/spec/inputs/controlled_vocabulary_input_spec.rb +0 -57
  1470. data/spec/inputs/multifile_input_spec.rb +0 -31
  1471. data/spec/javascripts/authority_select_spec.js +0 -22
  1472. data/spec/javascripts/autocomplete_spec.js.coffee +0 -199
  1473. data/spec/javascripts/batch_select_spec.js +0 -15
  1474. data/spec/javascripts/charts_spec.coffee +0 -10
  1475. data/spec/javascripts/checklist_item_spec.js +0 -23
  1476. data/spec/javascripts/deposit_agreement_spec.js +0 -70
  1477. data/spec/javascripts/file_manager_member_spec.coffee +0 -88
  1478. data/spec/javascripts/file_manager_sorting_spec.coffee +0 -23
  1479. data/spec/javascripts/fixtures/chart_example.html +0 -1
  1480. data/spec/javascripts/fixtures/dashboard_batch_forms.html +0 -11
  1481. data/spec/javascripts/fixtures/file_manager_member.html +0 -40
  1482. data/spec/javascripts/fixtures/save_button.html +0 -3
  1483. data/spec/javascripts/fixtures/sortable.html +0 -182
  1484. data/spec/javascripts/fixtures/sul_table.html +0 -29
  1485. data/spec/javascripts/grant_spec.js +0 -43
  1486. data/spec/javascripts/helpers/jasmine-ajax.js +0 -751
  1487. data/spec/javascripts/helpers/jasmine-jquery.js +0 -838
  1488. data/spec/javascripts/helpers/test_fixtures.js.coffee +0 -18
  1489. data/spec/javascripts/helpers/test_responses.js +0 -12
  1490. data/spec/javascripts/jasmine_spec.rb +0 -25
  1491. data/spec/javascripts/relationships_control_spec.js.coffee +0 -27
  1492. data/spec/javascripts/required_field_spec.js +0 -41
  1493. data/spec/javascripts/save_manager_spec.coffee +0 -87
  1494. data/spec/javascripts/save_work_spec.js +0 -262
  1495. data/spec/javascripts/settings_spec.js +0 -74
  1496. data/spec/javascripts/single_use_links_spec.coffee +0 -51
  1497. data/spec/javascripts/support/jasmine.yml +0 -125
  1498. data/spec/javascripts/support/jasmine_helper.rb +0 -14
  1499. data/spec/javascripts/tabs_spec.js.coffee +0 -38
  1500. data/spec/javascripts/uploaded_files_spec.js +0 -23
  1501. data/spec/javascripts/visibility_component_spec.js +0 -531
  1502. data/spec/jobs/attach_files_to_work_job_spec.rb +0 -80
  1503. data/spec/jobs/attach_files_to_work_with_ordered_members_job_spec.rb +0 -13
  1504. data/spec/jobs/batch_create_job_spec.rb +0 -79
  1505. data/spec/jobs/characterize_job_spec.rb +0 -66
  1506. data/spec/jobs/content_delete_event_job_spec.rb +0 -36
  1507. data/spec/jobs/content_deposit_event_job_spec.rb +0 -25
  1508. data/spec/jobs/content_depositor_change_event_job_spec.rb +0 -28
  1509. data/spec/jobs/content_new_version_event_job_spec.rb +0 -21
  1510. data/spec/jobs/content_restored_version_event_job_spec.rb +0 -28
  1511. data/spec/jobs/content_update_event_job_spec.rb +0 -25
  1512. data/spec/jobs/create_derivatives_job_spec.rb +0 -93
  1513. data/spec/jobs/create_work_job_spec.rb +0 -60
  1514. data/spec/jobs/file_set_attached_event_job_spec.rb +0 -34
  1515. data/spec/jobs/fixity_check_job_spec.rb +0 -50
  1516. data/spec/jobs/hyrax/grant_edit_job_spec.rb +0 -11
  1517. data/spec/jobs/hyrax/grant_edit_to_members_job_spec.rb +0 -16
  1518. data/spec/jobs/hyrax/grant_read_job_spec.rb +0 -11
  1519. data/spec/jobs/hyrax/grant_read_to_members_job_spec.rb +0 -16
  1520. data/spec/jobs/hyrax/revoke_edit_from_members_job_spec.rb +0 -16
  1521. data/spec/jobs/hyrax/revoke_edit_job_spec.rb +0 -11
  1522. data/spec/jobs/import_export_job_spec.rb +0 -28
  1523. data/spec/jobs/import_url_job_spec.rb +0 -180
  1524. data/spec/jobs/ingest_local_file_job_spec.rb +0 -40
  1525. data/spec/jobs/inherit_permissions_job_spec.rb +0 -94
  1526. data/spec/jobs/stream_notifications_job_spec.rb +0 -45
  1527. data/spec/jobs/user_edit_profile_event_job_spec.rb +0 -17
  1528. data/spec/jobs/visibility_copy_job_spec.rb +0 -99
  1529. data/spec/lib/hyrax/analytics_spec.rb +0 -65
  1530. data/spec/lib/hyrax/arkivo/actor_spec.rb +0 -78
  1531. data/spec/lib/hyrax/arkivo/create_subscription_job_spec.rb +0 -50
  1532. data/spec/lib/hyrax/arkivo/metadata_munger_spec.rb +0 -46
  1533. data/spec/lib/hyrax/arkivo/schema_validator_spec.rb +0 -63
  1534. data/spec/lib/hyrax/arkivo_spec.rb +0 -12
  1535. data/spec/lib/hyrax/collections/search_service_spec.rb +0 -35
  1536. data/spec/lib/hyrax/configuration_spec.rb +0 -91
  1537. data/spec/lib/hyrax/controlled_vocabulary/importer/downloader_spec.rb +0 -33
  1538. data/spec/lib/hyrax/controlled_vocabulary/importer/language_spec.rb +0 -24
  1539. data/spec/lib/hyrax/move_all_works_to_admin_set_spec.rb +0 -13
  1540. data/spec/lib/hyrax/name_spec.rb +0 -21
  1541. data/spec/lib/hyrax/redis_event_store_spec.rb +0 -54
  1542. data/spec/lib/hyrax/resource_sync/capability_list_writer_spec.rb +0 -33
  1543. data/spec/lib/hyrax/resource_sync/change_list_writer_spec.rb +0 -78
  1544. data/spec/lib/hyrax/resource_sync/resource_list_writer_spec.rb +0 -25
  1545. data/spec/lib/hyrax/resource_sync/source_description_writer_spec.rb +0 -18
  1546. data/spec/lib/hyrax/role_registry_spec.rb +0 -43
  1547. data/spec/lib/hyrax/search_state_spec.rb +0 -26
  1548. data/spec/lib/hyrax/zotero/config_spec.rb +0 -26
  1549. data/spec/lib/hyrax/zotero_spec.rb +0 -9
  1550. data/spec/lib/hyrax_spec.rb +0 -9
  1551. data/spec/matcher_tests/match_valkyrie_ids_with_af_ids_spec.rb +0 -40
  1552. data/spec/models/admin_set_spec.rb +0 -229
  1553. data/spec/models/batch_upload_item_spec.rb +0 -7
  1554. data/spec/models/checksum_audit_log_spec.rb +0 -162
  1555. data/spec/models/collection_branding_info_spec.rb +0 -61
  1556. data/spec/models/collection_spec.rb +0 -326
  1557. data/spec/models/concerns/hyrax/collection_nesting_spec.rb +0 -83
  1558. data/spec/models/content_block_spec.rb +0 -198
  1559. data/spec/models/featured_work_list_spec.rb +0 -56
  1560. data/spec/models/featured_work_spec.rb +0 -53
  1561. data/spec/models/file_download_stat_spec.rb +0 -104
  1562. data/spec/models/file_set_spec.rb +0 -669
  1563. data/spec/models/file_view_stat_spec.rb +0 -81
  1564. data/spec/models/flipflop_spec.rb +0 -49
  1565. data/spec/models/generic_work_spec.rb +0 -117
  1566. data/spec/models/hyrax/batch_create_operation_spec.rb +0 -59
  1567. data/spec/models/hyrax/collection_type_participant_spec.rb +0 -43
  1568. data/spec/models/hyrax/collection_type_spec.rb +0 -236
  1569. data/spec/models/hyrax/download_spec.rb +0 -13
  1570. data/spec/models/hyrax/embargo_spec.rb +0 -27
  1571. data/spec/models/hyrax/file_metadata_spec.rb +0 -110
  1572. data/spec/models/hyrax/lease_spec.rb +0 -25
  1573. data/spec/models/hyrax/operation_spec.rb +0 -123
  1574. data/spec/models/hyrax/pageview_spec.rb +0 -13
  1575. data/spec/models/hyrax/permission_template_access_spec.rb +0 -180
  1576. data/spec/models/hyrax/permission_template_spec.rb +0 -291
  1577. data/spec/models/hyrax/permissions/readable_permissions_spec.rb +0 -52
  1578. data/spec/models/hyrax/permissions/writable_permissions_spec.rb +0 -12
  1579. data/spec/models/hyrax/resource_spec.rb +0 -60
  1580. data/spec/models/hyrax/uploaded_file_spec.rb +0 -10
  1581. data/spec/models/hyrax/user_usage_stats_spec.rb +0 -43
  1582. data/spec/models/hyrax/virus_scanner_spec.rb +0 -50
  1583. data/spec/models/hyrax/work_behavior_spec.rb +0 -63
  1584. data/spec/models/job_io_wrapper_spec.rb +0 -235
  1585. data/spec/models/proxy_deposit_request_spec.rb +0 -170
  1586. data/spec/models/single_use_link_spec.rb +0 -51
  1587. data/spec/models/sipity/agent_spec.rb +0 -8
  1588. data/spec/models/sipity/comment_spec.rb +0 -24
  1589. data/spec/models/sipity/entity_spec.rb +0 -27
  1590. data/spec/models/sipity/entity_specific_responsibility_spec.rb +0 -9
  1591. data/spec/models/sipity/notifiable_context_spec.rb +0 -7
  1592. data/spec/models/sipity/notification_recipient_spec.rb +0 -9
  1593. data/spec/models/sipity/notification_spec.rb +0 -15
  1594. data/spec/models/sipity/role_spec.rb +0 -40
  1595. data/spec/models/sipity/workflow_action_spec.rb +0 -11
  1596. data/spec/models/sipity/workflow_responsibility_spec.rb +0 -8
  1597. data/spec/models/sipity/workflow_role_spec.rb +0 -8
  1598. data/spec/models/sipity/workflow_spec.rb +0 -84
  1599. data/spec/models/sipity/workflow_state_action_permission_spec.rb +0 -8
  1600. data/spec/models/sipity/workflow_state_action_spec.rb +0 -8
  1601. data/spec/models/sipity/workflow_state_spec.rb +0 -17
  1602. data/spec/models/solr_document_spec.rb +0 -205
  1603. data/spec/models/solr_hit_spec.rb +0 -9
  1604. data/spec/models/trophy_spec.rb +0 -19
  1605. data/spec/models/user_mailbox_spec.rb +0 -134
  1606. data/spec/models/user_spec.rb +0 -294
  1607. data/spec/models/work_view_stat_spec.rb +0 -107
  1608. data/spec/presenters/hyrax/admin/dashboard_presenter_spec.rb +0 -33
  1609. data/spec/presenters/hyrax/admin/repository_growth_presenter_spec.rb +0 -25
  1610. data/spec/presenters/hyrax/admin/repository_object_presenter_spec.rb +0 -24
  1611. data/spec/presenters/hyrax/admin/user_activity_presenter_spec.rb +0 -20
  1612. data/spec/presenters/hyrax/admin/users_presenter_spec.rb +0 -48
  1613. data/spec/presenters/hyrax/admin/workflow_role_presenter_spec.rb +0 -12
  1614. data/spec/presenters/hyrax/admin/workflow_roles_presenter_spec.rb +0 -16
  1615. data/spec/presenters/hyrax/admin_set_options_presenter_spec.rb +0 -73
  1616. data/spec/presenters/hyrax/admin_set_presenter_spec.rb +0 -143
  1617. data/spec/presenters/hyrax/admin_stats_presenter_spec.rb +0 -143
  1618. data/spec/presenters/hyrax/collection_options_presenter_spec.rb +0 -15
  1619. data/spec/presenters/hyrax/collection_presenter_spec.rb +0 -461
  1620. data/spec/presenters/hyrax/dashboard/user_presenter_spec.rb +0 -65
  1621. data/spec/presenters/hyrax/embargo_presenter_spec.rb +0 -51
  1622. data/spec/presenters/hyrax/file_set_presenter_spec.rb +0 -430
  1623. data/spec/presenters/hyrax/file_usage_spec.rb +0 -162
  1624. data/spec/presenters/hyrax/fixity_status_presenter_spec.rb +0 -55
  1625. data/spec/presenters/hyrax/homepage_presenter_spec.rb +0 -42
  1626. data/spec/presenters/hyrax/inspect_work_presenter_spec.rb +0 -59
  1627. data/spec/presenters/hyrax/lease_presenter_spec.rb +0 -51
  1628. data/spec/presenters/hyrax/member_presenter_factory_spec.rb +0 -26
  1629. data/spec/presenters/hyrax/menu_presenter_spec.rb +0 -107
  1630. data/spec/presenters/hyrax/permission_badge_spec.rb +0 -77
  1631. data/spec/presenters/hyrax/presenter_factory_spec.rb +0 -53
  1632. data/spec/presenters/hyrax/presenter_renderer_spec.rb +0 -30
  1633. data/spec/presenters/hyrax/select_collection_type_list_presenter_spec.rb +0 -59
  1634. data/spec/presenters/hyrax/select_collection_type_presenter_spec.rb +0 -10
  1635. data/spec/presenters/hyrax/select_type_list_presenter_spec.rb +0 -37
  1636. data/spec/presenters/hyrax/select_type_presenter_spec.rb +0 -74
  1637. data/spec/presenters/hyrax/single_use_link_presenter_spec.rb +0 -41
  1638. data/spec/presenters/hyrax/transfers_presenter_spec.rb +0 -44
  1639. data/spec/presenters/hyrax/trophy_presenter_spec.rb +0 -53
  1640. data/spec/presenters/hyrax/twitter_presenter_spec.rb +0 -27
  1641. data/spec/presenters/hyrax/user_profile_presenter_spec.rb +0 -28
  1642. data/spec/presenters/hyrax/version_list_presenter_spec.rb +0 -30
  1643. data/spec/presenters/hyrax/version_presenter_spec.rb +0 -57
  1644. data/spec/presenters/hyrax/work_show_presenter_spec.rb +0 -591
  1645. data/spec/presenters/hyrax/work_usage_spec.rb +0 -144
  1646. data/spec/presenters/hyrax/workflow_presenter_spec.rb +0 -75
  1647. data/spec/rails_helper.rb +0 -2
  1648. data/spec/renderers/hyrax/renderers/attribute_renderer_spec.rb +0 -118
  1649. data/spec/renderers/hyrax/renderers/date_attribute_renderer_spec.rb +0 -39
  1650. data/spec/renderers/hyrax/renderers/external_link_attribute_renderer_spec.rb +0 -22
  1651. data/spec/renderers/hyrax/renderers/faceted_attribute_renderer_spec.rb +0 -35
  1652. data/spec/renderers/hyrax/renderers/license_attribute_renderer_spec.rb +0 -21
  1653. data/spec/renderers/hyrax/renderers/linked_attribute_renderer_spec.rb +0 -21
  1654. data/spec/renderers/hyrax/renderers/rights_statement_attribute_renderer_spec.rb +0 -29
  1655. data/spec/requests/legacy_routing_spec.rb +0 -7
  1656. data/spec/requests/riiif_spec.rb +0 -32
  1657. data/spec/routing/admin_routes_spec.rb +0 -29
  1658. data/spec/routing/api_route_spec.rb +0 -89
  1659. data/spec/routing/citations_route_spec.rb +0 -21
  1660. data/spec/routing/collection_permission_templates_routes_spec.rb +0 -31
  1661. data/spec/routing/collection_types_routes.rb +0 -35
  1662. data/spec/routing/dashboard_routes_spec.rb +0 -37
  1663. data/spec/routing/featured_works_route_spec.rb +0 -15
  1664. data/spec/routing/operations_spec.rb +0 -9
  1665. data/spec/routing/ownership_transfers_route_spec.rb +0 -43
  1666. data/spec/routing/resource_sync_spec.rb +0 -19
  1667. data/spec/routing/route_spec.rb +0 -205
  1668. data/spec/routing/single_use_link_spec.rb +0 -27
  1669. data/spec/routing/stats_route_spec.rb +0 -21
  1670. data/spec/search_builders/hyrax/abstract_type_relation_spec.rb +0 -18
  1671. data/spec/search_builders/hyrax/admin_admin_set_member_search_builder_spec.rb +0 -39
  1672. data/spec/search_builders/hyrax/admin_set_search_builder_spec.rb +0 -78
  1673. data/spec/search_builders/hyrax/catalog_search_builder_spec.rb +0 -86
  1674. data/spec/search_builders/hyrax/collection_member_search_builder_spec.rb +0 -53
  1675. data/spec/search_builders/hyrax/collection_search_builder_spec.rb +0 -74
  1676. data/spec/search_builders/hyrax/dashboard/collections_search_builder_spec.rb +0 -103
  1677. data/spec/search_builders/hyrax/dashboard/nested_collections_search_builder_spec.rb +0 -85
  1678. data/spec/search_builders/hyrax/dashboard/works_search_builder_spec.rb +0 -44
  1679. data/spec/search_builders/hyrax/embargo_search_builder_spec.rb +0 -17
  1680. data/spec/search_builders/hyrax/file_set_search_builder_spec.rb +0 -28
  1681. data/spec/search_builders/hyrax/lease_search_builder_spec.rb +0 -17
  1682. data/spec/search_builders/hyrax/my/collections_search_builder_spec.rb +0 -35
  1683. data/spec/search_builders/hyrax/my/find_works_search_builder_spec.rb +0 -63
  1684. data/spec/search_builders/hyrax/my/shares_search_builder_spec.rb +0 -32
  1685. data/spec/search_builders/hyrax/my/works_search_builder_spec.rb +0 -52
  1686. data/spec/search_builders/hyrax/parent_collection_search_builder_spec.rb +0 -15
  1687. data/spec/search_builders/hyrax/single_admin_set_search_builder_spec.rb +0 -20
  1688. data/spec/search_builders/hyrax/stats/work_status_search_builder_spec.rb +0 -32
  1689. data/spec/search_builders/hyrax/work_relation_spec.rb +0 -9
  1690. data/spec/search_builders/hyrax/work_search_builder_spec.rb +0 -106
  1691. data/spec/search_builders/hyrax/works_search_builder_spec.rb +0 -23
  1692. data/spec/services/hyrax/abstract_message_service_spec.rb +0 -25
  1693. data/spec/services/hyrax/adapters/nesting_index_adapter_spec.rb +0 -204
  1694. data/spec/services/hyrax/admin_set_create_service_spec.rb +0 -114
  1695. data/spec/services/hyrax/admin_set_member_service_spec.rb +0 -21
  1696. data/spec/services/hyrax/admin_set_service_spec.rb +0 -171
  1697. data/spec/services/hyrax/batch_create_failure_service_spec.rb +0 -18
  1698. data/spec/services/hyrax/batch_create_success_service_spec.rb +0 -15
  1699. data/spec/services/hyrax/change_content_depositor_service_spec.rb +0 -49
  1700. data/spec/services/hyrax/collection_member_service_spec.rb +0 -19
  1701. data/spec/services/hyrax/collection_types/create_service_spec.rb +0 -127
  1702. data/spec/services/hyrax/collection_types/permissions_service_spec.rb +0 -297
  1703. data/spec/services/hyrax/collections/collection_member_service_spec.rb +0 -49
  1704. data/spec/services/hyrax/collections/managed_collections_service_spec.rb +0 -17
  1705. data/spec/services/hyrax/collections/migration_service_spec.rb +0 -467
  1706. data/spec/services/hyrax/collections/nested_collection_persistence_service_spec.rb +0 -28
  1707. data/spec/services/hyrax/collections/nested_collection_query_service_spec.rb +0 -353
  1708. data/spec/services/hyrax/collections/permissions_create_service_spec.rb +0 -64
  1709. data/spec/services/hyrax/collections/permissions_service_spec.rb +0 -380
  1710. data/spec/services/hyrax/collections_service_spec.rb +0 -62
  1711. data/spec/services/hyrax/curation_concern_spec.rb +0 -18
  1712. data/spec/services/hyrax/custom_queries/navigators/child_collections_navigator_spec.rb +0 -41
  1713. data/spec/services/hyrax/custom_queries/navigators/child_filesets_navigator_spec.rb +0 -41
  1714. data/spec/services/hyrax/custom_queries/navigators/child_works_navigator_spec.rb +0 -79
  1715. data/spec/services/hyrax/custom_queries/wings.rb +0 -52
  1716. data/spec/services/hyrax/database_migrator_spec.rb +0 -20
  1717. data/spec/services/hyrax/default_middleware_stack_spec.rb +0 -35
  1718. data/spec/services/hyrax/derivative_path_spec.rb +0 -65
  1719. data/spec/services/hyrax/derivative_service_spec.rb +0 -49
  1720. data/spec/services/hyrax/embargo_manager_spec.rb +0 -123
  1721. data/spec/services/hyrax/embargo_service_spec.rb +0 -59
  1722. data/spec/services/hyrax/file_set_csv_service_spec.rb +0 -83
  1723. data/spec/services/hyrax/file_set_derivatives_service_spec.rb +0 -13
  1724. data/spec/services/hyrax/file_set_fixity_check_service_spec.rb +0 -77
  1725. data/spec/services/hyrax/file_set_visibility_propagator_spec.rb +0 -59
  1726. data/spec/services/hyrax/fixity_check_failure_service_spec.rb +0 -30
  1727. data/spec/services/hyrax/graph_exporter_spec.rb +0 -58
  1728. data/spec/services/hyrax/iiif_authorization_service_spec.rb +0 -43
  1729. data/spec/services/hyrax/import_url_failure_service_spec.rb +0 -23
  1730. data/spec/services/hyrax/lease_service_spec.rb +0 -50
  1731. data/spec/services/hyrax/license_service_spec.rb +0 -34
  1732. data/spec/services/hyrax/lock_manager_spec.rb +0 -13
  1733. data/spec/services/hyrax/messenger_service_spec.rb +0 -15
  1734. data/spec/services/hyrax/microdata_spec.rb +0 -94
  1735. data/spec/services/hyrax/multiple_membership_checker_spec.rb +0 -155
  1736. data/spec/services/hyrax/noid_spec.rb +0 -37
  1737. data/spec/services/hyrax/permission_template_applicator_spec.rb +0 -69
  1738. data/spec/services/hyrax/persist_derivatives_spec.rb +0 -22
  1739. data/spec/services/hyrax/persist_directly_contained_output_file_service_spec.rb +0 -20
  1740. data/spec/services/hyrax/qa_select_service_spec.rb +0 -109
  1741. data/spec/services/hyrax/quick_classification_query_spec.rb +0 -38
  1742. data/spec/services/hyrax/repository_fixity_check_service_spec.rb +0 -16
  1743. data/spec/services/hyrax/resource_types_service_spec.rb +0 -38
  1744. data/spec/services/hyrax/resource_visibility_propagator_spec.rb +0 -71
  1745. data/spec/services/hyrax/rights_statement_service_spec.rb +0 -9
  1746. data/spec/services/hyrax/solr_query_builder_service_spec.rb +0 -17
  1747. data/spec/services/hyrax/solr_service_spec.rb +0 -218
  1748. data/spec/services/hyrax/statistics/collections/over_time_spec.rb +0 -17
  1749. data/spec/services/hyrax/statistics/depositors/summary_spec.rb +0 -66
  1750. data/spec/services/hyrax/statistics/file_sets/by_format_spec.rb +0 -29
  1751. data/spec/services/hyrax/statistics/query_service_spec.rb +0 -112
  1752. data/spec/services/hyrax/statistics/system_stats_spec.rb +0 -45
  1753. data/spec/services/hyrax/statistics/users/over_time_spec.rb +0 -22
  1754. data/spec/services/hyrax/statistics/works/by_depositor_spec.rb +0 -24
  1755. data/spec/services/hyrax/statistics/works/by_resource_type_spec.rb +0 -28
  1756. data/spec/services/hyrax/statistics/works/count_spec.rb +0 -33
  1757. data/spec/services/hyrax/statistics/works/over_time_spec.rb +0 -17
  1758. data/spec/services/hyrax/thumbnail_path_service_spec.rb +0 -61
  1759. data/spec/services/hyrax/tolerant_select_service_spec.rb +0 -80
  1760. data/spec/services/hyrax/user_stat_importer_spec.rb +0 -315
  1761. data/spec/services/hyrax/versioning_service_spec.rb +0 -46
  1762. data/spec/services/hyrax/visibility_intention_applicator_spec.rb +0 -69
  1763. data/spec/services/hyrax/visibility_intention_spec.rb +0 -144
  1764. data/spec/services/hyrax/visibility_reader_spec.rb +0 -38
  1765. data/spec/services/hyrax/visibility_writer_spec.rb +0 -47
  1766. data/spec/services/hyrax/work_query_service_spec.rb +0 -56
  1767. data/spec/services/hyrax/workflow/action_taken_service_spec.rb +0 -74
  1768. data/spec/services/hyrax/workflow/activate_object_spec.rb +0 -26
  1769. data/spec/services/hyrax/workflow/changes_required_notification_spec.rb +0 -35
  1770. data/spec/services/hyrax/workflow/deactivate_object_spec.rb +0 -26
  1771. data/spec/services/hyrax/workflow/deposited_notification_spec.rb +0 -35
  1772. data/spec/services/hyrax/workflow/grant_edit_to_depositor_spec.rb +0 -53
  1773. data/spec/services/hyrax/workflow/grant_read_to_depositor_spec.rb +0 -48
  1774. data/spec/services/hyrax/workflow/method_generator_spec.rb +0 -42
  1775. data/spec/services/hyrax/workflow/notification_configuration_parameter_spec.rb +0 -24
  1776. data/spec/services/hyrax/workflow/notification_generator_spec.rb +0 -27
  1777. data/spec/services/hyrax/workflow/notification_service_spec.rb +0 -87
  1778. data/spec/services/hyrax/workflow/pending_review_notification_spec.rb +0 -34
  1779. data/spec/services/hyrax/workflow/permission_generator_spec.rb +0 -50
  1780. data/spec/services/hyrax/workflow/permission_query_spec.rb +0 -206
  1781. data/spec/services/hyrax/workflow/revoke_edit_from_depositor_spec.rb +0 -48
  1782. data/spec/services/hyrax/workflow/sipity_actions_generator_spec.rb +0 -40
  1783. data/spec/services/hyrax/workflow/state_machine_generator_spec.rb +0 -45
  1784. data/spec/services/hyrax/workflow/status_list_service_spec.rb +0 -55
  1785. data/spec/services/hyrax/workflow/workflow_factory_spec.rb +0 -26
  1786. data/spec/services/hyrax/workflow/workflow_importer_spec.rb +0 -241
  1787. data/spec/services/hyrax/workflow/workflow_permissions_generator_spec.rb +0 -39
  1788. data/spec/services/hyrax/workflow/workflow_schema_spec.rb +0 -86
  1789. data/spec/services/hyrax/working_directory_spec.rb +0 -12
  1790. data/spec/services/hyrax/works/managed_works_service_spec.rb +0 -17
  1791. data/spec/services/hyrax/works/migration_service_spec.rb +0 -29
  1792. data/spec/spec_helper.rb +0 -297
  1793. data/spec/strategies/hyrax/strategies/yaml_strategy_spec.rb +0 -30
  1794. data/spec/support/clean_solr.rb +0 -7
  1795. data/spec/support/controller_level_helpers.rb +0 -27
  1796. data/spec/support/create_for_repository.rb +0 -25
  1797. data/spec/support/factory_helpers.rb +0 -26
  1798. data/spec/support/fakes/fake_actor.rb +0 -21
  1799. data/spec/support/fakes/fake_authority.rb +0 -13
  1800. data/spec/support/features.rb +0 -10
  1801. data/spec/support/features/batch_edit_actions.rb +0 -28
  1802. data/spec/support/features/session_helpers.rb +0 -14
  1803. data/spec/support/features/workflow.rb +0 -9
  1804. data/spec/support/input_support.rb +0 -11
  1805. data/spec/support/logging_formatter.rb +0 -66
  1806. data/spec/support/matchers/api_responses.rb +0 -26
  1807. data/spec/support/matchers/collection_type_property_matchers.rb +0 -29
  1808. data/spec/support/matchers/embargo.rb +0 -9
  1809. data/spec/support/matchers/lease.rb +0 -9
  1810. data/spec/support/matchers/match_valkyrie_ids_with_af_ids.rb +0 -11
  1811. data/spec/support/matchers/permission.rb +0 -22
  1812. data/spec/support/matchers/response_matchers.rb +0 -7
  1813. data/spec/support/optional_example.rb +0 -16
  1814. data/spec/support/rake.rb +0 -41
  1815. data/spec/support/selectors.rb +0 -100
  1816. data/spec/support/spec_statistic.rb +0 -23
  1817. data/spec/support/speedup.rb +0 -6
  1818. data/spec/support/statistic_helper.rb +0 -9
  1819. data/spec/support/valkyrie_indexing.rb +0 -1
  1820. data/spec/tasks/rake_spec.rb +0 -27
  1821. data/spec/test_app_templates/Gemfile.extra +0 -6
  1822. data/spec/test_app_templates/disable_animations_in_test_environment.rb +0 -54
  1823. data/spec/test_app_templates/lib/generators/test_app_generator.rb +0 -130
  1824. data/spec/valkyrie/indexing/solr/indexing_adapter_spec.rb +0 -41
  1825. data/spec/valkyrie/indexing_adapter_spec.rb +0 -25
  1826. data/spec/views/_flash_msg.html.erb_spec.rb +0 -32
  1827. data/spec/views/_user_util_links.html.erb_spec.rb +0 -44
  1828. data/spec/views/catalog/_index_list_default.html.erb_spec.rb +0 -44
  1829. data/spec/views/catalog/_search_form.html.erb_spec.rb +0 -16
  1830. data/spec/views/catalog/_thumbnail_list_collection.html.erb_spec.rb +0 -43
  1831. data/spec/views/catalog/index.html.erb_spec.rb +0 -50
  1832. data/spec/views/content_blocks/edit.html.erb_spec.rb +0 -21
  1833. data/spec/views/hyrax/admin/admin_sets/_form.html.erb_spec.rb +0 -29
  1834. data/spec/views/hyrax/admin/admin_sets/_form_participant_table.html.erb_spec.rb +0 -128
  1835. data/spec/views/hyrax/admin/admin_sets/_form_participants.html.erb_spec.rb +0 -19
  1836. data/spec/views/hyrax/admin/admin_sets/_form_visibility.html.erb_spec.rb +0 -24
  1837. data/spec/views/hyrax/admin/admin_sets/_form_workflow.html.erb_spec.rb +0 -22
  1838. data/spec/views/hyrax/admin/admin_sets/_show_actions.html.erb_spec.rb +0 -68
  1839. data/spec/views/hyrax/admin/admin_sets/_show_document_list.html.erb_spec.rb +0 -13
  1840. data/spec/views/hyrax/admin/admin_sets/_show_document_list_row.html.erb_spec.rb +0 -28
  1841. data/spec/views/hyrax/admin/admin_sets/index.html.erb_spec.rb +0 -40
  1842. data/spec/views/hyrax/admin/admin_sets/index.json.erb_spec.rb +0 -29
  1843. data/spec/views/hyrax/admin/admin_sets/show.html.erb_spec.rb +0 -21
  1844. data/spec/views/hyrax/admin/collection_types/_form.html.erb_spec.rb +0 -45
  1845. data/spec/views/hyrax/admin/collection_types/_form_appearance.html.erb_spec.rb +0 -22
  1846. data/spec/views/hyrax/admin/collection_types/_form_metadata.html.erb_spec.rb +0 -27
  1847. data/spec/views/hyrax/admin/collection_types/_form_metadata_admin_set.html.erb_spec.rb +0 -27
  1848. data/spec/views/hyrax/admin/collection_types/_form_participants.html.erb_spec.rb +0 -24
  1849. data/spec/views/hyrax/admin/collection_types/_form_participants_table.html.erb_spec.rb +0 -73
  1850. data/spec/views/hyrax/admin/collection_types/_form_settings.html.erb_spec.rb +0 -86
  1851. data/spec/views/hyrax/admin/collection_types/index.html.erb_spec.rb +0 -62
  1852. data/spec/views/hyrax/admin/features/index.html.erb_spec.rb +0 -15
  1853. data/spec/views/hyrax/admin/stats/show.html.erb_spec.rb +0 -54
  1854. data/spec/views/hyrax/admin/users/index.html.erb_spec.rb +0 -45
  1855. data/spec/views/hyrax/admin/workflow_roles/index.html.erb_spec.rb +0 -40
  1856. data/spec/views/hyrax/base/_attribute_rows.html.erb_spec.rb +0 -30
  1857. data/spec/views/hyrax/base/_attributes.html.erb_spec.rb +0 -35
  1858. data/spec/views/hyrax/base/_citations.html.erb_spec.rb +0 -43
  1859. data/spec/views/hyrax/base/_form.html.erb_spec.rb +0 -80
  1860. data/spec/views/hyrax/base/_form_child_work_relationships.html.erb_spec.rb +0 -68
  1861. data/spec/views/hyrax/base/_form_files.html.erb_spec.rb +0 -38
  1862. data/spec/views/hyrax/base/_form_metadata.html.erb_spec.rb +0 -40
  1863. data/spec/views/hyrax/base/_form_progress.html.erb_spec.rb +0 -131
  1864. data/spec/views/hyrax/base/_form_relationships.html.erb_spec.rb +0 -48
  1865. data/spec/views/hyrax/base/_form_rendering.html.erb_spec.rb +0 -22
  1866. data/spec/views/hyrax/base/_items.html.erb_spec.rb +0 -55
  1867. data/spec/views/hyrax/base/_member.html.erb_spec.rb +0 -43
  1868. data/spec/views/hyrax/base/_relationships.html.erb_spec.rb +0 -92
  1869. data/spec/views/hyrax/base/_show_actions.html.erb_spec.rb +0 -149
  1870. data/spec/views/hyrax/base/_social_media.html.erb_spec.rb +0 -15
  1871. data/spec/views/hyrax/base/edit.html.erb_spec.rb +0 -26
  1872. data/spec/views/hyrax/base/file_manager.html.erb_spec.rb +0 -88
  1873. data/spec/views/hyrax/base/show.html.erb_spec.rb +0 -202
  1874. data/spec/views/hyrax/base/show.json.jbuilder_spec.rb +0 -23
  1875. data/spec/views/hyrax/base/unauthorized.html.erb_spec.rb +0 -30
  1876. data/spec/views/hyrax/base/unavailable.html.erb_spec.rb +0 -36
  1877. data/spec/views/hyrax/batch_edits/check_all_spec.rb +0 -13
  1878. data/spec/views/hyrax/batch_edits/edit.html.erb_spec.rb +0 -35
  1879. data/spec/views/hyrax/batch_uploads/_form.html.erb_spec.rb +0 -24
  1880. data/spec/views/hyrax/citations/work.html.erb_spec.rb +0 -175
  1881. data/spec/views/hyrax/collections/_show_descriptions.html.erb_spec.rb +0 -32
  1882. data/spec/views/hyrax/collections/_show_document_list.html.erb_spec.rb +0 -24
  1883. data/spec/views/hyrax/collections/_show_document_list_row.html.erb_spec.rb +0 -36
  1884. data/spec/views/hyrax/collections/_show_parent_collections.html.erb_spec.rb +0 -74
  1885. data/spec/views/hyrax/collections/_sort_and_per_page.html.erb_spec.rb +0 -60
  1886. data/spec/views/hyrax/collections/_subcollection_list.html.erb_spec.rb +0 -39
  1887. data/spec/views/hyrax/collections/show.html.erb_spec.rb +0 -48
  1888. data/spec/views/hyrax/dashboard/_sidebar.html.erb_spec.rb +0 -171
  1889. data/spec/views/hyrax/dashboard/collections/_default_group.html.erb_spec.rb +0 -43
  1890. data/spec/views/hyrax/dashboard/collections/_form.html.erb_spec.rb +0 -60
  1891. data/spec/views/hyrax/dashboard/collections/_form_branding.html.erb_spec.rb +0 -23
  1892. data/spec/views/hyrax/dashboard/collections/_form_discovery.erb_spec.rb +0 -67
  1893. data/spec/views/hyrax/dashboard/collections/_form_for_select_collection.html.erb_spec.rb +0 -47
  1894. data/spec/views/hyrax/dashboard/collections/_form_share.erb_spec.rb +0 -22
  1895. data/spec/views/hyrax/dashboard/collections/_form_share_table.html.erb_spec.rb +0 -108
  1896. data/spec/views/hyrax/dashboard/collections/_list_collections.html.erb_spec.rb +0 -51
  1897. data/spec/views/hyrax/dashboard/collections/_show_actions.html.erb_spec.rb +0 -77
  1898. data/spec/views/hyrax/dashboard/collections/_show_add_items_actions.html.erb_spec.rb +0 -46
  1899. data/spec/views/hyrax/dashboard/collections/_show_descriptions.html.erb_spec.rb +0 -32
  1900. data/spec/views/hyrax/dashboard/collections/_show_document_list.html.erb_spec.rb +0 -24
  1901. data/spec/views/hyrax/dashboard/collections/_show_document_list_menu.html.erb_spec.rb +0 -31
  1902. data/spec/views/hyrax/dashboard/collections/_show_document_list_row.html.erb_spec.rb +0 -36
  1903. data/spec/views/hyrax/dashboard/collections/_show_parent_collection_row.html.erb_spec.rb +0 -61
  1904. data/spec/views/hyrax/dashboard/collections/_show_parent_collections.html.erb_spec.rb +0 -82
  1905. data/spec/views/hyrax/dashboard/collections/_show_subcollection_actions.html.erb_spec.rb +0 -62
  1906. data/spec/views/hyrax/dashboard/collections/_sort_and_per_page.html.erb_spec.rb +0 -60
  1907. data/spec/views/hyrax/dashboard/collections/_subcollection_list.html.erb_spec.rb +0 -75
  1908. data/spec/views/hyrax/dashboard/collections/_work_action_menu.html.erb_spec.rb +0 -18
  1909. data/spec/views/hyrax/dashboard/collections/edit.html.erb_spec.rb +0 -20
  1910. data/spec/views/hyrax/dashboard/collections/show.html.erb_spec.rb +0 -116
  1911. data/spec/views/hyrax/dashboard/profiles/_trophy_edit.html.erb_spec.rb +0 -36
  1912. data/spec/views/hyrax/dashboard/profiles/edit.html.erb_spec.rb +0 -67
  1913. data/spec/views/hyrax/dashboard/profiles/show.html.erb_spec.rb +0 -36
  1914. data/spec/views/hyrax/dashboard/show_user_spec.rb +0 -61
  1915. data/spec/views/hyrax/depositors/index.html.erb_spec.rb +0 -13
  1916. data/spec/views/hyrax/embargoes/index.html.erb_spec.rb +0 -14
  1917. data/spec/views/hyrax/file_sets/_actions.html.erb_spec.rb +0 -36
  1918. data/spec/views/hyrax/file_sets/_permission.html.erb_spec.rb +0 -14
  1919. data/spec/views/hyrax/file_sets/_permission_form.html.erb_spec.rb +0 -44
  1920. data/spec/views/hyrax/file_sets/_show_actions.html.erb_spec.rb +0 -62
  1921. data/spec/views/hyrax/file_sets/_show_characterization_details.html.erb_spec.rb +0 -29
  1922. data/spec/views/hyrax/file_sets/_single_use_links.html.erb_spec.rb +0 -34
  1923. data/spec/views/hyrax/file_sets/_versioning.html.erb_spec.rb +0 -16
  1924. data/spec/views/hyrax/file_sets/media_display/_audio.html.erb_spec.rb +0 -29
  1925. data/spec/views/hyrax/file_sets/media_display/_default.html.erb_spec.rb +0 -29
  1926. data/spec/views/hyrax/file_sets/media_display/_video.html.erb_spec.rb +0 -29
  1927. data/spec/views/hyrax/file_sets/show.html.erb_spec.rb +0 -47
  1928. data/spec/views/hyrax/file_sets/show.json.jbuilder_spec.rb +0 -27
  1929. data/spec/views/hyrax/homepage/_announcement.html.erb_spec.rb +0 -27
  1930. data/spec/views/hyrax/homepage/_featured_works.html.erb_spec.rb +0 -40
  1931. data/spec/views/hyrax/homepage/_sortable_featured.html.erb_spec.rb +0 -23
  1932. data/spec/views/hyrax/homepage/index.html.erb_spec.rb +0 -129
  1933. data/spec/views/hyrax/leases/index.html.erb_spec.rb +0 -14
  1934. data/spec/views/hyrax/my/_collection_action_menu.html.erb_spec.rb +0 -65
  1935. data/spec/views/hyrax/my/_search_header.html.erb_spec.rb +0 -34
  1936. data/spec/views/hyrax/my/_work_action_menu.html.erb_spec.rb +0 -40
  1937. data/spec/views/hyrax/my/collections/_list_collections.html.erb_spec.rb +0 -109
  1938. data/spec/views/hyrax/my/collections/index.html.erb_spec.rb +0 -34
  1939. data/spec/views/hyrax/my/facet.html.erb_spec.rb +0 -34
  1940. data/spec/views/hyrax/my/works/_list_works.html.erb_spec.rb +0 -30
  1941. data/spec/views/hyrax/my/works/index.html.erb_spec.rb +0 -69
  1942. data/spec/views/hyrax/permissions/confirm.html.erb_spec.rb +0 -15
  1943. data/spec/views/hyrax/single_use_links_viewer/show.html.erb_spec.rb +0 -17
  1944. data/spec/views/hyrax/single_use_links_viewer/single_use_error.html.erb_spec.rb +0 -6
  1945. data/spec/views/hyrax/stats/file.html.erb_spec.rb +0 -48
  1946. data/spec/views/hyrax/uploads/create.json.jbuilder_spec.rb +0 -17
  1947. data/spec/views/hyrax/users/_user_info.html.erb_spec.rb +0 -25
  1948. data/spec/views/hyrax/users/index.html.erb_spec.rb +0 -25
  1949. data/spec/views/hyrax/users/show.html.erb_spec.rb +0 -55
  1950. data/spec/views/layouts/error.html.erb_spec.rb +0 -6
  1951. data/spec/views/pages/edit.html.erb_spec.rb +0 -27
  1952. data/spec/views/pages/show.html.erb_spec.rb +0 -17
  1953. data/spec/views/records/edit_fields/_alt_title.html.erb_spec.rb +0 -26
  1954. data/spec/views/records/edit_fields/_based_near.html.erb_spec.rb +0 -20
  1955. data/spec/views/records/edit_fields/_description.html.erb_spec.rb +0 -67
  1956. data/spec/views/records/edit_fields/_language.html.erb_spec.rb +0 -20
  1957. data/spec/views/records/edit_fields/_subject.html.erb_spec.rb +0 -20
  1958. data/spec/views/records/edit_fields/_title.html.erb_spec.rb +0 -24
  1959. data/spec/views/shared/select_work_type_modal.html.erb_spec.rb +0 -51
  1960. data/spec/wings/active_fedora_converter_spec.rb +0 -166
  1961. data/spec/wings/converter_value_mapper_spec.rb +0 -23
  1962. data/spec/wings/hydra/pcdm/models/concerns/collection_valkyrie_behavior_spec.rb +0 -41
  1963. data/spec/wings/hydra/pcdm/models/concerns/object_valkyrie_behavior_spec.rb +0 -19
  1964. data/spec/wings/hydra/pcdm/models/concerns/pcdm_valkyrie_behavior_spec.rb +0 -442
  1965. data/spec/wings/hydra/works/models/concerns/collection_valkyrie_behavior_spec.rb +0 -22
  1966. data/spec/wings/hydra/works/models/concerns/file_set_valkyrie_behavior_spec.rb +0 -90
  1967. data/spec/wings/hydra/works/models/concerns/work_valkyrie_behavior_spec.rb +0 -218
  1968. data/spec/wings/model_transformer_spec.rb +0 -343
  1969. data/spec/wings/models/concerns/collection_behavior_spec.rb +0 -120
  1970. data/spec/wings/services/file_metadata_builder_spec.rb +0 -39
  1971. data/spec/wings/services/id_converter_service_spec.rb +0 -24
  1972. data/spec/wings/transformer_value_mapper_spec.rb +0 -60
  1973. data/spec/wings/valkyrie/metadata_adapter_spec.rb +0 -10
  1974. data/spec/wings/valkyrie/persister_spec.rb +0 -562
  1975. data/spec/wings/valkyrie/query_service_spec.rb +0 -458
  1976. data/spec/wings/valkyrie/resource_factory_spec.rb +0 -32
  1977. data/spec/wings_helper.rb +0 -4
  1978. data/spec/wings_spec.rb +0 -8
@@ -0,0 +1,13 @@
1
+ apiVersion: v1
2
+ kind: Secret
3
+ metadata:
4
+ name: {{ include "hyrax.fullname" . }}
5
+ labels:
6
+ {{ include "hyrax.labels" . | indent 4 }}
7
+ type: Opaque
8
+ data:
9
+ SECRET_KEY_BASE: {{ randAlphaNum 20 | b64enc | quote }}
10
+ DATABASE_URL: {{ printf "postgresql://%s:%s@%s/%s?pool=5" ( include "hyrax.postgresql.username" . ) ( include "hyrax.postgresql.password" . ) ( include "hyrax.postgresql.host" . ) ( include "hyrax.postgresql.database" . ) | b64enc }}
11
+ {{- if .Values.redis.enabled }}
12
+ REDIS_PASSWORD: {{ .Values.redis.password | b64enc}}
13
+ {{- end }}
@@ -0,0 +1,15 @@
1
+ apiVersion: v1
2
+ kind: Service
3
+ metadata:
4
+ name: {{ include "hyrax.fullname" . }}
5
+ labels:
6
+ {{- include "hyrax.labels" . | nindent 4 }}
7
+ spec:
8
+ type: {{ .Values.service.type }}
9
+ ports:
10
+ - port: {{ .Values.service.port }}
11
+ targetPort: http
12
+ protocol: TCP
13
+ name: http
14
+ selector:
15
+ {{- include "hyrax.selectorLabels" . | nindent 4 }}
@@ -0,0 +1,12 @@
1
+ {{- if .Values.serviceAccount.create -}}
2
+ apiVersion: v1
3
+ kind: ServiceAccount
4
+ metadata:
5
+ name: {{ include "hyrax.serviceAccountName" . }}
6
+ labels:
7
+ {{- include "hyrax.labels" . | nindent 4 }}
8
+ {{- with .Values.serviceAccount.annotations }}
9
+ annotations:
10
+ {{- toYaml . | nindent 4 }}
11
+ {{- end }}
12
+ {{- end }}
@@ -0,0 +1,15 @@
1
+ apiVersion: v1
2
+ kind: Pod
3
+ metadata:
4
+ name: "{{ include "hyrax.fullname" . }}-test-connection"
5
+ labels:
6
+ {{- include "hyrax.labels" . | nindent 4 }}
7
+ annotations:
8
+ "helm.sh/hook": test-success
9
+ spec:
10
+ containers:
11
+ - name: wget
12
+ image: busybox
13
+ command: ['wget']
14
+ args: ['{{ include "hyrax.fullname" . }}:{{ .Values.service.port }}']
15
+ restartPolicy: Never
@@ -0,0 +1,168 @@
1
+ # Default values for hyrax.
2
+ # This is a YAML-formatted file.
3
+ # Declare variables to be passed into your templates.
4
+
5
+ replicaCount: 1
6
+
7
+ image:
8
+ repository: samveralabs/dassie
9
+ pullPolicy: IfNotPresent
10
+ # Overrides the image tag whose default is the chart appVersion.
11
+ tag: ""
12
+
13
+ # use false to skip the configset management init container
14
+ loadSolrConfigSet: true
15
+ # the host and auth details for an external solr service;
16
+ # ignored if `solr.enabled` is true
17
+ externalSolrHost: ""
18
+ externalSolrUser: ""
19
+ externalSolrPassword: ""
20
+ externalSolrCollection: "hyrax"
21
+
22
+ # configuration for an external/existing fcrepo service;
23
+ # ignored if `fcrepo.enabled` is true
24
+ externalFcrepoHost: ""
25
+ fcrepoBasePathOverride: ""
26
+
27
+ # database configuration for an external postgresql;
28
+ # ignored if `postgresql.enabled` is true
29
+ externalPostgresql: {}
30
+ # username:
31
+ # password:
32
+ # database:
33
+
34
+ embargoRelease:
35
+ enabled: true
36
+ schedule: "0 0 * * *"
37
+ leaseRelease:
38
+ enabled: true
39
+ schedule: "0 0 * * *"
40
+
41
+ imagePullSecrets: []
42
+ nameOverride: ""
43
+ fullnameOverride: ""
44
+
45
+ serviceAccount:
46
+ # Specifies whether a service account should be created
47
+ create: true
48
+ # Annotations to add to the service account
49
+ annotations: {}
50
+ # The name of the service account to use.
51
+ # If not set and create is true, a name is generated using the fullname template
52
+ name: ""
53
+
54
+ podAnnotations: {}
55
+
56
+ podSecurityContext: {}
57
+ # fsGroup: 2000
58
+
59
+ securityContext: {}
60
+ # capabilities:
61
+ # drop:
62
+ # - ALL
63
+ # readOnlyRootFilesystem: true
64
+ # runAsNonRoot: true
65
+ # runAsUser: 1000
66
+
67
+ service:
68
+ type: ClusterIP
69
+ port: 80
70
+
71
+ ingress:
72
+ enabled: false
73
+ annotations: {}
74
+ # kubernetes.io/ingress.class: nginx
75
+ # kubernetes.io/tls-acme: "true"
76
+ hosts:
77
+ - host: hyrax.local
78
+ paths: []
79
+ tls: []
80
+
81
+ livenessProbe:
82
+ enabled: true
83
+ # path: "/healthz"
84
+ # initialDelaySeconds: 0
85
+ # periodSeconds: 10
86
+ # timeoutSeconds: 10
87
+ # failureThreshold: 3
88
+ # successThreshold: 1
89
+
90
+ readinessProbe:
91
+ enabled: true
92
+ # path: "/healthz"
93
+ # initialDelaySeconds: 5
94
+ # periodSeconds: 10
95
+ # timeoutSeconds: 5
96
+ # failureThreshold: 6
97
+ # successThreshold: 1
98
+
99
+ resources: {}
100
+
101
+ fcrepo:
102
+ enabled: true
103
+ externalDatabaseUsername: "hyrax"
104
+ servicePort: 8080
105
+ postgresql:
106
+ enabled: false
107
+ image:
108
+ repository: bitnami/postgresql
109
+ tag: 12.3.0
110
+
111
+ memcached:
112
+ enabled: false
113
+
114
+ postgresql:
115
+ enabled: true
116
+ image:
117
+ repository: bitnami/postgresql
118
+ tag: 12.3.0
119
+ postgresqlUsername: hyrax
120
+ postgresqlPassword: hyrax_pass
121
+ postgresqlDatabase: hyrax
122
+ servicePort: 5432
123
+ # cpu: 1000m
124
+ # memory: 1Gi
125
+ # persistence:
126
+ # size: 10Gi
127
+
128
+ redis:
129
+ enabled: true
130
+ password: mysecret
131
+
132
+ solr:
133
+ enabled: true
134
+ image:
135
+ repository: bitnami/solr
136
+ tag: 8.8.1
137
+ authentication:
138
+ enabled: true
139
+ adminUsername: admin
140
+ adminPassword: admin
141
+ coreName: hyrax
142
+ collection: hyrax
143
+ cloudBootstrap: true
144
+ cloudEnabled: true
145
+ persistence:
146
+ enabled: true
147
+ zookeeper:
148
+ enabled: true
149
+ persistence:
150
+ enabled: true
151
+
152
+ autoscaling:
153
+ enabled: false
154
+ minReplicas: 1
155
+ maxReplicas: 100
156
+ targetCPUUtilizationPercentage: 80
157
+ # targetMemoryUtilizationPercentage: 80
158
+
159
+ global:
160
+ postgresql:
161
+ postgresqlUsername: hyrax
162
+ postgresqlPassword: hyrax_pass
163
+
164
+ nodeSelector: {}
165
+
166
+ tolerations: []
167
+
168
+ affinity: {}
data/config/features.rb CHANGED
@@ -1,3 +1,4 @@
1
+ # frozen_string_literal: true
1
2
  Flipflop.configure do
2
3
  # Strategies will be used in the order listed here.
3
4
  strategy :cookie
@@ -28,12 +29,8 @@ Flipflop.configure do
28
29
  description: "Require an active acceptance of the deposit agreement by checking a checkbox"
29
30
 
30
31
  feature :batch_upload,
31
- default: true,
32
- description: "Enable uploading batches of works"
33
-
34
- feature :analytics_redesign,
35
32
  default: false,
36
- description: "Display new reporting features. *Very Experimental*"
33
+ description: "Enable uploading batches of works"
37
34
 
38
35
  feature :hide_private_items,
39
36
  default: false,
@@ -42,4 +39,8 @@ Flipflop.configure do
42
39
  feature :hide_users_list,
43
40
  default: true,
44
41
  description: "Do not show users list unless user has authenticated."
42
+
43
+ feature :cache_work_iiif_manifest,
44
+ default: false,
45
+ description: "Use Rails.cache to cache the JSON document for IIIF manifests"
45
46
  end
@@ -0,0 +1,33 @@
1
+ # frozen_string_literal: true
2
+
3
+ # Add an endpoint at `/healthz` if `OkComputer` is installed.
4
+ # - `healthz` functions as a basic liveness check;
5
+ # - `healthz/{status_name}` checks a specific registered status;
6
+ # - `healthz/all` compiles all registered checks.
7
+ #
8
+ # To install these checks by default, add `gem 'okcomputer'` to your
9
+ # application's `Gemfile`.
10
+ #
11
+ # @see https://github.com/sportngin/okcomputer/
12
+ begin
13
+ OkComputer.mount_at = 'healthz'
14
+
15
+ require 'hyrax/health_checks'
16
+
17
+ OkComputer::Registry.register 'solr', Hyrax::HealthChecks::SolrCheck.new
18
+
19
+ # check cache
20
+ if ENV['MEMCACHED_HOST']
21
+ OkComputer::Registry
22
+ .register 'cache', OkComputer::CacheCheck.new(ENV.fetch('MEMCACHED_HOST'))
23
+ else
24
+ OkComputer::Registry.register 'cache', OkComputer::CacheCheck.new
25
+ end
26
+ rescue NameError => err
27
+ raise(err) unless err.message.include?('OkComputer')
28
+
29
+ Hyrax.logger.info 'OkComputer not installed. ' \
30
+ 'Skipping health endpoint at `/healthz`. ' \
31
+ 'Add `gem "OkComputer"` to your Gemfile if you want to ' \
32
+ 'install default health checks.'
33
+ end
@@ -1,16 +1,9 @@
1
1
  # frozen_string_literal: true
2
- require 'valkyrie/indexing_adapter'
3
- require 'valkyrie/indexing/solr/indexing_adapter'
4
2
 
5
- Rails.application.config.to_prepare do
6
- Valkyrie::IndexingAdapter.register(
7
- Valkyrie::Indexing::Solr::IndexingAdapter.new(
8
- resource_indexer: Valkyrie::Persistence::Solr::CompositeIndexer.new(
9
- Hyrax::ValkyrieIndexers::BaseIndexer
10
- )
11
- # #Hyrax::Indexers::WorkIndexer,
12
- # #Hyrax::Indexers::CollectionIndexer
13
- ),
14
- :solr_index
15
- )
16
- end
3
+ Valkyrie::IndexingAdapter.register(
4
+ Valkyrie::Indexing::Solr::IndexingAdapter.new,
5
+ :solr_index
6
+ )
7
+ Valkyrie::IndexingAdapter.register(
8
+ Valkyrie::Indexing::NullIndexingAdapter.new, :null_index
9
+ )
@@ -0,0 +1,48 @@
1
+ # frozen_string_literal: true
2
+
3
+ Hyrax.publisher.subscribe(Hyrax::Listeners::AclIndexListener.new)
4
+ Hyrax.publisher.subscribe(Hyrax::Listeners::ActiveFedoraAclIndexListener.new)
5
+ Hyrax.publisher.subscribe(Hyrax::Listeners::MetadataIndexListener.new)
6
+ Hyrax.publisher.subscribe(Hyrax::Listeners::BatchNotificationListener.new)
7
+ Hyrax.publisher.subscribe(Hyrax::Listeners::ObjectLifecycleListener.new)
8
+ Hyrax.publisher.subscribe(Hyrax::Listeners::FileSetLifecycleListener.new)
9
+ Hyrax.publisher.subscribe(Hyrax::Listeners::FileSetLifecycleNotificationListener.new)
10
+ Hyrax.publisher.subscribe(Hyrax::Listeners::ProxyDepositListener.new)
11
+ Hyrax.publisher.subscribe(Hyrax::Listeners::WorkflowListener.new)
12
+
13
+ # Publish events from old style Hyrax::Callbacks to trigger the listeners
14
+ # When callbacks are removed and replaced with direct event publication, drop these blocks
15
+ Hyrax.config.callback.set(:after_create_concern, warn: false) do |curation_concern, user|
16
+ Hyrax.publisher.publish('object.deposited', object: curation_concern, user: user)
17
+ Hyrax.publisher.publish('object.metadata.updated', object: curation_concern, user: user)
18
+ end
19
+
20
+ Hyrax.config.callback.set(:after_create_fileset, warn: false) do |file_set, user|
21
+ Hyrax.publisher.publish('file.set.attached', file_set: file_set, user: user)
22
+ Hyrax.publisher.publish('object.metadata.updated', object: file_set, user: user)
23
+ end
24
+
25
+ Hyrax.config.callback.set(:after_revert_content, warn: false) do |file_set, user, revision|
26
+ Hyrax.publisher.publish('file.set.restored', file_set: file_set, user: user, revision: revision)
27
+ Hyrax.publisher.publish('object.metadata.updated', object: file_set, user: user)
28
+ end
29
+
30
+ Hyrax.config.callback.set(:after_update_metadata, warn: false) do |curation_concern, user|
31
+ Hyrax.publisher.publish('object.metadata.updated', object: curation_concern, user: user)
32
+ end
33
+
34
+ Hyrax.config.callback.set(:after_destroy, warn: false) do |id, user|
35
+ Hyrax.publisher.publish('object.deleted', id: id, user: user)
36
+ end
37
+
38
+ Hyrax.config.callback.set(:after_batch_create_success, warn: false) do |user|
39
+ Hyrax.publisher.publish('batch.created', user: user, messages: [], result: :success)
40
+ end
41
+
42
+ Hyrax.config.callback.set(:after_batch_create_failure, warn: false) do |user, messages|
43
+ Hyrax.publisher.publish('batch.created', user: user, messages: messages, result: :failure)
44
+ end
45
+
46
+ Hyrax.config.callback.set(:after_import_url_failure, warn: false) do |file_set, user|
47
+ Hyrax.publisher.publish('file.set.url.imported', file_set: file_set, user: user, result: :failure)
48
+ end
@@ -0,0 +1,16 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'samvera/nesting_indexer'
4
+ require 'hyrax/repository_reindexer'
5
+
6
+ Samvera::NestingIndexer.configure do |config|
7
+ # How many layers of nesting are allowed for collections
8
+ # For maximum_nesting_depth of 3 the following will raise an exception
9
+ # C1 <- C2 <- C3 <- W1
10
+ config.maximum_nesting_depth = 5
11
+ config.adapter = Hyrax::Adapters::NestingIndexAdapter
12
+ config.solr_field_name_for_storing_parent_ids = "nesting_collection__parent_ids_ssim"
13
+ config.solr_field_name_for_storing_ancestors = "nesting_collection__ancestors_ssim"
14
+ config.solr_field_name_for_storing_pathnames = "nesting_collection__pathnames_ssim"
15
+ config.solr_field_name_for_deepest_nested_depth = 'nesting_collection__deepest_nested_depth_isi'
16
+ end
@@ -1,3 +1,4 @@
1
+ # frozen_string_literal: true
1
2
  require 'simple_form'
2
3
  # Use this setup block to configure all options available in SimpleForm.
3
4
  SimpleForm.setup do |config|
@@ -0,0 +1,3 @@
1
+ # frozen_string_literal: true
2
+
3
+ Valkyrie.config.id_string_equality = true
@@ -18,7 +18,7 @@ de:
18
18
  fields:
19
19
  facet:
20
20
  admin_set_sim: Sammlung
21
- collection_type_gid_ssim: Sammlungsart
21
+ collection_type_gid_ssim: Sammlungstyp
22
22
  member_of_collections_ssim: Sammlung
23
23
  resource_type_sim: Ressourcentyp
24
24
  suppressed_bsi: Status
@@ -190,7 +190,7 @@ de:
190
190
  delete:
191
191
  notification: Der Sammlungstyp %{name} wurde gelöscht.
192
192
  edit:
193
- header: Sammlungsart bearbeiten
193
+ header: Sammlungstyp bearbeiten
194
194
  submit: Änderungen speichern
195
195
  errors:
196
196
  no_settings_change_for_admin_sets: Die Einstellungen für den Sammlungstyp können für diesen Typ vom Admin-Set nicht geändert werden
@@ -207,14 +207,14 @@ de:
207
207
  creators:
208
208
  action: Aktion
209
209
  agent_name: Sammlungs-Ersteller
210
- empty: Zu dieser Sammlungsart wurden keine Ersteller hinzugefügt.
210
+ empty: Zu diesem Sammlungstyp wurden keine Ersteller hinzugefügt.
211
211
  help: Ersteller von Sammlungen dieses Typs können eigene Sammlungen erstellen und verwalten.
212
212
  title: Ersteller
213
213
  type: Typ
214
214
  managers:
215
215
  action: Aktion
216
216
  agent_name: Sammlungs-Manager
217
- empty: Dieser Sammlungsart wurden keine Manager hinzugefügt.
217
+ empty: Diesem Sammlungstyp wurden keine Manager hinzugefügt.
218
218
  help: Manager von Sammlungen dieses Typs können Sammlungen bearbeiten, die andere Benutzer erstellt haben, einschließlich Hinzufügen und Entfernen von Arbeiten aus einer Sammlung, Ändern von Sammlungsmetadaten und Löschen von Sammlungen.
219
219
  title: Manager
220
220
  type: Typ
@@ -233,12 +233,12 @@ de:
233
233
  warning: 'Warnung: Diese Einstellungen können nicht geändert werden, nachdem eine Sammlung dieses Typs erstellt wurde.'
234
234
  index:
235
235
  breadcrumb: Sammlungstypen
236
- create_new_button: Erstellen Sie eine neue Sammlungsart
236
+ create_new_button: Erstellen Sie einen neuen Sammlungstyp
237
237
  description: Mit Sammlungstypen können Sie Einstellungen definieren, die Sammlungen steuern. Somit können Sammlungen unterschiedliche Zwecke in Ihrem Repositorium erfüllen. Sie können so viele Sammlungstypen definieren, wie Sie benötigen.
238
238
  header: Sammlungstypen
239
239
  modal:
240
- can_delete_body_html: "<p> Durch das Löschen dieses Sammlumgs-Types werden der Typ und seine Einstellungen dauerhaft aus dem Repository entfernt. Möchten Sie diesen Sammlungstyp wirklich löschen? </p>"
241
- cannot_delete_body_html: "<p> Sie können diesen Sammlungsart nicht löschen, da mindestens eine Sammlung dieses Typs bereits erstellt wurde. </p><p> Um diesen Erfassungstyp zu löschen, stellen Sie zunächst sicher, dass alle Sammlungen dieses Typs gelöscht wurden.</p>"
240
+ can_delete_body_html: "<p> Durch das Löschen dieses Sammlungstypes werden der Typ und seine Einstellungen dauerhaft aus dem Repository entfernt. Möchten Sie diesen Sammlungstyp wirklich löschen? </p>"
241
+ cannot_delete_body_html: "<p> Sie können diesen Sammlungstyp nicht löschen, da mindestens eine Sammlung dieses Typs bereits erstellt wurde. </p><p> Um diesen Erfassungstyp zu löschen, stellen Sie zunächst sicher, dass alle Sammlungen dieses Typs gelöscht wurden.</p>"
242
242
  header_can_delete: Sammlungstyp löschen?
243
243
  header_cannot_delete: Sammlungstyp kann nicht gelöscht werden
244
244
  view_collections: Sammlungen dieses Typs anzeigen
@@ -272,7 +272,7 @@ de:
272
272
  notifications: Benachrichtigungen
273
273
  pages: Seiten
274
274
  profile: Profil
275
- repository_objects: Inhalt Repositorium
275
+ repository_objects: Inhalt des Repositoriums
276
276
  settings: Einstellungen
277
277
  statistics: Statistik
278
278
  tasks: Aufgaben
@@ -283,7 +283,7 @@ de:
283
283
  workflow_review: Review-Rückmeldung
284
284
  workflow_roles: Workflow-Rollen
285
285
  works: Arbeiten
286
- works_listing: Works-Auflistung
286
+ works_listing: Auflistung der Arbeiten
287
287
  stats:
288
288
  deposited_form:
289
289
  end_label: Ende [Voreinstellung]
@@ -355,13 +355,17 @@ de:
355
355
  table_attribute_name: Attributname
356
356
  table_heading_attributes: Attribute
357
357
  table_values: Wert
358
- visibility: Sichtweite
358
+ visibility: Sichtbarbeit
359
359
  citations:
360
360
  citations: Zitate
361
361
  endnote: EndNote
362
362
  header: 'Zitate:'
363
363
  mendeley: Mendeley
364
364
  zotero: Zotero
365
+ currently_shared:
366
+ currently_sharing: Derzeit geteilt mit
367
+ table_title_access: Zugriffsebene
368
+ table_title_user: Person / Gruppe
365
369
  file_manager:
366
370
  back_to: Zurück zu
367
371
  toolbar: Symbolleiste
@@ -411,12 +415,13 @@ de:
411
415
  form_permission_under_embargo:
412
416
  help_html: "<strong>Diese Arbeit ist unter Embargo.</strong> Hier können Sie die Einstellungen des Embargos ändern, oder Sie können den %{edit_link} besuchen, um ihn zu deaktivieren."
413
417
  legend_html: Sichtbarkeit <small>Wer sollte in der Lage sein, diesen Inhalt anzusehen oder herunterzuladen?</small>
414
- management_page: Embargo Management Seite
418
+ management_page: Embargo-Management-Seite
415
419
  form_permission_under_lease:
416
420
  help_html: "<strong>Diese Arbeit ist verleast.</strong> Hier können Sie die Einstellungen des Leasingvertrages ändern oder den %{edit_link} besuchen, um ihn zu deaktivieren."
417
421
  legend_html: Sichtbarkeit <small>Wer soll in der Lage sein, diesen Inhalt anzusehen oder herunterzuladen?</small>
418
422
  management_page: Leasing-Management-Seite
419
423
  form_progress:
424
+ proxy_depositors: Proxy-Deponent - Wählen Sie den Benutzer aus, in dessen Namen Sie Arbeiten einstellen
420
425
  required_agreement: Deponierungsvereinbarung zustimmen
421
426
  required_descriptions: Beschreiben Sie Ihre Arbeit
422
427
  required_files: Dateien hinzufügen
@@ -433,12 +438,12 @@ de:
433
438
  access_type_to_grant: Zu gewährende Zugriffsart
434
439
  account_label_without_suffix: "%{account_label} (ohne den Teil %{suffix})"
435
440
  add_sharing: Hinzufügen von individuellen Freigaben
436
- add_this_group: Fügen Sie <span class = "sr-only"> diese Gruppe hinzu </ span>
441
+ add_this_group_html: Fügen Sie <span class = "sr-only"> diese Gruppe hinzu </ span>
437
442
  currently_sharing: Derzeit freigegeben für
438
- depositor: Einzahler
443
+ depositor: Deponent
439
444
  directions: Unabhängig von den Sichtbarkeitseinstellungen für diese Arbeit können Sie sie auch für andere Benutzer und Gruppen freigeben.
440
445
  group: Gruppe
441
- permissions_save_note: Berechtigungen werden <strong> nicht </ strong> gespeichert, bis die Option & quot; Speichern & quot; Die Taste wird unten auf der Seite gedrückt.
446
+ permissions_save_note_html: Berechtigungen werden <strong> nicht </ strong> gespeichert, bis die Option & quot; Speichern & quot; Die Taste wird unten auf der Seite gedrückt.
442
447
  use_add_button: Verwenden Sie die Schaltfläche "Hinzufügen", um Zugriff auf jeweils eine %{account_label} zu gewähren (diese wird der folgenden Liste hinzugefügt). Wählen Sie den Benutzer nach Name oder %{account_label} \ aus. Wählen Sie dann die Zugriffsebene aus, die Sie gewähren möchten, und klicken Sie auf Add this %{account_label}, um das Hinzufügen der Berechtigung abzuschließen.
443
448
  form_thumbnail:
444
449
  help_html: Wählen Sie die Datei aus, die als Miniaturansicht für diese Arbeit verwendet werden soll.
@@ -448,21 +453,21 @@ de:
448
453
  inspect_work:
449
454
  back_to: Zurück zu
450
455
  entity_id: Mandanten-ID
451
- id: ICH WÜRDE
456
+ id: ID
452
457
  name: Name
453
458
  object_name: Objektname
454
- persistence: Beharrlichkeit
459
+ persistence: Persistenz
455
460
  processing_entity_id: Entitäts-ID wird verarbeitet
456
- proxy_for: Proxy für
461
+ proxy_for: Vertreter für
457
462
  roles: Rollen
458
- state: Zustand
459
- state_name: Name des Bundesstaates
463
+ state: Status
464
+ state_name: Statusname
460
465
  users: Benutzer
461
- workflow: Arbeitsablauf
462
- workflow_comments: Workflow-Kommentare
466
+ workflow: Workflow
467
+ workflow_comments: Workflow Kommentare
463
468
  items:
464
469
  actions: Aktionen
465
- date_uploaded: Datum Hochgeladen
470
+ date_uploaded: Hochladedatum
466
471
  empty: Diese %{type} hat keine Dateien zugeordnet. Klicken Sie auf „Bearbeiten“, um weitere Dateien hinzuzufügen.
467
472
  header: Artikel
468
473
  thumbnail: Miniaturansicht
@@ -492,9 +497,13 @@ de:
492
497
  unfeature: Hervorhebung entfernen
493
498
  social_media:
494
499
  facebook: Facebook
500
+ facebook_share: Auf Facebook teilen
495
501
  google: Google+
502
+ google_share: Auf Google+ teilen
496
503
  tumblr: Tumblr
504
+ tumblr_share: Auf Tumblr teilen
497
505
  twitter: Twitter
506
+ twitter_share: Auf Twitter teilen
498
507
  unauthorized:
499
508
  id: 'ID: %{id}'
500
509
  is_private: Das %{type}, auf das Sie zugreifen wollten, ist privat
@@ -522,21 +531,25 @@ de:
522
531
  title: Dateiname ist der Standardtitel. Bitte geben Sie einen aussagekräftigeren Titel, und Dateinamen werden noch vom System bewahrt.
523
532
  batch_edits:
524
533
  check_all:
525
- select_to_access_selection_options: Wählen Sie, um auf die Auswahloption zuzugreifen
534
+ select_to_access_selection_options: Wählen Sie aus, um auf die Option zuzugreifen
535
+ currently_shared:
536
+ share_batch_with: Batch mit teilen
537
+ table_title_access: Zugriffsebene
538
+ table_title_user: Person / Gruppe
526
539
  delete_selected:
527
540
  button_label: Ausgewählte Löschen
528
541
  deleting_file_from: Das Löschen einer Datei aus %{application_name} ist permanent. Klicken Sie auf OK, um diese Datei von %{application_name} zu löschen, oder auf Abbrechen, um diesen Vorgang abzubrechen
529
542
  edit:
530
- apply_changes_to: 'Änderungen werden angewendet auf: (%{x_number_of} funktioniert)'
543
+ apply_changes_to: 'Änderungen werden angewendet auf: (%{x_number_of} Arbeiten)'
531
544
  batch_edit_descriptions: Stapelbearbeitung von Beschreibungen & nbsp; & nbsp; & nbsp; <small> Klicken Sie unten auf die Beschriftungen, um die Arbeitsbeschreibungen zu bearbeiten. </ Small>
532
- clear_batch: Stapel löschen
545
+ clear_batch: Stapelauswahl löschen
533
546
  descriptions: Beschreibungen
534
547
  descriptions_title: 'Beschreibungen:'
535
548
  permissions: Berechtigungen
536
549
  sharing: Teilen
537
- visibility: Sichtweite
550
+ visibility: Sichtbarkeit
538
551
  batch_uploads:
539
- disabled: Diese Funktion vom Administrator des Repositoriums deaktiviert
552
+ disabled: Diese Funktion wurde vom Administrator des Repositoriums deaktiviert
540
553
  files:
541
554
  button_label: Neue Arbeit hinzufügen
542
555
  instructions: Jede Datei wird in eine separate, neue Arbeit hochgeladen, d.h. somit wird eine Arbeit pro hochgeladener Datei erstellt.
@@ -590,6 +603,7 @@ de:
590
603
  no_visible_works: Die Sammlung ist entweder leer oder enthält keine Gegenstände, auf die Sie zugreifen können.
591
604
  edit:
592
605
  manage_items: Verwalten von Inhalten in dieser Sammlung
606
+ edit_view: Ansicht bearbeiten
593
607
  form:
594
608
  additional_fields: Zusätzliche Felder
595
609
  description: Beschreibungen
@@ -618,6 +632,7 @@ de:
618
632
  buttons:
619
633
  remove_from_collection: Entfernen
620
634
  remove_this_sub_collection: Entfernen
635
+ item_count: Element
621
636
  no_visible_parent_collections: Es gibt keine sichtbaren übergeordneten Sammlungen.
622
637
  no_visible_subcollections: Es gibt keine sichtbaren Untersammlungen.
623
638
  parent_collection_header: Übergeordnete Sammlungen
@@ -644,6 +659,7 @@ de:
644
659
  notice: Bitte benutzen Sie das Kontaktformular, um Anfragen zu diesem System einzureichen. Um ein Problem zu melden, das Sie mit dem System erleben; Um die Unterstützung des Systems anzufordern, oder um ein Feedback zu geben. Weitere Informationen zu diesem System finden Sie auf der Hilfeseite.
645
660
  select_type: Wählen Sie einen Anfragen-Typ aus
646
661
  subject_label: Betreff
662
+ title: Kontaktieren sie uns
647
663
  type_label: Anfragentyp
648
664
  content_blocks:
649
665
  cancel: Abbrechen
@@ -785,15 +801,15 @@ de:
785
801
  show_document_list:
786
802
  action: Aktion
787
803
  date_added: Datum hinzugefügt
788
- list_items_in_collection: Liste der Artikel in dieser Sammlung
789
- owner: Inhaber
804
+ list_items_in_collection: Liste der Arbeiten in dieser Sammlung
805
+ owner: Besitzer
790
806
  title: Titel
791
- visibility: Sichtweite
807
+ visibility: Sichtbarkeit
792
808
  show_document_list_menu:
793
- select: Wählen
809
+ select: Auswählen
794
810
  show_document_list_row:
795
811
  creator: 'Schöpfer:'
796
- depositor: 'Einzahler:'
812
+ depositor: 'Deponent:'
797
813
  edit_access: 'Zugang bearbeiten:'
798
814
  sort_and_per_page:
799
815
  show_par_page_html: Zeige %{select} pro Seite
@@ -873,16 +889,20 @@ de:
873
889
  heading:
874
890
  access: Zugriff
875
891
  action: Aktionen
876
- caption: Liste der Artikel in dieser Sammlung
877
- collection_type: Sammlungsart
892
+ caption: Liste der Arbeiten in dieser Sammlung
893
+ collection:
894
+ visibility: Sichtbarkeit der Sammlung
895
+ collection_type: Sammlungstyp
878
896
  date_modified: Zuletzt bearbeitet
879
- date_uploaded: Hochlade-Datum
897
+ date_uploaded: Hochladedatum
880
898
  highlighted: Hervorgehoben
881
899
  items: Elemente
882
900
  last_modified: Zuletzt bearbeitet
883
901
  title: Titel
884
902
  type: Typ
885
903
  visibility: Sichtbarkeit
904
+ work:
905
+ visibility: Sichtbarkeit der Arbeit
886
906
  highlighted: Meine Hervorhebungen
887
907
  shared: Arbeiten, welche mir freigegeben wurden
888
908
  sr:
@@ -894,6 +914,7 @@ de:
894
914
  press_to: Drücken Sie auf
895
915
  results_per_page: Anzahl der Ergebnisse pro Seite
896
916
  show_label: Zeige alle Details von
917
+ thumbnail: Miniaturansicht
897
918
  works: Ihre Arbeiten
898
919
  your_collections: Ihre Sammlungen
899
920
  your_works: Ihre Werke
@@ -909,9 +930,9 @@ de:
909
930
  profiles:
910
931
  edit_primary:
911
932
  change_picture: <i class = "glyphicon glyphicon-camera"> </ i> Bild ändern
912
- delete_picture: Foto löschen
933
+ delete_picture: Bild löschen
913
934
  delete_picture_data_content: Wenn Sie Ihr Bild vollständig entfernen möchten, aktivieren Sie das Kontrollkästchen und speichern Sie Ihr Profil.
914
- delete_picture_data_original_title: Foto löschen
935
+ delete_picture_data_original_title: Bild löschen
915
936
  facebook_handle: <i class = "fa fa-facebook" aria-hidden = "true"> </ i> Facebook-Handle
916
937
  google_handle: <i class = "fa-fa-google-plus"> </ i> Google+ Handle
917
938
  help_change_picture_type: JPG, GIF oder PNG (weniger als 2 MB)
@@ -985,7 +1006,7 @@ de:
985
1006
  deactivate: Embargo deaktivieren
986
1007
  deactivate_selected: Embargos für Auswahl deaktivieren
987
1008
  missing: Es sind zu diesem Zeitpunkt keine abgelaufenen Embargos vorhanden.
988
- select_all: Wählen Sie Alle
1009
+ select_all: Alle auswählen
989
1010
  table_headers:
990
1011
  release_date: Embargo Erscheinungsdatum
991
1012
  title: Titel
@@ -1021,7 +1042,7 @@ de:
1021
1042
  edit: Bearbeiten
1022
1043
  edit_title: Bearbeite %{file_set}
1023
1044
  header: Wählen Sie eine Aktion
1024
- press_to: drücke um zu
1045
+ press_to: klicke um zu
1025
1046
  versions: Versionen
1026
1047
  versions_title: Vorherige Versionen anzeigen
1027
1048
  asset_deleted_flash:
@@ -1070,8 +1091,6 @@ de:
1070
1091
  save_note_html: Berechtigungen werden <strong>nicht</strong> gespeichert, bis die Schaltfläche „Speichern“ am unteren Rand der Seite gedrückt wird.
1071
1092
  select_group: Wählen Sie eine Gruppe aus
1072
1093
  share_with: Teilen mit
1073
- table_title_access: Zugriffsebene
1074
- table_title_user: Person / Gruppe
1075
1094
  user_search: Nach einem Benutzer suchen
1076
1095
  proxy:
1077
1096
  message: "%{sending_user} hat die Datei %{title} in Ihrem Namen hinterlegt."
@@ -1089,8 +1108,13 @@ de:
1089
1108
  fixity_check: Beständigkeit überprüfen
1090
1109
  not_yet_characterized: Noch nicht charakterisiert
1091
1110
  versioning:
1111
+ choose_file: Neue Dateiversion wählen
1092
1112
  current: Aktuelle Version
1093
1113
  header: Versionen
1114
+ previous: Bisherige
1115
+ remove: Entfernen
1116
+ remove_current_files: Aktuelle Dateien entfernen
1117
+ remove_new_version: Neue Dateiversion entfernen
1094
1118
  restore: Vorherige Version wiederherstellen
1095
1119
  restore_from: Wiederherstellen von
1096
1120
  save: Überarbeitete Version speichern
@@ -1103,6 +1127,7 @@ de:
1103
1127
  admin_sets:
1104
1128
  link: Alle Sammlungen anzeigen
1105
1129
  tab_label: Erforschen Sie Sammlungen
1130
+ thumbnail: Miniaturansicht
1106
1131
  title: Erforschen Sie Sammlungen
1107
1132
  featured_researcher:
1108
1133
  missing: Es wurden keine Forscher vorgestellt.
@@ -1189,6 +1214,10 @@ de:
1189
1214
  single: wurde gespeichert.
1190
1215
  subject: Stapelweises Hochladen abgeschlossen
1191
1216
  title: Dateien erfolgreich hochgeladen
1217
+ models:
1218
+ hyrax/file_set: Dateisatz
1219
+ hyrax/pcdm_collection: Sammlung
1220
+ hyrax/work: Arbeit
1192
1221
  my:
1193
1222
  count:
1194
1223
  collections:
@@ -1198,7 +1227,7 @@ de:
1198
1227
  you_own: "<strong> %{total_count} Sammlungen </ strong>, die Sie im Repository besitzen"
1199
1228
  works:
1200
1229
  in_repo: "<strong> %{total_count} funktioniert </ strong> im Repository"
1201
- works_listing: Works-Auflistung
1230
+ works_listing: Auflistung der Arbeiten
1202
1231
  you_manage: "<strong> %{total_count} funktioniert </ strong>, das Sie im Repository verwalten können"
1203
1232
  you_own: "<strong> %{total_count} funktioniert </ strong>, das Sie im Repository besitzen"
1204
1233
  sort_and_per_page:
@@ -1226,6 +1255,10 @@ de:
1226
1255
  comments: 'Kommentare: %{receiver_comment}'
1227
1256
  message: Ihre Übertragungsanforderung lautete %{status}.
1228
1257
  subject: Eigentümerwechsel %{status}
1258
+ validation:
1259
+ open_transfer: Die offene Übertragung der Arbeit muss geschlossen werden, bevor eine neue erstellt wird
1260
+ sender_is_not_receiver: Geben Sie einen anderen Benutzer an, der die Arbeit erhalten soll
1261
+ valid_username: Muss ein vorhandener Benutzer sein
1229
1262
  proxy_depositor_added:
1230
1263
  grantee_message: "%{grantor} hat Sie als Proxy-Deponent beauftragt"
1231
1264
  grantor_message: Sie haben %{grantee} als Proxy-Deponent zugewiesen
@@ -1244,7 +1277,7 @@ de:
1244
1277
  subject: Einreichung muss überprüft werden
1245
1278
  operations:
1246
1279
  index:
1247
- operations_type: Vorgangsart
1280
+ operations_type: Operationstyp
1248
1281
  status: Status
1249
1282
  title: Operationen
1250
1283
  updated: Aktualisierte
@@ -1257,6 +1290,15 @@ de:
1257
1290
  terms_page: Nutzungsbedingungen
1258
1291
  updated: Seiten aktualisiert.
1259
1292
  passive_consent_to_agreement: Durch das Speichern dieser Arbeit stimme ich der ... zu.
1293
+ permission_levels:
1294
+ edit: Zugriff bearbeiten
1295
+ options:
1296
+ edit: Bearbeiten
1297
+ none: Zugriffsberechtigung wählen
1298
+ read: Lesen/Download
1299
+ owner:
1300
+ edit: Zugriff bearbeiten
1301
+ read: Lesen/Download
1260
1302
  search:
1261
1303
  button:
1262
1304
  html: <span class="glyphicon glyphicon-search"></span> Suchen
@@ -1283,7 +1325,7 @@ de:
1283
1325
  name: Arbeit
1284
1326
  share_button: Arbeit hinzufügen
1285
1327
  single_use_links:
1286
- button: Einweg-Link zur Datei
1328
+ button: Einweglink zur Datei
1287
1329
  copy:
1288
1330
  button: Kopieren
1289
1331
  tooltip: Kopiert!
@@ -1302,7 +1344,7 @@ de:
1302
1344
  key: Schlüssel
1303
1345
  link: Verknüpfung
1304
1346
  no_links: Es wurden keine Links generiert
1305
- title: Einweg-Links
1347
+ title: Einweglinks
1306
1348
  single_use_links_viewer:
1307
1349
  single_use_error:
1308
1350
  help: '%{application_name} konnte den Einweglink nicht finden. Dieser Link ist entweder abgelaufen oder wurde bereits verwendet. Wir entschuldigen uns für die Unannehmlichkeiten. Möglicherweise möchten Sie <a href="/help/"> die Hilfeseite </a> verwenden, um nach Lösungen zu suchen.'
@@ -1340,17 +1382,17 @@ de:
1340
1382
  title: Übertragung des Eigentums von „%{work_title}“
1341
1383
  received:
1342
1384
  accept: Akzeptieren
1343
- accept_the_file_and_allow_the_original_depositor_to_retain_access_and_authorize: Akzeptieren Sie die Datei und gestatten Sie dem ursprünglichen Einleger, den Zugriff zu behalten und den ursprünglichen Einleger als Proxy zu autorisieren, um die Datei in Ihrem Namen zu hinterlegen.
1344
- accept_the_file_and_allow_the_original_depositor_to_retain_access_to_edit_the_file_and_metadata: Akzeptieren Sie die Datei und erlauben Sie dem ursprünglichen Einleger, den Zugriff zum Bearbeiten der Datei und der Metadaten beizubehalten.
1345
- accept_the_file_remove_access_from_the_original_depositor: Akzeptieren Sie die Datei und entfernen Sie den Zugriff vom ursprünglichen Einzahler.
1346
- allow_depositor_to_retain_edit_access: Dem Einzahler erlauben, den Bearbeitungszugriff beizubehalten
1385
+ accept_the_file_and_allow_the_original_depositor_to_retain_access_and_authorize: Akzeptieren Sie die Datei und gestatten Sie dem ursprünglichen Deponenten, den Zugriff zu behalten und den ursprünglichen Deponenten als Verwalter zu autorisieren, um die Datei in Ihrem Namen zu hinterlegen.
1386
+ accept_the_file_and_allow_the_original_depositor_to_retain_access_to_edit_the_file_and_metadata: Akzeptieren Sie die Datei und erlauben Sie dem ursprünglichen Deponeneten, den Zugriff zum Bearbeiten der Datei und der Metadaten beizubehalten.
1387
+ accept_the_file_remove_access_from_the_original_depositor: Akzeptieren Sie die Datei und entfernen Sie den Zugriff vom ursprünglichen Deponenten.
1388
+ allow_depositor_to_retain_edit_access: Dem Deponeneten erlauben, den Bearbeitungszugriff beizubehalten
1347
1389
  are_you_sure_you_want_to_reject_this_request: Möchten Sie diese Anfrage wirklich ablehnen?
1348
- authorize_depositor_as_proxy: Bevollmächtigen Sie den Einzahler als Stellvertreter
1390
+ authorize_depositor_as_proxy: Bevollmächtigen Sie den Deponeneten als Vertreter
1349
1391
  comments: Bemerkungen
1350
1392
  date: Datum
1351
1393
  from: Von
1352
1394
  reject: Ablehnen
1353
- remove_depositor_access: Einzahlerzugang entfernen
1395
+ remove_depositor_access: Zugriff des Deponenten entfernen
1354
1396
  status: Status
1355
1397
  title: Titel
1356
1398
  sent:
@@ -1390,17 +1432,31 @@ de:
1390
1432
  uploads:
1391
1433
  js_templates:
1392
1434
  display_label: Beschriftung anzeigen
1393
- error: Error
1435
+ error: Fehler
1394
1436
  set_all_to_this_resource_type: Stellen Sie alle auf diesen Ressourcentyp ein
1395
1437
  start: Start
1396
1438
  js_templates_branding:
1397
- alt_text: 'Alt-Text:'
1398
- error: Error
1439
+ alt_text: 'Alternativtext:'
1440
+ error: fehler
1399
1441
  link_url: 'URL verknüpfen:'
1400
1442
  previous: Bisherige
1401
1443
  remove: Löschen
1402
1444
  remove_new_banner: Neues Banner entfernen
1403
1445
  remove_new_logo: Neues Logo entfernen
1446
+ js_templates_versioning:
1447
+ display_label: Label anzeigen
1448
+ error: Fehler
1449
+ options:
1450
+ messages:
1451
+ accept_file_types: Dateityp ist nicht erlaubt
1452
+ max_file_size: Datei ist zu groß
1453
+ max_number_of_files: Maximale Anzahl von Dateien ist überschritten
1454
+ min_file_size: Datei ist zu klein
1455
+ previous: Bisherige
1456
+ remove: Entfernen
1457
+ remove_new_version: Neue Versionsdatei entfernen
1458
+ set_all_to_this_resource_type: Stellen Sie alle auf diesen Ressourcentyp ein
1459
+ start: Start
1404
1460
  user_profile:
1405
1461
  orcid:
1406
1462
  alt: ORCID-Symbol
@@ -1423,13 +1479,13 @@ de:
1423
1479
  user_id: Benutzeridentifikation
1424
1480
  user_name: Nutzername
1425
1481
  users: Benutzer
1426
- works_created: Werke erstellt
1482
+ works_created: Arbeiten erstellt
1427
1483
  left_sidebar:
1428
1484
  view_users: Benutzer anzeigen
1429
1485
  proxies:
1430
- proxies: Proxies
1486
+ proxies: Verwalter
1431
1487
  search_form:
1432
- go: Gehen
1488
+ go: Los
1433
1489
  search_users: Benutzer suchen
1434
1490
  visibility:
1435
1491
  authenticated:
@@ -1451,13 +1507,14 @@ de:
1451
1507
  text: Privat
1452
1508
  restricted_title_attr: Ändern Sie die Sichtbarkeit dieser Ressource
1453
1509
  work_button_row:
1454
- attach_child: Kind anhängen
1510
+ attach_child: Unterarbeit anhängen
1455
1511
  workflow:
1456
1512
  default:
1457
1513
  deposit: Deponieren
1458
1514
  load:
1459
1515
  state_error: 'Der Workflow: %{workflow_name} wurde nicht aktualisiert. Sie entfernen einen Zustand: %{state_name} mit %{entity_count} Entität(en). Ein Zustand darf nicht entfernt werden, während er aktive Entitäten hat!'
1460
1516
  unauthorized: Die Arbeit ist derzeit nicht verfügbar, da der Begutachtungsprozess noch nicht abgeschlossen ist
1517
+ unauthorized_parent: Die Datei ist derzeit nicht verfügbar, da ihre übergeordnete Arbeit den Freigabeprozess noch nicht abgeschlossen hat
1461
1518
  works:
1462
1519
  create:
1463
1520
  after_create_html: Ihre Dateien werden von %{application_name} im Hintergrund verarbeitet. Die von Ihnen angegebenen Metadaten und Zugriffsberechtigungen werden angewendet. Möglicherweise müssen Sie diese Seite aktualisieren, um diese Updates zu sehen.
@@ -1476,6 +1533,7 @@ de:
1476
1533
  relationships: Beziehungen
1477
1534
  share: Freigaben
1478
1535
  visibility_until: bis
1536
+ missing_title: Kein Titel
1479
1537
  progress:
1480
1538
  header: Arbeit speichern
1481
1539
  show:
@@ -1507,7 +1565,7 @@ de:
1507
1565
  assigns_visibility: Sammlungen dieses Typs erlauben, einer neuen Arbeit initiale Sichtbarkeitseinstellungen zuzuweisen
1508
1566
  assigns_workflow: Sammlungen dieses Typs erlauben, Arbeitsabläufe einer neuen Arbeit zuzuweisen
1509
1567
  brandable: Sammlungen dieses Typs dürfen als Marken gekennzeichnet werden
1510
- description: Eine kurze Erklärung des allgemeinen Zwecks dieser Sammlungsart. Benutzer sehen dies, wenn beim Erstellen einer neuen Sammlung mehrere Sammlungstypen zur Auswahl stehen.
1568
+ description: Eine kurze Erklärung des allgemeinen Zwecks dieses Sammlungstyps. Benutzer sehen dies, wenn beim Erstellen einer neuen Sammlung mehrere Sammlungstypen zur Auswahl stehen.
1511
1569
  discoverable: Sammlungen dieses Typs können sichtbar gemacht werden
1512
1570
  nestable: Sammlungen dieses Typs können geschachtelt werden (eine Sammlung kann andere Sammlungen enthalten)
1513
1571
  require_membership: Eine Arbeit muss zu mindestens einer Sammlung dieses Typs gehören
@@ -1550,7 +1608,7 @@ de:
1550
1608
  share_applies_to_new_works: GILT FÜR NEUE ARBEITEN
1551
1609
  title: Typname
1552
1610
  defaults:
1553
- abstract: Abstrakt
1611
+ abstract: Zusammenfassung
1554
1612
  access_right: Zugangsrechte
1555
1613
  admin_set_id: Admin-Set
1556
1614
  based_near: Ort