hyrax 3.0.0.pre.rc2 → 3.0.0.pre.rc3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (514) hide show
  1. checksums.yaml +4 -4
  2. data/.circleci/config.yml +5 -5
  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 +69 -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 +58 -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 +9 -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 +12 -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 +14 -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 +11 -0
  237. data/.env +26 -0
  238. data/.github/CODE_OF_CONDUCT.md +4 -4
  239. data/.github/CONTRIBUTING.md +1 -1
  240. data/.github/SUPPORT.md +13 -1
  241. data/.gitignore +1 -1
  242. data/.regen +1 -1
  243. data/.rubocop.yml +1 -0
  244. data/.rubocop_fixme.yml +4 -0
  245. data/CODE_OF_CONDUCT.md +4 -4
  246. data/CONTAINERS.md +148 -0
  247. data/CONTRIBUTING.md +1 -1
  248. data/Dockerfile +75 -0
  249. data/Gemfile +26 -35
  250. data/README.md +61 -288
  251. data/app/actors/hyrax/actors/attach_members_actor.rb +7 -5
  252. data/app/actors/hyrax/actors/base_actor.rb +0 -1
  253. data/app/actors/hyrax/actors/create_with_files_ordered_members_actor.rb +28 -28
  254. data/app/actors/hyrax/actors/create_with_remote_files_actor.rb +2 -3
  255. data/app/actors/hyrax/actors/create_with_remote_files_ordered_members_actor.rb +23 -28
  256. data/app/actors/hyrax/actors/default_admin_set_actor.rb +20 -21
  257. data/app/actors/hyrax/actors/file_actor.rb +32 -32
  258. data/app/actors/hyrax/actors/file_set_actor.rb +4 -15
  259. data/app/actors/hyrax/actors/initialize_workflow_actor.rb +8 -0
  260. data/app/actors/hyrax/actors/transfer_request_actor.rb +5 -0
  261. data/app/assets/javascripts/hyrax.js +1 -0
  262. data/app/assets/javascripts/hyrax/skip_to_content.js +15 -0
  263. data/app/assets/stylesheets/hyrax/_usage-stats.scss +1 -1
  264. data/app/authorities/qa/authorities/collections.rb +18 -8
  265. data/app/authorities/qa/authorities/find_works.rb +20 -5
  266. data/app/controllers/concerns/hyrax/collections_controller_behavior.rb +15 -6
  267. data/app/controllers/concerns/hyrax/works_controller_behavior.rb +62 -31
  268. data/app/controllers/hyrax/dashboard/collections_controller.rb +22 -12
  269. data/app/controllers/hyrax/dashboard/works_controller.rb +3 -4
  270. data/app/controllers/hyrax/file_sets_controller.rb +19 -10
  271. data/app/controllers/hyrax/homepage_controller.rb +11 -11
  272. data/app/controllers/hyrax/my/collections_controller.rb +5 -6
  273. data/app/controllers/hyrax/my/highlights_controller.rb +2 -3
  274. data/app/controllers/hyrax/my/shares_controller.rb +2 -3
  275. data/app/controllers/hyrax/my/works_controller.rb +1 -6
  276. data/app/controllers/hyrax/my_controller.rb +10 -2
  277. data/app/controllers/hyrax/permissions_controller.rb +1 -0
  278. data/app/controllers/hyrax/single_use_links_viewer_controller.rb +11 -5
  279. data/app/controllers/hyrax/users_controller.rb +5 -10
  280. data/app/forms/hyrax/forms/failed_submission_form_wrapper.rb +136 -0
  281. data/app/forms/hyrax/forms/resource_form.rb +8 -4
  282. data/app/helpers/hyrax/collections_helper.rb +1 -1
  283. data/app/helpers/hyrax/dashboard_helper_behavior.rb +7 -2
  284. data/app/helpers/hyrax/embargo_helper.rb +5 -1
  285. data/app/helpers/hyrax/hyrax_helper_behavior.rb +10 -5
  286. data/app/helpers/hyrax/lease_helper.rb +5 -1
  287. data/app/indexers/hyrax/pcdm_collection_indexer.rb +21 -0
  288. data/app/indexers/hyrax/resource_indexer.rb +3 -1
  289. data/app/indexers/hyrax/valkyrie_collection_indexer.rb +3 -12
  290. data/app/indexers/hyrax/valkyrie_indexer.rb +45 -17
  291. data/app/indexers/hyrax/valkyrie_work_indexer.rb +16 -0
  292. data/app/jobs/attach_files_to_work_job.rb +3 -41
  293. data/app/jobs/embargo_expiry_job.rb +15 -0
  294. data/app/jobs/event_job.rb +14 -7
  295. data/app/jobs/hyrax/application_job.rb +6 -1
  296. data/app/jobs/import_url_job.rb +11 -5
  297. data/app/jobs/inherit_permissions_job.rb +6 -25
  298. data/app/jobs/lease_expiry_job.rb +15 -0
  299. data/app/models/admin_set.rb +1 -1
  300. data/app/models/concerns/hyrax/ability.rb +192 -21
  301. data/app/models/concerns/hyrax/ability/admin_set_ability.rb +0 -5
  302. data/app/models/concerns/hyrax/collection_behavior.rb +7 -13
  303. data/app/models/concerns/hyrax/permissions/writable.rb +2 -2
  304. data/app/models/concerns/hyrax/solr_document/characterization.rb +35 -2
  305. data/app/models/concerns/hyrax/solr_document_behavior.rb +37 -5
  306. data/app/models/hyrax/change_set.rb +5 -1
  307. data/app/models/hyrax/collection_type.rb +59 -22
  308. data/app/models/hyrax/event.rb +5 -7
  309. data/app/models/hyrax/file_metadata.rb +15 -4
  310. data/app/models/hyrax/pcdm_collection.rb +13 -0
  311. data/app/models/hyrax/uploaded_file.rb +9 -2
  312. data/app/models/hyrax/{active_job_proxy.rb → valkyrie_global_id_proxy.rb} +6 -5
  313. data/app/models/hyrax/virus_scanner.rb +2 -1
  314. data/app/models/hyrax/work.rb +1 -1
  315. data/app/models/sipity.rb +6 -0
  316. data/app/models/sipity/entity.rb +1 -1
  317. data/app/models/sipity/workflow.rb +23 -3
  318. data/app/presenters/hyrax/admin/repository_object_presenter.rb +7 -2
  319. data/app/presenters/hyrax/collection_presenter.rb +1 -1
  320. data/app/presenters/hyrax/file_set_presenter.rb +3 -0
  321. data/app/presenters/hyrax/iiif_manifest_presenter.rb +3 -3
  322. data/app/presenters/hyrax/permission_badge.rb +1 -1
  323. data/app/presenters/hyrax/presenter_factory.rb +0 -2
  324. data/app/presenters/hyrax/select_collection_type_presenter.rb +16 -3
  325. data/app/presenters/hyrax/select_type_presenter.rb +3 -2
  326. data/app/presenters/hyrax/stats_usage_presenter.rb +0 -1
  327. data/app/presenters/hyrax/work_show_presenter.rb +1 -1
  328. data/app/renderers/hyrax/renderers/attribute_renderer.rb +16 -6
  329. data/app/search_builders/hyrax/README.md +3 -3
  330. data/app/search_builders/hyrax/admin_admin_set_member_search_builder.rb +8 -2
  331. data/app/search_builders/hyrax/collection_member_search_builder.rb +21 -7
  332. data/app/search_builders/hyrax/dashboard/managed_search_filters.rb +1 -1
  333. data/app/search_builders/hyrax/dashboard/nested_collections_search_builder.rb +1 -1
  334. data/app/search_builders/hyrax/embargo_search_builder.rb +0 -1
  335. data/app/search_builders/hyrax/filter_by_type.rb +3 -1
  336. data/app/search_builders/hyrax/lease_search_builder.rb +0 -1
  337. data/app/search_builders/hyrax/nested_collections_parent_search_builder.rb +12 -2
  338. data/app/search_builders/hyrax/search_builder.rb +1 -4
  339. data/app/search_builders/hyrax/search_filters.rb +0 -2
  340. data/app/services/hyrax/access_control_list.rb +33 -2
  341. data/app/services/hyrax/adapters/nesting_index_adapter.rb +26 -7
  342. data/app/services/hyrax/admin_set_member_service.rb +18 -4
  343. data/{lib/hyrax/callbacks/registry.rb → app/services/hyrax/callbacks.rb} +23 -0
  344. data/app/services/hyrax/change_content_depositor_service.rb +4 -1
  345. data/app/services/hyrax/collection_member_service.rb +5 -1
  346. data/app/services/hyrax/collection_types/permissions_service.rb +0 -2
  347. data/app/services/hyrax/collections/collection_member_service.rb +44 -64
  348. data/app/services/hyrax/collections/managed_collections_service.rb +15 -2
  349. data/app/services/hyrax/collections/migration_service.rb +9 -3
  350. data/app/services/hyrax/collections/nested_collection_persistence_service.rb +1 -1
  351. data/app/services/hyrax/collections/nested_collection_query_service.rb +39 -19
  352. data/app/services/hyrax/collections/permissions_service.rb +0 -1
  353. data/app/services/hyrax/collections_service.rb +12 -12
  354. data/app/services/hyrax/custom_queries/find_collections_by_type.rb +1 -1
  355. data/app/services/hyrax/custom_queries/navigators/child_collections_navigator.rb +14 -3
  356. data/app/services/hyrax/custom_queries/navigators/child_filesets_navigator.rb +14 -3
  357. data/app/services/hyrax/custom_queries/navigators/child_works_navigator.rb +10 -3
  358. data/app/services/hyrax/custom_queries/navigators/collection_members.rb +1 -0
  359. data/app/services/hyrax/custom_queries/navigators/find_files.rb +3 -0
  360. data/app/services/hyrax/database_migrator.rb +13 -10
  361. data/app/services/hyrax/default_middleware_stack.rb +0 -6
  362. data/app/services/hyrax/ensure_well_formed_admin_set_service.rb +27 -0
  363. data/app/services/hyrax/file_set_fixity_check_service.rb +16 -17
  364. data/app/services/hyrax/file_set_type_service.rb +55 -0
  365. data/app/services/hyrax/graph_exporter.rb +64 -8
  366. data/app/services/hyrax/list_source_exporter.rb +16 -34
  367. data/app/services/hyrax/listeners.rb +22 -0
  368. data/app/services/hyrax/listeners/proxy_deposit_listener.rb +20 -0
  369. data/app/services/hyrax/listeners/workflow_listener.rb +36 -0
  370. data/app/services/hyrax/multiple_membership_checker.rb +2 -1
  371. data/app/services/hyrax/quick_classification_query.rb +2 -3
  372. data/app/services/hyrax/resource_visibility_propagator.rb +1 -1
  373. data/app/services/hyrax/search_service.rb +108 -0
  374. data/app/services/hyrax/simple_schema_loader.rb +3 -1
  375. data/app/services/hyrax/statistics/depositors/summary.rb +0 -1
  376. data/app/services/hyrax/statistics/system_stats.rb +0 -1
  377. data/app/services/hyrax/thumbnail_path_service.rb +6 -1
  378. data/app/services/hyrax/time_service.rb +10 -0
  379. data/app/services/hyrax/versioning_service.rb +4 -28
  380. data/app/services/hyrax/work_uploads_handler.rb +166 -0
  381. data/app/services/hyrax/workflow/action_taken_service.rb +14 -1
  382. data/app/services/hyrax/workflow/grant_edit_to_depositor.rb +3 -1
  383. data/app/services/hyrax/workflow/permission_generator.rb +14 -9
  384. data/app/services/hyrax/workflow/workflow_action_service.rb +1 -1
  385. data/app/services/hyrax/workflow/workflow_factory.rb +12 -10
  386. data/app/services/hyrax/working_directory.rb +0 -1
  387. data/app/services/hyrax/works/managed_works_service.rb +14 -2
  388. data/app/views/_controls.html.erb +1 -1
  389. data/app/views/hyrax/admin/collection_types/index.html.erb +1 -1
  390. data/app/views/hyrax/base/_member.html.erb +1 -1
  391. data/app/views/hyrax/base/_representative_media.html.erb +1 -1
  392. data/app/views/hyrax/base/iiif_viewers/_universal_viewer.html.erb +1 -1
  393. data/app/views/hyrax/base/show.html.erb +2 -2
  394. data/app/views/hyrax/batch_select/_add_button.html.erb +1 -1
  395. data/app/views/hyrax/collections/_default_group.html.erb +2 -0
  396. data/app/views/hyrax/collections/show.html.erb +1 -1
  397. data/app/views/hyrax/dashboard/works/_default_group.html.erb +2 -0
  398. data/app/views/hyrax/embargoes/_list_expired_active_embargoes.html.erb +1 -1
  399. data/app/views/hyrax/leases/_list_expired_active_leases.html.erb +2 -1
  400. data/app/views/hyrax/my/works/_default_group.html.erb +2 -0
  401. data/app/views/layouts/hyrax.html.erb +0 -15
  402. data/bin/db-migrate-seed.sh +9 -0
  403. data/bin/db-wait.sh +14 -0
  404. data/bin/hyrax-entrypoint.sh +15 -0
  405. data/chart/fcrepo/.gitignore +2 -0
  406. data/chart/fcrepo/.helmignore +23 -0
  407. data/chart/fcrepo/Chart.yaml +11 -0
  408. data/chart/fcrepo/README.md +50 -0
  409. data/chart/fcrepo/templates/NOTES.txt +21 -0
  410. data/chart/fcrepo/templates/_helpers.tpl +68 -0
  411. data/chart/fcrepo/templates/configmap-env.yaml +19 -0
  412. data/chart/fcrepo/templates/deployment.yaml +109 -0
  413. data/chart/fcrepo/templates/ingress.yaml +41 -0
  414. data/chart/fcrepo/templates/pvc.yaml +20 -0
  415. data/chart/fcrepo/templates/secret.yaml +12 -0
  416. data/chart/fcrepo/templates/service.yaml +15 -0
  417. data/chart/fcrepo/templates/serviceaccount.yaml +12 -0
  418. data/chart/fcrepo/templates/tests/test-connection.yaml +15 -0
  419. data/chart/fcrepo/values.yaml +79 -0
  420. data/chart/hyrax/.gitignore +2 -0
  421. data/chart/hyrax/.helmignore +23 -0
  422. data/chart/hyrax/Chart.yaml +27 -0
  423. data/chart/hyrax/README.md +69 -0
  424. data/chart/hyrax/templates/NOTES.txt +21 -0
  425. data/chart/hyrax/templates/_helpers.tpl +92 -0
  426. data/chart/hyrax/templates/configmap-env.yaml +32 -0
  427. data/chart/hyrax/templates/deployment.yaml +79 -0
  428. data/chart/hyrax/templates/fcrepo-secret.yaml +13 -0
  429. data/chart/hyrax/templates/hpa.yaml +28 -0
  430. data/chart/hyrax/templates/ingress.yaml +41 -0
  431. data/chart/hyrax/templates/secrets.yaml +12 -0
  432. data/chart/hyrax/templates/service.yaml +15 -0
  433. data/chart/hyrax/templates/serviceaccount.yaml +12 -0
  434. data/chart/hyrax/templates/tests/test-connection.yaml +15 -0
  435. data/chart/hyrax/values.yaml +97 -0
  436. data/config/initializers/indexing_adapter_initializer.rb +7 -12
  437. data/config/initializers/listeners.rb +2 -0
  438. data/config/locales/hyrax.en.yml +1 -1
  439. data/config/metadata/basic_metadata.yaml +13 -0
  440. data/db/seeds.rb +20 -0
  441. data/docker-compose.yml +132 -0
  442. data/documentation/developing-your-hyrax-based-app.md +271 -0
  443. data/documentation/legacyREADME.md +336 -0
  444. data/documentation/note-about-versions.md +15 -0
  445. data/hyrax.gemspec +7 -8
  446. data/lib/generators/hyrax/templates/config/initializers/hyrax.rb +4 -6
  447. data/lib/generators/hyrax/templates/config/locales/hyrax.es.yml +1 -1
  448. data/lib/generators/hyrax/templates/db/seeds.rb +16 -14
  449. data/lib/generators/hyrax/templates/uv.html +1 -1
  450. data/lib/generators/hyrax/work_resource/templates/controller.rb.erb +0 -5
  451. data/lib/generators/hyrax/work_resource/templates/form.rb.erb +1 -1
  452. data/lib/generators/hyrax/work_resource/templates/work.html.erb_spec.rb.erb +3 -2
  453. data/lib/hyrax.rb +17 -0
  454. data/lib/hyrax/configuration.rb +340 -200
  455. data/lib/hyrax/event_store.rb +5 -0
  456. data/lib/hyrax/form_fields.rb +1 -1
  457. data/lib/hyrax/indexer.rb +19 -3
  458. data/lib/hyrax/publisher.rb +71 -2
  459. data/lib/hyrax/resource_sync/change_list_writer.rb +1 -1
  460. data/lib/hyrax/resource_sync/resource_list_writer.rb +1 -1
  461. data/lib/hyrax/schema.rb +2 -2
  462. data/lib/hyrax/specs/capybara.rb +98 -0
  463. data/lib/hyrax/specs/clamav.rb +15 -0
  464. data/lib/hyrax/specs/disable_animations_in_test_environment.rb +53 -0
  465. data/lib/hyrax/specs/engine_routes.rb +11 -0
  466. data/lib/hyrax/specs/shared_specs/change_set.rb +11 -0
  467. data/lib/hyrax/specs/shared_specs/factories/strategies/json_strategy.rb +13 -0
  468. data/lib/hyrax/specs/shared_specs/factories/strategies/valkyrie_resource.rb +0 -11
  469. data/lib/hyrax/specs/shared_specs/hydra_works.rb +6 -0
  470. data/lib/hyrax/specs/shared_specs/indexers.rb +22 -5
  471. data/lib/hyrax/specs/shared_specs/metadata.rb +64 -0
  472. data/lib/hyrax/specs/spy_listener.rb +52 -26
  473. data/lib/hyrax/transactions/container.rb +13 -1
  474. data/lib/hyrax/transactions/steps/add_file_sets.rb +35 -0
  475. data/lib/hyrax/transactions/steps/save.rb +10 -4
  476. data/lib/hyrax/transactions/steps/save_access_control.rb +29 -0
  477. data/lib/hyrax/transactions/steps/set_default_admin_set.rb +1 -1
  478. data/lib/hyrax/transactions/update_work.rb +3 -1
  479. data/lib/hyrax/transactions/work_create.rb +3 -1
  480. data/lib/hyrax/version.rb +1 -1
  481. data/lib/tasks/collection_type_global_id.rake +22 -0
  482. data/lib/tasks/default_admin_set.rake +5 -0
  483. data/lib/wings.rb +1 -1
  484. data/lib/wings/active_fedora_converter.rb +71 -123
  485. data/lib/wings/active_fedora_converter/default_work.rb +129 -0
  486. data/lib/wings/active_fedora_converter/nested_resource.rb +25 -0
  487. data/lib/wings/attribute_transformer.rb +28 -1
  488. data/lib/wings/converter_value_mapper.rb +70 -3
  489. data/lib/wings/model_registry.rb +4 -3
  490. data/lib/wings/model_transformer.rb +25 -7
  491. data/lib/wings/orm_converter.rb +19 -23
  492. data/lib/wings/services/custom_queries/find_collections_by_type.rb +1 -1
  493. data/lib/wings/services/custom_queries/find_file_metadata.rb +65 -38
  494. data/lib/wings/services/file_converter_service.rb +6 -55
  495. data/lib/wings/services/file_metadata_builder.rb +12 -8
  496. data/lib/wings/setup.rb +56 -9
  497. data/lib/wings/transformer_value_mapper.rb +1 -0
  498. data/lib/wings/valkyrie/metadata_adapter.rb +2 -2
  499. data/lib/wings/valkyrie/persister.rb +13 -14
  500. data/lib/wings/valkyrie/storage.rb +94 -0
  501. data/tasks/benchmark.rake +56 -0
  502. data/template.rb +1 -3
  503. metadata +346 -54
  504. data/lib/hyrax/callbacks.rb +0 -27
  505. data/lib/wings/hydra/pcdm/models/concerns/collection_valkyrie_behavior.rb +0 -28
  506. data/lib/wings/hydra/pcdm/models/concerns/object_valkyrie_behavior.rb +0 -28
  507. data/lib/wings/hydra/pcdm/models/concerns/pcdm_valkyrie_behavior.rb +0 -171
  508. data/lib/wings/hydra/works/models/concerns/collection_valkyrie_behavior.rb +0 -31
  509. data/lib/wings/hydra/works/models/concerns/file_set_valkyrie_behavior.rb +0 -31
  510. data/lib/wings/hydra/works/models/concerns/work_valkyrie_behavior.rb +0 -60
  511. data/lib/wings/models/concerns/collection_behavior.rb +0 -39
  512. data/lib/wings/models/multi_checksum.rb +0 -18
  513. data/lib/wings/services/id_converter_service.rb +0 -15
  514. data/lib/wings/valkyrie/storage/active_fedora.rb +0 -27
@@ -20,7 +20,7 @@ module Wings
20
20
  #
21
21
  # @return [Enumerable<PcdmCollection>]
22
22
  def find_collections_by_type(global_id:)
23
- ::Collection.where(collection_type_gid_ssim: global_id.to_s).map(&:valkyrie_resource)
23
+ ::Collection.where(Hyrax.config.collection_type_index_field.to_sym => global_id.to_s).map(&:valkyrie_resource)
24
24
  end
25
25
  end
26
26
  end
@@ -1,11 +1,11 @@
1
1
  # frozen_string_literal: true
2
- # Custom query override specific to Wings for finding Hydra::PCDM::File and converting to Hyrax::FileMetadata.
3
- # @example
4
- # Hyrax.custom_queries.find_file_metadata_by(id: valkyrie_id, use_valkyrie: true)
5
- # Hyrax.custom_queries.find_file_metadata_by_alternate_identifier(alternate_identifier: id, use_valkyrie: true)
6
- require 'wings/services/file_converter_service'
7
2
  module Wings
8
3
  module CustomQueries
4
+ # Custom query override specific to Wings for finding Hydra::PCDM::File and converting to Hyrax::FileMetadata.
5
+ #
6
+ # @example
7
+ # Hyrax.custom_queries.find_file_metadata_by(id: valkyrie_id, use_valkyrie: true)
8
+ # Hyrax.custom_queries.find_file_metadata_by_alternate_identifier(alternate_identifier: id, use_valkyrie: true)
9
9
  class FindFileMetadata
10
10
  def self.queries
11
11
  [:find_file_metadata_by,
@@ -21,69 +21,96 @@ module Wings
21
21
  attr_reader :query_service
22
22
  delegate :resource_factory, to: :query_service
23
23
 
24
- # WARNING: In general, prefer find_by_alternate_identifier over this
25
- # method.
24
+ ##
25
+ # Find a Hyrax::FileMetadata using a Valkyrie ID,
26
26
  #
27
- # Hyrax uses a shortened noid in place of an id, and this is what is
28
- # stored in ActiveFedora, which is still the storage backend for Hyrax.
27
+ # @param id [Valkyrie::ID, String]
28
+ # @param use_valkyrie [boolean] defaults to true; optionally return
29
+ # ActiveFedora::File objects if false
29
30
  #
30
- # If you do not heed this warning, then switch to Valyrie's Postgres
31
- # MetadataAdapter, but continue passing noids to find_by, you will
32
- # start getting ObjectNotFoundErrors instead of the objects you wanted
31
+ # @return [Hyrax::FileMetadata, Hydra::PCDM::File] - when use_valkyrie is
32
+ # true, returns FileMetadata resource; otherwise, returns ActiveFedora PCDM::File
33
33
  #
34
- # Find a file metadata using a Valkyrie ID, and map it to a Hyrax::FileMetadata or Hydra::PCDM::File, if use_valkyrie is true or false, respectively.
35
- # @param id [Valkyrie::ID, String]
36
- # @param use_valkyrie [boolean] defaults to true; optionally return ActiveFedora::File objects if false
37
- # @return [Hyrax::FileMetadata, Hydra::PCDM::File] - when use_valkyrie is true, returns FileMetadata resource; otherwise, returns ActiveFedora PCDM::File
38
34
  # @raise [Hyrax::ObjectNotFoundError]
39
35
  def find_file_metadata_by(id:, use_valkyrie: true)
40
36
  find_file_metadata_by_alternate_identifier(alternate_identifier: id, use_valkyrie: use_valkyrie)
41
37
  end
42
38
 
43
- # Find a file metadata using an alternate ID, and map it to a Hyrax::FileMetadata or Hydra::PCDM::File, if use_valkyrie is true or false, respectively.
39
+ # Find a Hyrax::FileMetadata using an alternate ID, and map it to a
40
+ #
41
+ #
44
42
  # @param alternate_identifier [Valkyrie::ID, String]
45
- # @param use_valkyrie [boolean] defaults to true; optionally return ActiveFedora::File objects if false
46
- # @return [Hyrax::FileMetadata, Hydra::PCDM::File] - when use_valkyrie is true, returns FileMetadata resource; otherwise, returns ActiveFedora PCDM::File
43
+ # @param use_valkyrie [boolean] defaults to true; optionally return
44
+ # ActiveFedora::File objects if false
45
+ #
46
+ # @return [Hyrax::FileMetadata, Hydra::PCDM::File] - when use_valkyrie is
47
+ # true, returns FileMetadata resource; otherwise, returns ActiveFedora PCDM::File
48
+ #
47
49
  # @raise [Hyrax::ObjectNotFoundError]
48
50
  def find_file_metadata_by_alternate_identifier(alternate_identifier:, use_valkyrie: true)
49
- alternate_identifier = ::Valkyrie::ID.new(alternate_identifier.to_s) if alternate_identifier.is_a?(String)
50
- raise Hyrax::ObjectNotFoundError unless Hydra::PCDM::File.exists?(alternate_identifier.to_s)
51
+ alternate_identifier = ::Valkyrie::ID.new(alternate_identifier)
51
52
  object = Hydra::PCDM::File.find(alternate_identifier.to_s)
52
- return object if use_valkyrie == false
53
- Wings::FileConverterService.af_file_to_resource(af_file: object)
53
+ raise Hyrax::ObjectNotFoundError if object.new_record?
54
+
55
+ if use_valkyrie == false
56
+ warn_about_deprecation
57
+ return object
58
+ end
59
+
60
+ object.valkyrie_resource
54
61
  end
55
62
 
56
- # Find an array of file metadata using Valkyrie IDs, and map them to Hyrax::FileMetadata maintaining order based on given ids
63
+ # Find an array of file metadata using Valkyrie IDs, and map them to
64
+ # Hyrax::FileMetadata maintaining order based on given ids.
65
+ #
66
+ # @note Ignores non-existent ids and ids for non-file metadata resources.
67
+ #
57
68
  # @param ids [Array<Valkyrie::ID, String>]
58
- # @param use_valkyrie [boolean] defaults to true; optionally return ActiveFedora::File objects if false
59
- # @return [Array<Hyrax::FileMetadata, Hydra::PCDM::File>] or empty array if there are no ids or none of the ids map to Hyrax::FileMetadata
60
- # NOTE: Ignores non-existent ids and ids for non-file metadata resources.
69
+ # @param use_valkyrie [boolean] defaults to true; optionally return
70
+ # ActiveFedora::File objects if false
71
+ #
72
+ # @return [Array<Hyrax::FileMetadata, Hydra::PCDM::File>] or empty array
73
+ # if there are no ids or none of the ids map to Hyrax::FileMetadata
61
74
  def find_many_file_metadata_by_ids(ids:, use_valkyrie: true)
62
- results = []
63
- ids.each do |alt_id|
75
+ ids.each_with_object([]) do |alt_id, results|
64
76
  begin
65
- # For Wings, the id and alt_id are the same, so just use alt id querying.
66
- file_metadata = query_service.custom_queries.find_file_metadata_by_alternate_identifier(alternate_identifier: alt_id, use_valkyrie: use_valkyrie)
67
- results << file_metadata
77
+ results << find_file_metadata_by_alternate_identifier(alternate_identifier: alt_id, use_valkyrie: use_valkyrie)
68
78
  rescue Hyrax::ObjectNotFoundError
69
79
  next
70
80
  end
71
81
  end
72
- results
73
82
  end
74
83
 
75
84
  ##
76
- # Find file metadata for files within a resource that have the requested use.
85
+ # Find file metadata for files within a resource that have the requested
86
+ # use.
87
+ #
77
88
  # @param use [RDF::URI] uri for the desired use Type
78
- # @param use_valkyrie [boolean] defaults to true; optionally return ActiveFedora::File objects if false
79
- # @return [Array<Hyrax::FileMetadata, Hydra::PCDM::File>] or empty array if there are no files with the requested use
89
+ # @param use_valkyrie [boolean] defaults to true; optionally return
90
+ # ActiveFedora::File objects if false
91
+ #
92
+ # @return [Array<Hyrax::FileMetadata, Hydra::PCDM::File>] or empty array
93
+ # if there are no files with the requested use
94
+ #
80
95
  # @example
81
96
  # Hyrax.query_service.find_file_metadata_by_use(use: ::RDF::URI("http://pcdm.org/ExtractedText"))
97
+ #
82
98
  def find_many_file_metadata_by_use(resource:, use:, use_valkyrie: true)
83
99
  pcdm_files = find_many_file_metadata_by_ids(ids: resource.file_ids, use_valkyrie: false)
84
100
  pcdm_files.select! { |pcdm_file| pcdm_file.metadata_node.type.include?(use) }
85
- return pcdm_files if use_valkyrie == false
86
- pcdm_files.collect { |pcdm_file| Wings::FileConverterService.af_file_to_resource(af_file: pcdm_file) }
101
+
102
+ if use_valkyrie == false
103
+ warn_about_deprecation
104
+ return pcdm_files
105
+ end
106
+
107
+ pcdm_files.map(&:valkyrie_resource)
108
+ end
109
+
110
+ private
111
+
112
+ def warn_about_deprecation
113
+ Deprecation.warn("use_valkyrie: is deprecated for valkyrie/wings queries")
87
114
  end
88
115
  end
89
116
  end
@@ -1,67 +1,18 @@
1
1
  # frozen_string_literal: true
2
2
  # Conversion service for going between files on a valkyrie resource and files on an active fedora object
3
3
  module Wings
4
+ # @deprecated use generic Wings converters instead.
5
+ # @see ModelTransformer, ActiveFedoraConverter
4
6
  class FileConverterService
5
7
  class << self
6
8
  def af_file_to_resource(af_file:)
7
- return if af_file&.id.blank?
8
- attrs = base_af_file_attributes(af_file: af_file)
9
- attrs = metadata_node_to_attributes(metadata_node: af_file.metadata_node,
10
- attributes: attrs)
11
- Hyrax::FileMetadata.new(attrs)
9
+ Deprecation.warn("Use ModelTransformer.for(af_file) instead.")
10
+ ModelTransformer.for(af_file)
12
11
  end
13
12
 
14
13
  def resource_to_af_file(metadata_resource:)
15
- return if metadata_resource&.alternate_ids.blank?
16
- af_file = Hydra::PCDM::File.new(id: metadata_resource.alternate_ids.first.to_s)
17
- af_file.content = content(metadata_resource)
18
- af_file.original_name = metadata_resource.original_filename.first
19
- af_file.mime_type = metadata_resource.mime_type.first
20
- valkyrie_attributes_to_af_file(attributes: metadata_resource.attributes,
21
- af_file: af_file)
22
- af_file
23
- end
24
-
25
- private
26
-
27
- # extracts attributes that come from the af_file
28
- def base_af_file_attributes(af_file:)
29
- id = ::Valkyrie::ID.new(af_file.id)
30
- { id: id,
31
- alternate_ids: [id],
32
- file_identifiers: [id],
33
- created_at: af_file.create_date,
34
- updated_at: af_file.modified_date,
35
- content: af_file.content,
36
- size: af_file.size,
37
- original_filename: [af_file.original_name],
38
- mime_type: [af_file.mime_type],
39
- type: af_file.metadata_node.type.to_a }
40
- end
41
-
42
- # extracts attributes that come from the metadata_node
43
- def metadata_node_to_attributes(metadata_node:, attributes:)
44
- af_attrs = metadata_node.attributes.dup
45
- af_attrs.delete('id')
46
- af_attrs.each { |k, v| attributes[k.to_sym] = Array(v) unless attributes.key?(k.to_sym) }
47
- attributes
48
- end
49
-
50
- def valkyrie_attributes_to_af_file(attributes:, af_file:)
51
- attributes.each do |k, v|
52
- next if [:id, :content, :type].include? k
53
- mname = (k.to_s + '=').to_sym
54
- if af_file.respond_to? mname
55
- af_file.send(mname, v)
56
- elsif af_file.metadata_node.respond_to? mname
57
- af_file.metadata_node.send(mname, v)
58
- end
59
- end
60
- end
61
-
62
- def content(metadata_resource)
63
- return nil if metadata_resource.content.blank?
64
- metadata_resource.content.first
14
+ Deprecation.warn("Use ActiveFedoraConverter.convert(resource:) instead.")
15
+ ActiveFedoraConverter.convert(resource: metadata_resource)
65
16
  end
66
17
  end
67
18
  end
@@ -1,13 +1,15 @@
1
1
  # frozen_string_literal: true
2
- # TODO: The file_metadata resource and the file_metadata_builder should be in Hyrax as they will be needed for non-wings valkyrie implementations too.
3
2
 
4
3
  module Wings
5
4
  # Stores a file and an associated Hyrax::FileMetadata
5
+ #
6
+ # @deprecated use `Hyrax.storage_adapter` instead
6
7
  class FileMetadataBuilder
7
8
  include Hyrax::Noid
8
9
 
9
10
  attr_reader :storage_adapter, :persister
10
11
  def initialize(storage_adapter:, persister:)
12
+ Deprecation.warn('This class is deprecated; use Wings::Valkyrie::Storage instead.')
11
13
  @storage_adapter = storage_adapter
12
14
  @persister = persister
13
15
  end
@@ -16,18 +18,20 @@ module Wings
16
18
  # @param file_metadata [Hyrax::FileMetadata] the metadata to represent the file
17
19
  # @param file_set [Valkyrie::Resouce, Hydra::Works::FileSet] the associated FileSet # TODO: WINGS - Remove Hydra::Works::FileSet as a potential type when valkyrization is complete.
18
20
  # @return [Hyrax::FileMetadata] the persisted metadata file_metadata that represents the file
21
+ #
22
+ # @deprecated use `Hyrax.storage_adapter` instead
19
23
  def create(io_wrapper:, file_metadata:, file_set:)
24
+ Deprecation.warn('Use storage_adapter.upload, Fedora creates a `FileMetadata` (describedBy) implictly. ' \
25
+ 'Query it with Hyrax.custom_queries.find_file_metadata_by(id: stored_file.id).')
20
26
  io_wrapper = build_file(io_wrapper, file_metadata.type)
21
- file_set.save unless file_set.persisted?
22
- file_metadata.id = ::Valkyrie::ID.new(assign_id)
23
- file_metadata.file_set_id = file_set.id
24
27
  stored_file = storage_adapter.upload(file: io_wrapper,
25
28
  original_filename: io_wrapper.original_filename,
26
29
  content_type: io_wrapper.content_type,
27
- resource: file_metadata,
28
- resource_uri_transformer: Hyrax.config.resource_id_to_uri_transformer)
29
- file_metadata.file_identifiers = [stored_file.id]
30
- attach_file_metadata(file_metadata: file_metadata, file_set: file_set)
30
+ resource: file_set,
31
+ use: Array(file_metadata.type).first,
32
+ id_hint: assign_id)
33
+
34
+ Hyrax.custom_queries.find_file_metadata_by(id: stored_file.id)
31
35
  end
32
36
 
33
37
  # @param file_metadata [Hyrax::FileMetadata] the metadata to represent the file
@@ -1,11 +1,65 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  ActiveFedora::Base.include Wings::Valkyrizable
4
+ ActiveFedora::File.include Wings::Valkyrizable
5
+
6
+ module ActiveTriples
7
+ class NodeConfig
8
+ ##
9
+ # all ActiveTriples nodes are multiple
10
+ #
11
+ # this is a commonly used method on ActiveFedora's node configurations
12
+ # adding the method here gives us a more consistent interface from
13
+ # `ActiveFedora::Base.properties`.
14
+ def multiple?
15
+ true
16
+ end
17
+ end
18
+ end
4
19
 
5
20
  module ActiveFedora
6
21
  def self.model_mapper
7
22
  ActiveFedora::DefaultModelMapper.new(classifier_class: Wings::ActiveFedoraClassifier)
8
23
  end
24
+
25
+ class Base
26
+ def self.supports_property?(property)
27
+ property == :permissions ||
28
+ property.to_s.end_with?('_attributes') ||
29
+ properties.key?(property.to_s) ||
30
+ reflections.key?(property.to_sym)
31
+ end
32
+ end
33
+
34
+ class File
35
+ alias eql? ==
36
+
37
+ def self.supports_property?(property)
38
+ properties.key?(property.to_s)
39
+ end
40
+
41
+ def self.properties
42
+ metadata.properties
43
+ end
44
+ end
45
+
46
+ module Associations
47
+ class ContainerProxy
48
+ delegate :build_or_set, to: :@association
49
+ end
50
+
51
+ class ContainsAssociation
52
+ def build_or_set(attributes, &block)
53
+ if attributes.is_a?(Array)
54
+ attributes.collect { |attr| build_or_set(attr, &block) }
55
+ else
56
+ add_to_target(reflection.build_association(attributes)) do |record|
57
+ yield(record) if block_given?
58
+ end
59
+ end
60
+ end
61
+ end
62
+ end
9
63
  end
10
64
 
11
65
  Valkyrie::MetadataAdapter.register(
@@ -13,16 +67,8 @@ Valkyrie::MetadataAdapter.register(
13
67
  )
14
68
  Valkyrie.config.metadata_adapter = :wings_adapter
15
69
 
16
- if ENV['RAILS_ENV'] == 'test'
17
- Valkyrie::MetadataAdapter.register(
18
- Valkyrie::Persistence::Memory::MetadataAdapter.new, :test_adapter
19
- )
20
- end
21
-
22
70
  Valkyrie::StorageAdapter.register(
23
- Wings::Storage::ActiveFedora
24
- .new(connection: Ldp::Client.new(ActiveFedora.fedora.host), base_path: ActiveFedora.fedora.base_path),
25
- :active_fedora
71
+ Wings::Valkyrie::Storage.new, :active_fedora
26
72
  )
27
73
  Valkyrie.config.storage_adapter = :active_fedora
28
74
 
@@ -47,3 +93,4 @@ Wings::ModelRegistry.register(Hyrax::PcdmCollection, ::Collection)
47
93
  Wings::ModelRegistry.register(Hyrax::FileSet, FileSet)
48
94
  Wings::ModelRegistry.register(Hyrax::Embargo, Hydra::AccessControls::Embargo)
49
95
  Wings::ModelRegistry.register(Hyrax::Lease, Hydra::AccessControls::Lease)
96
+ Wings::ModelRegistry.register(Hyrax::FileMetadata, Hydra::PCDM::File)
@@ -72,6 +72,7 @@ module Wings
72
72
  ##
73
73
  # @return [Enumerable<Object>]
74
74
  def result
75
+ return calling_mapper.for(value.first).result if value.length < 2
75
76
  value.map { |v| calling_mapper.for(v).result }
76
77
  end
77
78
  end
@@ -7,7 +7,7 @@ module Wings
7
7
  @persister ||= Wings::Valkyrie::Persister.new(adapter: self)
8
8
  end
9
9
 
10
- # @return [Class] {Valkyrie::Persistence::Postgres::QueryService}
10
+ # @return [Class] +Valkyrie::Persistence::Postgres::QueryService+
11
11
  def query_service
12
12
  @query_service ||= Wings::Valkyrie::QueryService.new(adapter: self)
13
13
  end
@@ -20,7 +20,7 @@ module Wings
20
20
  end
21
21
  end
22
22
 
23
- # @return [Class] {Valkyrie::Persistence::Postgres::ResourceFactory}
23
+ # @return [Class] +Valkyrie::Persistence::Postgres::ResourceFactory+
24
24
  def resource_factory
25
25
  @resource_factory ||= Wings::Valkyrie::ResourceFactory.new(adapter: self)
26
26
  end
@@ -1,6 +1,12 @@
1
1
  # frozen_string_literal: true
2
2
  module Wings
3
3
  module Valkyrie
4
+ ##
5
+ # A valkyrie persister that aims for data consistency/backwards compatibility with ActiveFedora.
6
+ #
7
+ # The guiding principle of design for this persister is that resources persisted with it should
8
+ # be directly readable by `Hydra::Works`-style ActiveFedora models. It aims to be as complete as
9
+ # possible as a Valkyrie Persister, given that limitation.
4
10
  class Persister
5
11
  attr_reader :adapter
6
12
  extend Forwardable
@@ -16,28 +22,21 @@ module Wings
16
22
  # @param [Valkyrie::Resource] resource
17
23
  # @return [Valkyrie::Resource] the persisted/updated resource
18
24
  def save(resource:)
19
- return save_file(file_metadata: resource) if resource.is_a? Hyrax::FileMetadata
20
25
  af_object = resource_factory.from_resource(resource: resource)
21
26
 
22
27
  check_lock_tokens(af_object: af_object, resource: resource)
23
28
 
24
- af_object.save!
29
+ # the #save! api differs between ActiveFedora::Base and ActiveFedora::File objects,
30
+ # if we get a falsey response, we expect we have a File that has failed to save due
31
+ # to empty content
32
+ af_object.save! ||
33
+ raise(FailedSaveError.new("#{af_object.class}#save! returned non-true. It might be missing required content.", obj: af_object))
34
+
25
35
  resource_factory.to_resource(object: af_object)
26
- rescue ActiveFedora::RecordInvalid => err
36
+ rescue ActiveFedora::RecordInvalid, RuntimeError => err
27
37
  raise FailedSaveError.new(err.message, obj: af_object)
28
38
  end
29
39
 
30
- def save_file(file_metadata:)
31
- # This is a no-op when the file is being created or updated through the FileActor.
32
- # There may be other scenarios where something needs to happen here.
33
- file_metadata
34
-
35
- # TODO: potentially need to...
36
- # find existing af File
37
- # convert file_metadata resource into af File metadata
38
- # save af File
39
- end
40
-
41
40
  # Persists a resource using ActiveFedora
42
41
  # @param [Valkyrie::Resource] resource
43
42
  # @return [Valkyrie::Resource] the persisted/updated resource
@@ -0,0 +1,94 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Wings
4
+ module Valkyrie
5
+ ##
6
+ # This is a Wings storage adapter designed for compatibility with
7
+ # Hydra::Pcdm/Hydra::Works.
8
+ #
9
+ # Where the built-in `Valkyrie::Storage::Fedora` adapter uploads files
10
+ # without LDP containment relationships (via HTTP PUT), this adapter
11
+ # supports adding files to a `/files` container when a `FileSet` is
12
+ # passed as the `resource:` argument.
13
+ #
14
+ # If a non `#file_set?` resource is passed, the logic is very similar to the
15
+ # built-in storage adapter.
16
+ #
17
+ # For use with Hyrax, this adapter defaults to Fedora 4.
18
+ class Storage < ::Valkyrie::Storage::Fedora
19
+ DEFAULT_CTYPE = 'application/octet-stream'
20
+ LINK_HEADER = "<http://www.w3.org/ns/ldp#NonRDFSource>; rel=\"type\""
21
+ FILES_PATH = 'files'
22
+
23
+ attr_reader :sha1
24
+
25
+ def initialize(connection: Ldp::Client.new(ActiveFedora.fedora.host), base_path: ActiveFedora.fedora.base_path, fedora_version: 4)
26
+ @sha1 = fedora_version == 5 ? "sha" : "sha1"
27
+ super
28
+ end
29
+
30
+ def upload(file:, original_filename:, resource:, content_type: DEFAULT_CTYPE, # rubocop:disable Metrics/ParameterLists
31
+ resource_uri_transformer: default_resource_uri_transformer, use: Hydra::PCDM::Vocab::PCDMTerms.File,
32
+ id_hint: 'original', **extra_arguments)
33
+ id = if resource.try(:file_set?)
34
+ upload_with_works(resource: resource, file: file, use: use)
35
+ else
36
+ put_file(file: file,
37
+ original_filename: original_filename,
38
+ resource: resource,
39
+ content_type: content_type,
40
+ resource_uri_transformer: resource_uri_transformer,
41
+ id_hint: id_hint, **extra_arguments)
42
+ end
43
+
44
+ find_by(id: ::Valkyrie::ID.new(id.to_s.sub(/^.+\/\//, PROTOCOL)))
45
+ end
46
+
47
+ private
48
+
49
+ def digest_for(file)
50
+ "#{sha1}=#{Digest::SHA1.file(file)}"
51
+ end
52
+
53
+ def default_resource_uri_transformer
54
+ lambda do |resource, hint|
55
+ id = [CGI.escape(resource.id), FILES_PATH, hint].join('/')
56
+ RDF::URI.new(Hyrax.config.translate_id_to_uri.call(id))
57
+ end
58
+ end
59
+
60
+ ##
61
+ # Create a file with HTTP put; no containers here.
62
+ # @return [String] the identifier of the created file
63
+ def put_file(file:, original_filename:, resource:, content_type:, # rubocop:disable Metrics/ParameterLists
64
+ resource_uri_transformer:, id_hint:, **_extra_arguments)
65
+ identifier = resource_uri_transformer.call(resource, id_hint)
66
+
67
+ connection.http.put do |request|
68
+ request.url identifier
69
+ request.headers['Content-Type'] = content_type
70
+ request.headers['Content-Length'] = (file.try(:size) || file.try(:length)).to_s
71
+ request.headers['Content-Disposition'] = "attachment; filename=\"#{original_filename}\""
72
+ request.headers['digest'] = digest_for(file)
73
+ request.headers['link'] = LINK_HEADER
74
+ request.body = Faraday::UploadIO.new(file, content_type, original_filename)
75
+ end
76
+
77
+ identifier
78
+ end
79
+
80
+ def upload_with_works(resource:, file:, use:)
81
+ file_set = FileSet.find(resource.id.to_s)
82
+
83
+ Hydra::Works::AddFileToFileSet.call(file_set, file, use)
84
+
85
+ created_file = file_set.filter_files_by_type(use).first
86
+ raise(StorageError, "Couldn't find a file we tried to create on #{file_set}") unless created_file
87
+
88
+ Hyrax.config.translate_id_to_uri.call(created_file.id)
89
+ end
90
+ end
91
+ end
92
+
93
+ class StorageError < RuntimeError; end
94
+ end