alchemy_cms 5.2.1 → 6.0.0.pre.b4

Sign up to get free protection for your applications and to get access to all the features.
Files changed (302) hide show
  1. checksums.yaml +4 -4
  2. data/.github/workflows/ci.yml +6 -14
  3. data/.gitignore +0 -1
  4. data/.hound.yml +1 -1
  5. data/.rubocop.yml +46 -4
  6. data/CHANGELOG.md +121 -8
  7. data/Gemfile +4 -2
  8. data/README.md +19 -4
  9. data/Rakefile +37 -23
  10. data/alchemy_cms.gemspec +78 -65
  11. data/app/assets/javascripts/alchemy/admin.js +0 -2
  12. data/app/assets/javascripts/alchemy/alchemy.base.js.coffee +0 -27
  13. data/app/assets/javascripts/alchemy/alchemy.confirm_dialog.js.coffee +2 -1
  14. data/app/assets/javascripts/alchemy/alchemy.dialog.js.coffee +1 -1
  15. data/app/assets/javascripts/alchemy/alchemy.dragndrop.js.coffee +0 -25
  16. data/app/assets/javascripts/alchemy/alchemy.element_editors.js.coffee +1 -1
  17. data/app/assets/javascripts/alchemy/alchemy.elements_window.js.coffee +2 -0
  18. data/app/assets/javascripts/alchemy/alchemy.fixed_elements.js +1 -1
  19. data/app/assets/javascripts/alchemy/alchemy.gui.js.coffee +3 -1
  20. data/app/assets/javascripts/alchemy/alchemy.image_overlay.coffee +1 -1
  21. data/app/assets/javascripts/alchemy/alchemy.link_dialog.js.coffee +40 -27
  22. data/app/assets/javascripts/alchemy/templates/node_folder.hbs +1 -1
  23. data/app/assets/stylesheets/alchemy/_extends.scss +15 -2
  24. data/app/assets/stylesheets/alchemy/admin.scss +1 -1
  25. data/app/assets/stylesheets/alchemy/archive.scss +20 -5
  26. data/app/assets/stylesheets/alchemy/buttons.scss +0 -4
  27. data/app/assets/stylesheets/alchemy/elements.scss +73 -61
  28. data/app/assets/stylesheets/alchemy/fonts.scss +0 -0
  29. data/app/assets/stylesheets/alchemy/images.scss +8 -0
  30. data/app/assets/stylesheets/alchemy/node-select.scss +4 -3
  31. data/app/assets/stylesheets/alchemy/page-select.scss +1 -0
  32. data/app/assets/stylesheets/tinymce/skins/alchemy/fonts/tinymce-small.svg +0 -0
  33. data/app/assets/stylesheets/tinymce/skins/alchemy/fonts/tinymce-small.ttf +0 -0
  34. data/app/assets/stylesheets/tinymce/skins/alchemy/fonts/tinymce-small.woff +0 -0
  35. data/app/assets/stylesheets/tinymce/skins/alchemy/fonts/tinymce.svg +0 -0
  36. data/app/assets/stylesheets/tinymce/skins/alchemy/fonts/tinymce.ttf +0 -0
  37. data/app/assets/stylesheets/tinymce/skins/alchemy/fonts/tinymce.woff +0 -0
  38. data/app/assets/stylesheets/tinymce/skins/alchemy/img/anchor.gif +0 -0
  39. data/app/assets/stylesheets/tinymce/skins/alchemy/img/loader.gif +0 -0
  40. data/app/assets/stylesheets/tinymce/skins/alchemy/img/object.gif +0 -0
  41. data/app/assets/stylesheets/tinymce/skins/alchemy/img/trans.gif +0 -0
  42. data/app/assets/stylesheets/tinymce/skins/alchemy/skin.min.css.scss +0 -0
  43. data/app/controllers/alchemy/admin/attachments_controller.rb +8 -4
  44. data/app/controllers/alchemy/admin/base_controller.rb +5 -7
  45. data/app/controllers/alchemy/admin/elements_controller.rb +59 -34
  46. data/app/controllers/alchemy/admin/essence_audios_controller.rb +30 -0
  47. data/app/controllers/alchemy/admin/essence_files_controller.rb +0 -14
  48. data/app/controllers/alchemy/admin/essence_pictures_controller.rb +8 -79
  49. data/app/controllers/alchemy/admin/essence_videos_controller.rb +33 -0
  50. data/app/controllers/alchemy/admin/ingredients_controller.rb +30 -0
  51. data/app/controllers/alchemy/admin/layoutpages_controller.rb +0 -1
  52. data/app/controllers/alchemy/admin/pages_controller.rb +7 -22
  53. data/app/controllers/alchemy/admin/pictures_controller.rb +56 -17
  54. data/app/controllers/alchemy/admin/resources_controller.rb +84 -10
  55. data/app/controllers/alchemy/api/elements_controller.rb +13 -4
  56. data/app/controllers/alchemy/api/pages_controller.rb +4 -3
  57. data/app/controllers/concerns/alchemy/admin/archive_overlay.rb +13 -3
  58. data/app/controllers/concerns/alchemy/admin/crop_action.rb +26 -0
  59. data/app/decorators/alchemy/element_editor.rb +26 -1
  60. data/app/decorators/alchemy/ingredient_editor.rb +158 -0
  61. data/app/helpers/alchemy/admin/elements_helper.rb +1 -0
  62. data/app/helpers/alchemy/admin/essences_helper.rb +1 -1
  63. data/app/helpers/alchemy/admin/ingredients_helper.rb +42 -0
  64. data/app/helpers/alchemy/elements_block_helper.rb +29 -6
  65. data/app/helpers/alchemy/elements_helper.rb +12 -5
  66. data/app/helpers/alchemy/pages_helper.rb +3 -11
  67. data/app/jobs/alchemy/base_job.rb +11 -0
  68. data/app/jobs/alchemy/publish_page_job.rb +11 -0
  69. data/app/models/alchemy/attachment.rb +24 -7
  70. data/app/models/alchemy/content/factory.rb +23 -27
  71. data/app/models/alchemy/content.rb +1 -6
  72. data/app/models/alchemy/element/definitions.rb +29 -27
  73. data/app/models/alchemy/element/element_contents.rb +131 -122
  74. data/app/models/alchemy/element/element_essences.rb +111 -98
  75. data/app/models/alchemy/element/element_ingredients.rb +184 -0
  76. data/app/models/alchemy/element/presenters.rb +104 -85
  77. data/app/models/alchemy/element.rb +39 -86
  78. data/app/models/alchemy/elements_repository.rb +126 -0
  79. data/app/models/alchemy/essence_audio.rb +12 -0
  80. data/app/models/alchemy/essence_headline.rb +40 -0
  81. data/app/models/alchemy/essence_picture.rb +4 -116
  82. data/app/models/alchemy/essence_richtext.rb +12 -0
  83. data/app/models/alchemy/essence_video.rb +12 -0
  84. data/app/models/alchemy/image_cropper_settings.rb +87 -0
  85. data/app/models/alchemy/ingredient.rb +183 -0
  86. data/app/models/alchemy/ingredient_validator.rb +97 -0
  87. data/app/models/alchemy/ingredients/audio.rb +29 -0
  88. data/app/models/alchemy/ingredients/boolean.rb +21 -0
  89. data/app/models/alchemy/ingredients/datetime.rb +20 -0
  90. data/app/models/alchemy/ingredients/file.rb +30 -0
  91. data/app/models/alchemy/ingredients/headline.rb +42 -0
  92. data/app/models/alchemy/ingredients/html.rb +19 -0
  93. data/app/models/alchemy/ingredients/link.rb +16 -0
  94. data/app/models/alchemy/ingredients/node.rb +23 -0
  95. data/app/models/alchemy/ingredients/page.rb +23 -0
  96. data/app/models/alchemy/ingredients/picture.rb +41 -0
  97. data/app/models/alchemy/ingredients/richtext.rb +57 -0
  98. data/app/models/alchemy/ingredients/select.rb +10 -0
  99. data/app/models/alchemy/ingredients/text.rb +17 -0
  100. data/app/models/alchemy/ingredients/video.rb +33 -0
  101. data/app/models/alchemy/language.rb +0 -11
  102. data/app/models/alchemy/page/fixed_attributes.rb +53 -51
  103. data/app/models/alchemy/page/page_elements.rb +186 -205
  104. data/app/models/alchemy/page/page_naming.rb +66 -64
  105. data/app/models/alchemy/page/page_natures.rb +131 -143
  106. data/app/models/alchemy/page/page_scopes.rb +117 -102
  107. data/app/models/alchemy/page/publisher.rb +50 -0
  108. data/app/models/alchemy/page/url_path.rb +1 -1
  109. data/app/models/alchemy/page.rb +79 -36
  110. data/app/models/alchemy/page_version.rb +58 -0
  111. data/app/models/alchemy/picture/calculations.rb +2 -8
  112. data/app/models/alchemy/picture/preprocessor.rb +2 -0
  113. data/app/models/alchemy/picture/transformations.rb +24 -96
  114. data/app/models/alchemy/picture.rb +17 -39
  115. data/app/models/concerns/alchemy/picture_thumbnails.rb +181 -0
  116. data/app/models/concerns/alchemy/touch_elements.rb +2 -2
  117. data/app/presenters/alchemy/picture_view.rb +88 -0
  118. data/app/serializers/alchemy/element_serializer.rb +5 -0
  119. data/app/serializers/alchemy/page_tree_serializer.rb +3 -2
  120. data/app/services/alchemy/delete_elements.rb +44 -0
  121. data/app/services/alchemy/duplicate_element.rb +56 -0
  122. data/app/views/alchemy/admin/attachments/_archive_overlay.html.erb +2 -3
  123. data/app/views/alchemy/admin/attachments/_file_to_assign.html.erb +3 -3
  124. data/app/views/alchemy/admin/attachments/assign.js.erb +11 -0
  125. data/app/views/alchemy/admin/attachments/index.html.erb +2 -3
  126. data/app/views/alchemy/admin/crop.html.erb +36 -0
  127. data/app/views/alchemy/admin/elements/_element.html.erb +14 -10
  128. data/app/views/alchemy/admin/elements/{_element_footer.html.erb → _footer.html.erb} +0 -0
  129. data/app/views/alchemy/admin/elements/{_new_element_form.html.erb → _form.html.erb} +1 -1
  130. data/app/views/alchemy/admin/elements/{_element_header.html.erb → _header.html.erb} +1 -1
  131. data/app/views/alchemy/admin/elements/{_element_toolbar.html.erb → _toolbar.html.erb} +5 -6
  132. data/app/views/alchemy/admin/elements/create.js.erb +1 -1
  133. data/app/views/alchemy/admin/elements/{trash.js.erb → destroy.js.erb} +2 -6
  134. data/app/views/alchemy/admin/elements/fold.js.erb +2 -2
  135. data/app/views/alchemy/admin/elements/new.html.erb +3 -3
  136. data/app/views/alchemy/admin/elements/order.js.erb +0 -17
  137. data/app/views/alchemy/admin/elements/update.js.erb +3 -2
  138. data/app/views/alchemy/admin/essence_audios/edit.html.erb +7 -0
  139. data/app/views/alchemy/admin/essence_pictures/update.js.erb +0 -1
  140. data/app/views/alchemy/admin/essence_videos/edit.html.erb +11 -0
  141. data/app/views/alchemy/admin/ingredients/_audio_fields.html.erb +4 -0
  142. data/app/views/alchemy/admin/ingredients/_file_fields.html.erb +18 -0
  143. data/app/views/alchemy/admin/ingredients/_picture_fields.html.erb +25 -0
  144. data/app/views/alchemy/admin/ingredients/_video_fields.html.erb +8 -0
  145. data/app/views/alchemy/admin/ingredients/edit.html.erb +4 -0
  146. data/app/views/alchemy/admin/layoutpages/edit.html.erb +0 -5
  147. data/app/views/alchemy/admin/nodes/_node.html.erb +2 -2
  148. data/app/views/alchemy/admin/pages/_anchor_link.html.erb +1 -1
  149. data/app/views/alchemy/admin/pages/_external_link.html.erb +1 -1
  150. data/app/views/alchemy/admin/pages/_file_link.html.erb +1 -1
  151. data/app/views/alchemy/admin/pages/_form.html.erb +0 -6
  152. data/app/views/alchemy/admin/pages/_internal_link.html.erb +1 -1
  153. data/app/views/alchemy/admin/pages/_tinymce_custom_config.html.erb +5 -2
  154. data/app/views/alchemy/admin/pages/_toolbar.html.erb +1 -1
  155. data/app/views/alchemy/admin/pages/edit.html.erb +37 -25
  156. data/app/views/alchemy/admin/pages/index.html.erb +2 -9
  157. data/app/views/alchemy/admin/partials/_remote_search_form.html.erb +2 -4
  158. data/app/views/alchemy/admin/partials/_routes.html.erb +7 -11
  159. data/app/views/alchemy/admin/partials/_search_form.html.erb +9 -0
  160. data/app/views/alchemy/admin/pictures/_archive.html.erb +1 -1
  161. data/app/views/alchemy/admin/pictures/_archive_overlay.html.erb +1 -1
  162. data/app/views/alchemy/admin/pictures/_filter_and_size_bar.html.erb +5 -7
  163. data/app/views/alchemy/admin/pictures/_infos.html.erb +0 -1
  164. data/app/views/alchemy/admin/pictures/_picture_to_assign.html.erb +4 -4
  165. data/app/views/alchemy/admin/pictures/assign.js.erb +10 -0
  166. data/app/views/alchemy/admin/pictures/index.html.erb +8 -3
  167. data/app/views/alchemy/admin/resources/_filter.html.erb +12 -0
  168. data/app/views/alchemy/admin/resources/_filter_bar.html.erb +14 -17
  169. data/app/views/alchemy/admin/resources/_form.html.erb +3 -0
  170. data/app/views/alchemy/admin/resources/_table_header.html.erb +15 -0
  171. data/app/views/alchemy/admin/resources/index.html.erb +3 -11
  172. data/app/views/alchemy/essences/_essence_audio_editor.html.erb +4 -0
  173. data/app/views/alchemy/essences/_essence_audio_view.html.erb +15 -0
  174. data/app/views/alchemy/essences/_essence_file_editor.html.erb +15 -6
  175. data/app/views/alchemy/essences/_essence_headline_editor.html.erb +36 -0
  176. data/app/views/alchemy/essences/_essence_headline_view.html.erb +10 -0
  177. data/app/views/alchemy/essences/_essence_link_editor.html.erb +8 -4
  178. data/app/views/alchemy/essences/_essence_picture_editor.html.erb +27 -12
  179. data/app/views/alchemy/essences/_essence_picture_view.html.erb +3 -3
  180. data/app/views/alchemy/essences/_essence_text_editor.html.erb +12 -4
  181. data/app/views/alchemy/essences/_essence_video_editor.html.erb +4 -0
  182. data/app/views/alchemy/essences/_essence_video_view.html.erb +18 -0
  183. data/app/views/alchemy/essences/shared/_essence_picture_tools.html.erb +21 -16
  184. data/app/views/alchemy/essences/shared/_linkable_essence_tools.html.erb +2 -2
  185. data/app/views/alchemy/ingredients/_audio_editor.html.erb +5 -0
  186. data/app/views/alchemy/ingredients/_audio_view.html.erb +14 -0
  187. data/app/views/alchemy/ingredients/_boolean_editor.html.erb +11 -0
  188. data/app/views/alchemy/ingredients/_boolean_view.html.erb +1 -0
  189. data/app/views/alchemy/ingredients/_datetime_editor.html.erb +17 -0
  190. data/app/views/alchemy/ingredients/_datetime_view.html.erb +9 -0
  191. data/app/views/alchemy/ingredients/_file_editor.html.erb +52 -0
  192. data/app/views/alchemy/ingredients/_file_view.html.erb +17 -0
  193. data/app/views/alchemy/ingredients/_headline_editor.html.erb +30 -0
  194. data/app/views/alchemy/ingredients/_headline_view.html.erb +9 -0
  195. data/app/views/alchemy/ingredients/_html_editor.html.erb +8 -0
  196. data/app/views/alchemy/ingredients/_html_view.html.erb +1 -0
  197. data/app/views/alchemy/ingredients/_link_editor.html.erb +24 -0
  198. data/app/views/alchemy/ingredients/_link_view.html.erb +9 -0
  199. data/app/views/alchemy/ingredients/_node_editor.html.erb +26 -0
  200. data/app/views/alchemy/ingredients/_node_view.html.erb +1 -0
  201. data/app/views/alchemy/ingredients/_page_editor.html.erb +25 -0
  202. data/app/views/alchemy/ingredients/_page_view.html.erb +4 -0
  203. data/app/views/alchemy/ingredients/_picture_editor.html.erb +60 -0
  204. data/app/views/alchemy/ingredients/_picture_view.html.erb +5 -0
  205. data/app/views/alchemy/ingredients/_richtext_editor.html.erb +12 -0
  206. data/app/views/alchemy/ingredients/_richtext_view.html.erb +3 -0
  207. data/app/views/alchemy/ingredients/_select_editor.html.erb +30 -0
  208. data/app/views/alchemy/ingredients/_select_view.html.erb +1 -0
  209. data/app/views/alchemy/ingredients/_text_editor.html.erb +20 -0
  210. data/app/views/alchemy/ingredients/_text_view.html.erb +16 -0
  211. data/app/views/alchemy/ingredients/_video_editor.html.erb +5 -0
  212. data/app/views/alchemy/ingredients/_video_view.html.erb +17 -0
  213. data/app/views/alchemy/ingredients/shared/_link_tools.html.erb +20 -0
  214. data/app/views/alchemy/ingredients/shared/_picture_tools.html.erb +57 -0
  215. data/config/brakeman.ignore +66 -159
  216. data/config/initializers/dragonfly.rb +10 -0
  217. data/config/locales/alchemy.en.yml +108 -64
  218. data/config/routes.rb +17 -22
  219. data/db/migrate/20201207131309_create_page_versions.rb +19 -0
  220. data/db/migrate/20201207135820_add_page_version_id_to_alchemy_elements.rb +76 -0
  221. data/db/migrate/20210205143548_rename_public_on_and_public_until_on_alchemy_pages.rb +10 -0
  222. data/db/migrate/20210326105046_add_sanitized_body_to_alchemy_essence_richtexts.rb +7 -0
  223. data/db/migrate/20210406093436_add_alchemy_essence_headlines.rb +12 -0
  224. data/db/migrate/20210506135919_create_essence_audios.rb +19 -0
  225. data/db/migrate/20210506140258_create_essence_videos.rb +23 -0
  226. data/db/migrate/20210508091432_create_alchemy_ingredients.rb +22 -0
  227. data/lib/alchemy/admin/preview_url.rb +2 -0
  228. data/lib/alchemy/deprecation.rb +1 -1
  229. data/lib/alchemy/dragonfly/processors/auto_orient.rb +18 -0
  230. data/lib/alchemy/dragonfly/processors/crop_resize.rb +35 -0
  231. data/lib/alchemy/elements_finder.rb +14 -60
  232. data/lib/alchemy/essence.rb +1 -2
  233. data/lib/alchemy/forms/builder.rb +21 -1
  234. data/lib/alchemy/hints.rb +8 -4
  235. data/lib/alchemy/page_layout.rb +0 -13
  236. data/lib/alchemy/permissions.rb +30 -29
  237. data/lib/alchemy/resource.rb +13 -3
  238. data/lib/alchemy/resource_filter.rb +40 -0
  239. data/lib/alchemy/resources_helper.rb +1 -16
  240. data/lib/alchemy/tasks/tidy.rb +29 -0
  241. data/lib/alchemy/test_support/essence_shared_examples.rb +0 -1
  242. data/lib/alchemy/test_support/factories/element_factory.rb +8 -8
  243. data/lib/alchemy/test_support/factories/essence_audio_factory.rb +7 -0
  244. data/lib/alchemy/test_support/factories/essence_video_factory.rb +7 -0
  245. data/lib/alchemy/test_support/factories/ingredient_factory.rb +25 -0
  246. data/lib/alchemy/test_support/factories/page_factory.rb +20 -1
  247. data/lib/alchemy/test_support/factories/page_version_factory.rb +23 -0
  248. data/lib/alchemy/test_support/having_crop_action_examples.rb +170 -0
  249. data/lib/alchemy/test_support/having_picture_thumbnails_examples.rb +646 -0
  250. data/lib/alchemy/test_support/shared_ingredient_editor_examples.rb +21 -0
  251. data/lib/alchemy/test_support/shared_ingredient_examples.rb +75 -0
  252. data/lib/alchemy/test_support.rb +2 -11
  253. data/lib/alchemy/tinymce.rb +21 -0
  254. data/lib/alchemy/upgrader/six_point_zero.rb +21 -0
  255. data/lib/alchemy/upgrader/tasks/add_page_versions.rb +33 -0
  256. data/lib/alchemy/upgrader/tasks/ingredients_migrator.rb +62 -0
  257. data/lib/alchemy/version.rb +1 -1
  258. data/lib/alchemy_cms.rb +1 -0
  259. data/lib/generators/alchemy/elements/elements_generator.rb +1 -0
  260. data/lib/generators/alchemy/elements/templates/view.html.erb +9 -0
  261. data/lib/generators/alchemy/elements/templates/view.html.haml +9 -0
  262. data/lib/generators/alchemy/elements/templates/view.html.slim +9 -0
  263. data/lib/generators/alchemy/ingredient/ingredient_generator.rb +38 -0
  264. data/lib/generators/alchemy/ingredient/templates/editor.html.erb +14 -0
  265. data/lib/generators/alchemy/ingredient/templates/model.rb.tt +13 -0
  266. data/lib/generators/alchemy/ingredient/templates/view.html.erb +1 -0
  267. data/lib/generators/alchemy/install/templates/dragonfly.rb.tt +1 -1
  268. data/lib/generators/alchemy/menus/templates/node.html.erb +1 -1
  269. data/lib/generators/alchemy/menus/templates/node.html.haml +1 -1
  270. data/lib/generators/alchemy/menus/templates/node.html.slim +1 -1
  271. data/lib/generators/alchemy/menus/templates/wrapper.html.erb +1 -1
  272. data/lib/generators/alchemy/menus/templates/wrapper.html.haml +1 -1
  273. data/lib/generators/alchemy/menus/templates/wrapper.html.slim +1 -1
  274. data/lib/tasks/alchemy/thumbnails.rake +2 -0
  275. data/lib/tasks/alchemy/tidy.rake +12 -0
  276. data/lib/tasks/alchemy/upgrade.rake +26 -0
  277. data/package/admin.js +11 -1
  278. data/package/src/__tests__/i18n.spec.js +23 -0
  279. data/package/src/file_editors.js +28 -0
  280. data/package/src/i18n.js +1 -3
  281. data/package/src/image_cropper.js +103 -0
  282. data/package/src/image_loader.js +58 -0
  283. data/package/src/node_tree.js +5 -5
  284. data/package/src/picture_editors.js +169 -0
  285. data/package/src/utils/__tests__/ajax.spec.js +20 -12
  286. data/package/src/utils/ajax.js +8 -3
  287. data/package.json +3 -2
  288. data/vendor/assets/javascripts/jquery_plugins/jquery.Jcrop.min.js +3 -18
  289. data/vendor/assets/stylesheets/jquery.Jcrop.min.scss +2 -28
  290. metadata +289 -53
  291. data/app/assets/javascripts/alchemy/alchemy.image_cropper.js.coffee +0 -44
  292. data/app/assets/javascripts/alchemy/alchemy.trash_window.js.coffee +0 -30
  293. data/app/assets/stylesheets/alchemy/trash.scss +0 -8
  294. data/app/controllers/alchemy/admin/trash_controller.rb +0 -44
  295. data/app/views/alchemy/admin/attachments/_filter_bar.html.erb +0 -29
  296. data/app/views/alchemy/admin/essence_files/assign.js.erb +0 -3
  297. data/app/views/alchemy/admin/essence_pictures/assign.js.erb +0 -4
  298. data/app/views/alchemy/admin/essence_pictures/crop.html.erb +0 -48
  299. data/app/views/alchemy/admin/pictures/_filter_bar.html.erb +0 -30
  300. data/app/views/alchemy/admin/trash/clear.js.erb +0 -4
  301. data/app/views/alchemy/admin/trash/index.html.erb +0 -31
  302. data/lib/alchemy/test_support/factories.rb +0 -20
@@ -66,8 +66,8 @@ module Alchemy
66
66
  #
67
67
  # renders +app/views/alchemy/site_layouts/_default_site.html.erb+ for the site named "Default Site".
68
68
  #
69
- def render_site_layout
70
- render current_alchemy_site
69
+ def render_site_layout(&block)
70
+ render current_alchemy_site, &block
71
71
  rescue ActionView::MissingTemplate
72
72
  warning("Site layout for #{current_alchemy_site.try(:name)} not found. Please run `rails g alchemy:site_layouts`")
73
73
  ""
@@ -98,14 +98,6 @@ module Alchemy
98
98
  WARN
99
99
  end
100
100
 
101
- # Returns true if page is in the active branch
102
- def page_active?(page)
103
- Alchemy::Deprecation.warn("page_active? helper is deprecated and will be removed from Alchemy 6.0")
104
-
105
- @_page_ancestors ||= @page.self_and_ancestors.contentpages
106
- @_page_ancestors.include?(page)
107
- end
108
-
109
101
  # Returns page links in a breadcrumb beginning from root to current page.
110
102
  #
111
103
  # === Options:
@@ -127,7 +119,7 @@ module Alchemy
127
119
 
128
120
  pages = options[:page].
129
121
  self_and_ancestors.contentpages.
130
- accessible_by(current_ability, :see)
122
+ published
131
123
 
132
124
  if options.delete(:restricted_only)
133
125
  pages = pages.restricted
@@ -0,0 +1,11 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Alchemy
4
+ class BaseJob < ActiveJob::Base
5
+ # Automatically retry jobs that encountered a deadlock
6
+ # retry_on ActiveRecord::Deadlocked
7
+
8
+ # Most jobs are safe to ignore if the underlying records are no longer available
9
+ # discard_on ActiveJob::DeserializationError
10
+ end
11
+ end
@@ -0,0 +1,11 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Alchemy
4
+ class PublishPageJob < BaseJob
5
+ queue_as :default
6
+
7
+ def perform(page, public_on:)
8
+ Alchemy::Page::Publisher.new(page).publish!(public_on: public_on)
9
+ end
10
+ end
11
+ end
@@ -35,6 +35,10 @@ module Alchemy
35
35
  has_many :elements, through: :contents
36
36
  has_many :pages, through: :elements
37
37
 
38
+ scope :by_file_type, ->(file_type) { where(file_mime_type: file_type) }
39
+ scope :recent, -> { where("#{table_name}.created_at > ?", Time.current - 24.hours).order(:created_at) }
40
+ scope :without_tag, -> { left_outer_joins(:taggings).where(gutentag_taggings: { id: nil }) }
41
+
38
42
  # We need to define this method here to have it available in the validations below.
39
43
  class << self
40
44
  # The class used to generate URLs for attachments
@@ -51,6 +55,26 @@ module Alchemy
51
55
  @_url_class = klass
52
56
  end
53
57
 
58
+ def alchemy_resource_filters
59
+ [
60
+ {
61
+ name: :by_file_type,
62
+ values: distinct.pluck(:file_mime_type).map { |type| [Alchemy.t(type, scope: "mime_types"), type] }.sort_by(&:first),
63
+ },
64
+ {
65
+ name: :misc,
66
+ values: %w(recent last_upload without_tag),
67
+ },
68
+ ]
69
+ end
70
+
71
+ def last_upload
72
+ last_id = Attachment.maximum(:id)
73
+ return Attachment.all unless last_id
74
+
75
+ where(id: last_id)
76
+ end
77
+
54
78
  def searchable_alchemy_resource_attributes
55
79
  %w(name file_name)
56
80
  end
@@ -58,13 +82,6 @@ module Alchemy
58
82
  def allowed_filetypes
59
83
  Config.get(:uploader).fetch("allowed_filetypes", {}).fetch("alchemy/attachments", [])
60
84
  end
61
-
62
- def file_types_for_select
63
- file_types = Alchemy::Attachment.pluck(:file_mime_type).uniq.map do |type|
64
- [Alchemy.t(type, scope: "mime_types"), type]
65
- end
66
- file_types.sort_by(&:first)
67
- end
68
85
  end
69
86
 
70
87
  validates_presence_of :file
@@ -7,7 +7,7 @@ module Alchemy
7
7
  extend ActiveSupport::Concern
8
8
 
9
9
  module ClassMethods
10
- SKIPPED_ATTRIBUTES_ON_COPY = %w(position created_at updated_at creator_id updater_id id)
10
+ SKIPPED_ATTRIBUTES_ON_COPY = %w(position created_at updated_at creator_id updater_id element_id id)
11
11
 
12
12
  # Builds a new content as descriped in the elements.yml file.
13
13
  #
@@ -19,14 +19,14 @@ module Alchemy
19
19
  return super if attributes.empty? || element.nil?
20
20
 
21
21
  definition = element.content_definition_for(attributes[:name])
22
- if definition.blank?
22
+ if definition.blank? && attributes[:essence_type].nil?
23
23
  raise ContentDefinitionError, "No definition found in elements.yml for #{attributes.inspect} and #{element.inspect}"
24
24
  end
25
25
 
26
26
  super(
27
- name: definition[:name],
28
- essence_type: normalize_essence_type(definition[:type]),
29
- element_id: element.id
27
+ name: attributes[:name],
28
+ essence_type: attributes[:essence_type] || normalize_essence_type(definition[:type]),
29
+ element: element
30
30
  ).tap(&:build_essence)
31
31
  end
32
32
 
@@ -53,18 +53,16 @@ module Alchemy
53
53
  # @copy.element_id # => 3
54
54
  #
55
55
  def copy(source, differences = {})
56
- new_content = Content.new(
57
- source.attributes.
56
+ Content.new(
57
+ source.attributes.with_indifferent_access.
58
58
  except(*SKIPPED_ATTRIBUTES_ON_COPY).
59
- merge(differences.with_indifferent_access),
60
- )
61
- new_essence = source.essence.class.create!(
62
- source.essence.attributes.
63
- except(*SKIPPED_ATTRIBUTES_ON_COPY),
64
- )
65
- new_content.tap do |content|
66
- content.essence = new_essence
67
- content.save
59
+ merge(differences.with_indifferent_access)
60
+ ).tap do |new_content|
61
+ new_content.build_essence(
62
+ source.essence.attributes.
63
+ except(*SKIPPED_ATTRIBUTES_ON_COPY)
64
+ )
65
+ new_content.save
68
66
  end
69
67
  end
70
68
 
@@ -117,29 +115,27 @@ module Alchemy
117
115
  #
118
116
  # If an optional type is passed, this type of essence gets created.
119
117
  #
120
- def build_essence(type = essence_type)
121
- self.essence = essence_class(type).new({
122
- ingredient: default_value,
123
- })
118
+ def build_essence(attributes = {})
119
+ self.essence = essence_class.new(
120
+ { content: self, ingredient: default_value }.merge(attributes)
121
+ )
124
122
  end
125
123
 
126
124
  # Creates essence from definition.
127
125
  #
128
126
  # If an optional type is passed, this type of essence gets created.
129
127
  #
130
- def create_essence!(type = nil)
131
- build_essence(type).save!
128
+ def create_essence!(attrs = {})
129
+ build_essence(attrs).save!
132
130
  save!
133
131
  end
134
132
 
135
133
  private
136
134
 
137
- # Returns a class constant from definition's type field.
135
+ # Returns a class constant from definition's type field or the essence_type column
138
136
  #
139
- # If an optional type is passed, this type of essence gets constantized.
140
- #
141
- def essence_class(type = nil)
142
- Content.normalize_essence_type(type || definition["type"]).constantize
137
+ def essence_class
138
+ (essence_type || Content.normalize_essence_type(definition["type"])).constantize
143
139
  end
144
140
  end
145
141
  end
@@ -39,19 +39,14 @@ module Alchemy
39
39
  scope :essence_selects, -> { where(essence_type: "Alchemy::EssenceSelect") }
40
40
  scope :essence_texts, -> { where(essence_type: "Alchemy::EssenceText") }
41
41
  scope :named, ->(name) { where(name: name) }
42
- scope :available, -> { published.not_trashed }
42
+ scope :available, -> { published }
43
43
  scope :published, -> { joins(:element).merge(Element.published) }
44
- scope :not_trashed, -> { joins(:element).merge(Element.not_trashed) }
45
44
  scope :not_restricted, -> { joins(:element).merge(Element.not_restricted) }
46
45
 
47
46
  delegate :restricted?, to: :page, allow_nil: true
48
- delegate :trashed?, to: :element, allow_nil: true
49
- deprecate :trashed?, deprecator: Alchemy::Deprecation
50
47
  delegate :public?, to: :element, allow_nil: true
51
48
 
52
49
  class << self
53
- deprecate :not_trashed, deprecator: Alchemy::Deprecation
54
-
55
50
  # Returns the translated label for a content name.
56
51
  #
57
52
  # Translate it in your locale yml file:
@@ -1,37 +1,39 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Alchemy
4
- # Module concerning element definitions
5
- #
6
- module Element::Definitions
7
- extend ActiveSupport::Concern
4
+ class Element < BaseRecord
5
+ # Module concerning element definitions
6
+ #
7
+ module Definitions
8
+ extend ActiveSupport::Concern
8
9
 
9
- module ClassMethods
10
- # Returns the definitions from elements.yml file.
11
- #
12
- # Place a +elements.yml+ file inside your apps +config/alchemy+ folder to define
13
- # your own set of elements
14
- #
15
- def definitions
16
- ElementDefinition.all
17
- end
10
+ module ClassMethods
11
+ # Returns the definitions from elements.yml file.
12
+ #
13
+ # Place a +elements.yml+ file inside your apps +config/alchemy+ folder to define
14
+ # your own set of elements
15
+ #
16
+ def definitions
17
+ ElementDefinition.all
18
+ end
18
19
 
19
- # Returns one element definition by given name.
20
- #
21
- def definition_by_name(name)
22
- ElementDefinition.get(name)
20
+ # Returns one element definition by given name.
21
+ #
22
+ def definition_by_name(name)
23
+ ElementDefinition.get(name)
24
+ end
23
25
  end
24
- end
25
26
 
26
- # The definition of this element.
27
- #
28
- def definition
29
- if definition = self.class.definition_by_name(name)
30
- definition
31
- else
32
- log_warning "Could not find element definition for #{name}. " \
33
- "Please check your elements.yml file!"
34
- {}
27
+ # The definition of this element.
28
+ #
29
+ def definition
30
+ if definition = self.class.definition_by_name(name)
31
+ definition
32
+ else
33
+ log_warning "Could not find element definition for #{name}. " \
34
+ "Please check your elements.yml file!"
35
+ {}
36
+ end
35
37
  end
36
38
  end
37
39
  end
@@ -1,151 +1,160 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- # Methods concerning contents for elements
4
- #
5
3
  module Alchemy
6
- module Element::ElementContents
7
- # Find first content from element by given name.
8
- def content_by_name(name)
9
- contents_by_name(name).first
10
- end
4
+ class Element < BaseRecord
5
+ # Methods concerning contents for elements
6
+ #
7
+ module ElementContents
8
+ # Find first content from element by given name.
9
+ def content_by_name(name)
10
+ contents_by_name(name).first
11
+ end
11
12
 
12
- # Find first content from element by given essence type.
13
- def content_by_type(essence_type)
14
- contents_by_type(essence_type).first
15
- end
13
+ # Find first content from element by given essence type.
14
+ def content_by_type(essence_type)
15
+ contents_by_type(essence_type).first
16
+ end
16
17
 
17
- # All contents from element by given name.
18
- def contents_by_name(name)
19
- contents.select { |content| content.name == name.to_s }
20
- end
21
- alias_method :all_contents_by_name, :contents_by_name
18
+ # All contents from element by given name.
19
+ def contents_by_name(name)
20
+ contents.select { |content| content.name == name.to_s }
21
+ end
22
+
23
+ alias_method :all_contents_by_name, :contents_by_name
22
24
 
23
- # All contents from element by given essence type.
24
- def contents_by_type(essence_type)
25
- contents.select do |content|
26
- content.essence_type == Content.normalize_essence_type(essence_type)
25
+ # All contents from element by given essence type.
26
+ def contents_by_type(essence_type)
27
+ contents.select do |content|
28
+ content.essence_type == Content.normalize_essence_type(essence_type)
29
+ end
27
30
  end
28
- end
29
- alias_method :all_contents_by_type, :contents_by_type
30
31
 
31
- # Updates all related contents by calling +update_essence+ on each of them.
32
- #
33
- # @param contents_attributes [Hash]
34
- # Hash of contents attributes.
35
- # The keys has to be the #id of the content to update.
36
- # The values a Hash of attribute names and values
37
- #
38
- # @return [Boolean]
39
- # True if +errors+ are blank or +contents_attributes+ hash is nil
40
- #
41
- # == Example
42
- #
43
- # @element.update_contents(
44
- # "1" => {ingredient: "Title"},
45
- # "2" => {link: "https://google.com"}
46
- # )
47
- #
48
- def update_contents(contents_attributes)
49
- return true if contents_attributes.nil?
32
+ alias_method :all_contents_by_type, :contents_by_type
33
+
34
+ # Updates all related contents by calling +update_essence+ on each of them.
35
+ #
36
+ # @param contents_attributes [Hash]
37
+ # Hash of contents attributes.
38
+ # The keys has to be the #id of the content to update.
39
+ # The values a Hash of attribute names and values
40
+ #
41
+ # @return [Boolean]
42
+ # True if +errors+ are blank or +contents_attributes+ hash is nil
43
+ #
44
+ # == Example
45
+ #
46
+ # @element.update_contents(
47
+ # "1" => {ingredient: "Title"},
48
+ # "2" => {link: "https://google.com"}
49
+ # )
50
+ #
51
+ def update_contents(contents_attributes)
52
+ return true if contents_attributes.nil?
53
+
54
+ contents.each do |content|
55
+ content_hash = contents_attributes[content.id.to_s] || next
56
+ content.update_essence(content_hash) || errors.add(:base, :essence_validation_failed)
57
+ end
58
+ errors.blank?
59
+ end
50
60
 
51
- contents.each do |content|
52
- content_hash = contents_attributes[content.id.to_s] || next
53
- content.update_essence(content_hash) || errors.add(:base, :essence_validation_failed)
61
+ # Copy current content's contents to given target element
62
+ def copy_contents_to(element)
63
+ contents.map do |content|
64
+ Content.copy(content, element_id: element.id)
65
+ end
54
66
  end
55
- errors.blank?
56
- end
57
67
 
58
- # Copy current content's contents to given target element
59
- def copy_contents_to(element)
60
- contents.map do |content|
61
- Content.copy(content, element_id: element.id)
68
+ # Returns the content that is marked as rss title.
69
+ #
70
+ # Mark a content as rss title in your +elements.yml+ file:
71
+ #
72
+ # - name: news
73
+ # contents:
74
+ # - name: headline
75
+ # type: EssenceText
76
+ # rss_title: true
77
+ #
78
+ def content_for_rss_title
79
+ content_for_rss_meta("title")
62
80
  end
63
- end
64
81
 
65
- # Returns the content that is marked as rss title.
66
- #
67
- # Mark a content as rss title in your +elements.yml+ file:
68
- #
69
- # - name: news
70
- # contents:
71
- # - name: headline
72
- # type: EssenceText
73
- # rss_title: true
74
- #
75
- def content_for_rss_title
76
- content_for_rss_meta("title")
77
- end
82
+ # Returns the content that is marked as rss description.
83
+ #
84
+ # Mark a content as rss description in your +elements.yml+ file:
85
+ #
86
+ # - name: news
87
+ # contents:
88
+ # - name: body
89
+ # type: EssenceRichtext
90
+ # rss_description: true
91
+ #
92
+ def content_for_rss_description
93
+ content_for_rss_meta("description")
94
+ end
78
95
 
79
- # Returns the content that is marked as rss description.
80
- #
81
- # Mark a content as rss description in your +elements.yml+ file:
82
- #
83
- # - name: news
84
- # contents:
85
- # - name: body
86
- # type: EssenceRichtext
87
- # rss_description: true
88
- #
89
- def content_for_rss_description
90
- content_for_rss_meta("description")
91
- end
96
+ # Returns the array with the hashes for all element contents in the elements.yml file
97
+ def content_definitions
98
+ return nil if definition.blank?
92
99
 
93
- # Returns the array with the hashes for all element contents in the elements.yml file
94
- def content_definitions
95
- return nil if definition.blank?
100
+ definition["contents"]
101
+ end
96
102
 
97
- definition["contents"]
98
- end
103
+ # Returns the definition for given content_name
104
+ def content_definition_for(content_name)
105
+ if content_definitions.blank?
106
+ log_warning "Element #{name} is missing the content definition for #{content_name}"
107
+ nil
108
+ else
109
+ content_definitions.detect { |d| d["name"] == content_name.to_s }
110
+ end
111
+ end
99
112
 
100
- # Returns the definition for given content_name
101
- def content_definition_for(content_name)
102
- if content_definitions.blank?
103
- log_warning "Element #{name} is missing the content definition for #{content_name}"
104
- nil
105
- else
106
- content_definitions.detect { |d| d["name"] == content_name.to_s }
113
+ # Returns an array of all EssenceRichtext contents ids from elements
114
+ #
115
+ # This is used to re-initialize the TinyMCE editor in the element editor.
116
+ #
117
+ def richtext_contents_ids
118
+ # This is not very efficient SQL wise I know, but we need to iterate
119
+ # recursivly through all descendent elements and I don't know how to do this
120
+ # in pure SQL. Anyone with a better idea is welcome to submit a patch.
121
+ ids = contents.select(&:has_tinymce?).collect(&:id)
122
+ expanded_nested_elements = nested_elements.expanded
123
+ if expanded_nested_elements.present?
124
+ ids += expanded_nested_elements.collect(&:richtext_contents_ids)
125
+ end
126
+ ids.flatten
107
127
  end
108
- end
109
128
 
110
- # Returns an array of all EssenceRichtext contents ids from elements
111
- #
112
- # This is used to re-initialize the TinyMCE editor in the element editor.
113
- #
114
- def richtext_contents_ids
115
- # This is not very efficient SQL wise I know, but we need to iterate
116
- # recursivly through all descendent elements and I don't know how to do this
117
- # in pure SQL. Anyone with a better idea is welcome to submit a patch.
118
- ids = contents.select(&:has_tinymce?).collect(&:id)
119
- expanded_nested_elements = nested_elements.expanded
120
- if expanded_nested_elements.present?
121
- ids += expanded_nested_elements.collect(&:richtext_contents_ids)
129
+ # True, if any of the element's contents has essence validations defined.
130
+ def has_validations?
131
+ !contents.detect(&:has_validations?).blank?
122
132
  end
123
- ids.flatten
124
- end
125
133
 
126
- # True, if any of the element's contents has essence validations defined.
127
- def has_validations?
128
- !contents.detect(&:has_validations?).blank?
129
- end
134
+ # All element contents where the essence validation has failed.
135
+ def contents_with_errors
136
+ contents.select(&:essence_validation_failed?)
137
+ end
130
138
 
131
- # All element contents where the essence validation has failed.
132
- def contents_with_errors
133
- contents.select(&:essence_validation_failed?)
134
- end
139
+ private
135
140
 
136
- private
141
+ def content_for_rss_meta(type)
142
+ definition = content_definitions.detect { |c| c["rss_#{type}"] }
143
+ return if definition.blank?
137
144
 
138
- def content_for_rss_meta(type)
139
- definition = content_definitions.detect { |c| c["rss_#{type}"] }
140
- return if definition.blank?
145
+ contents.detect { |content| content.name == definition["name"] }
146
+ end
141
147
 
142
- contents.detect { |content| content.name == definition["name"] }
143
- end
148
+ # creates the contents for this element as described in the elements.yml
149
+ #
150
+ # If ingredients are defined as well no contents get created,
151
+ # ingredients get created instead.
152
+ def create_contents
153
+ return if definition.fetch(:ingredients, []).any?
144
154
 
145
- # creates the contents for this element as described in the elements.yml
146
- def create_contents
147
- definition.fetch("contents", []).each do |attributes|
148
- Content.create(attributes.merge(element: self))
155
+ definition.fetch("contents", []).each do |attributes|
156
+ Content.create(attributes.merge(element: self))
157
+ end
149
158
  end
150
159
  end
151
160
  end