alchemy_cms 5.2.1 → 6.0.0.b1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (261) 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 +81 -9
  7. data/Gemfile +4 -2
  8. data/README.md +5 -2
  9. data/alchemy_cms.gemspec +78 -65
  10. data/app/assets/javascripts/alchemy/admin.js +0 -2
  11. data/app/assets/javascripts/alchemy/alchemy.base.js.coffee +0 -27
  12. data/app/assets/javascripts/alchemy/alchemy.confirm_dialog.js.coffee +2 -1
  13. data/app/assets/javascripts/alchemy/alchemy.dialog.js.coffee +1 -1
  14. data/app/assets/javascripts/alchemy/alchemy.dragndrop.js.coffee +0 -25
  15. data/app/assets/javascripts/alchemy/alchemy.element_editors.js.coffee +1 -1
  16. data/app/assets/javascripts/alchemy/alchemy.elements_window.js.coffee +2 -0
  17. data/app/assets/javascripts/alchemy/alchemy.fixed_elements.js +1 -1
  18. data/app/assets/javascripts/alchemy/alchemy.gui.js.coffee +3 -1
  19. data/app/assets/javascripts/alchemy/alchemy.image_overlay.coffee +1 -1
  20. data/app/assets/javascripts/alchemy/alchemy.link_dialog.js.coffee +40 -27
  21. data/app/assets/javascripts/alchemy/templates/node_folder.hbs +1 -1
  22. data/app/assets/stylesheets/alchemy/admin.scss +1 -1
  23. data/app/assets/stylesheets/alchemy/archive.scss +4 -4
  24. data/app/assets/stylesheets/alchemy/buttons.scss +0 -4
  25. data/app/assets/stylesheets/alchemy/elements.scss +73 -61
  26. data/app/assets/stylesheets/alchemy/images.scss +8 -0
  27. data/app/assets/stylesheets/alchemy/node-select.scss +4 -3
  28. data/app/assets/stylesheets/alchemy/page-select.scss +1 -0
  29. data/app/controllers/alchemy/admin/attachments_controller.rb +6 -2
  30. data/app/controllers/alchemy/admin/base_controller.rb +5 -7
  31. data/app/controllers/alchemy/admin/elements_controller.rb +58 -34
  32. data/app/controllers/alchemy/admin/essence_audios_controller.rb +30 -0
  33. data/app/controllers/alchemy/admin/essence_files_controller.rb +0 -14
  34. data/app/controllers/alchemy/admin/essence_pictures_controller.rb +8 -79
  35. data/app/controllers/alchemy/admin/essence_videos_controller.rb +33 -0
  36. data/app/controllers/alchemy/admin/ingredients_controller.rb +30 -0
  37. data/app/controllers/alchemy/admin/layoutpages_controller.rb +0 -1
  38. data/app/controllers/alchemy/admin/pages_controller.rb +6 -13
  39. data/app/controllers/alchemy/admin/pictures_controller.rb +35 -9
  40. data/app/controllers/alchemy/api/elements_controller.rb +10 -5
  41. data/app/controllers/alchemy/api/pages_controller.rb +3 -4
  42. data/app/controllers/concerns/alchemy/admin/archive_overlay.rb +13 -3
  43. data/app/controllers/concerns/alchemy/admin/crop_action.rb +26 -0
  44. data/app/decorators/alchemy/element_editor.rb +23 -1
  45. data/app/decorators/alchemy/ingredient_editor.rb +154 -0
  46. data/app/helpers/alchemy/admin/elements_helper.rb +1 -0
  47. data/app/helpers/alchemy/admin/essences_helper.rb +1 -1
  48. data/app/helpers/alchemy/admin/ingredients_helper.rb +42 -0
  49. data/app/helpers/alchemy/elements_block_helper.rb +22 -7
  50. data/app/helpers/alchemy/elements_helper.rb +12 -5
  51. data/app/helpers/alchemy/pages_helper.rb +3 -11
  52. data/app/jobs/alchemy/base_job.rb +11 -0
  53. data/app/jobs/alchemy/publish_page_job.rb +11 -0
  54. data/app/models/alchemy/content.rb +1 -6
  55. data/app/models/alchemy/content/factory.rb +23 -27
  56. data/app/models/alchemy/element.rb +39 -72
  57. data/app/models/alchemy/element/definitions.rb +29 -27
  58. data/app/models/alchemy/element/element_contents.rb +131 -122
  59. data/app/models/alchemy/element/element_essences.rb +100 -98
  60. data/app/models/alchemy/element/element_ingredients.rb +176 -0
  61. data/app/models/alchemy/element/presenters.rb +89 -87
  62. data/app/models/alchemy/elements_repository.rb +126 -0
  63. data/app/models/alchemy/essence_audio.rb +12 -0
  64. data/app/models/alchemy/essence_headline.rb +40 -0
  65. data/app/models/alchemy/essence_picture.rb +4 -116
  66. data/app/models/alchemy/essence_richtext.rb +12 -0
  67. data/app/models/alchemy/essence_video.rb +12 -0
  68. data/app/models/alchemy/image_cropper_settings.rb +87 -0
  69. data/app/models/alchemy/ingredient.rb +219 -0
  70. data/app/models/alchemy/ingredient_validator.rb +97 -0
  71. data/app/models/alchemy/ingredients/audio.rb +29 -0
  72. data/app/models/alchemy/ingredients/boolean.rb +21 -0
  73. data/app/models/alchemy/ingredients/datetime.rb +20 -0
  74. data/app/models/alchemy/ingredients/file.rb +30 -0
  75. data/app/models/alchemy/ingredients/headline.rb +42 -0
  76. data/app/models/alchemy/ingredients/html.rb +19 -0
  77. data/app/models/alchemy/ingredients/link.rb +16 -0
  78. data/app/models/alchemy/ingredients/node.rb +23 -0
  79. data/app/models/alchemy/ingredients/page.rb +23 -0
  80. data/app/models/alchemy/ingredients/picture.rb +41 -0
  81. data/app/models/alchemy/ingredients/richtext.rb +57 -0
  82. data/app/models/alchemy/ingredients/select.rb +10 -0
  83. data/app/models/alchemy/ingredients/text.rb +17 -0
  84. data/app/models/alchemy/ingredients/video.rb +33 -0
  85. data/app/models/alchemy/language.rb +0 -11
  86. data/app/models/alchemy/page.rb +66 -32
  87. data/app/models/alchemy/page/fixed_attributes.rb +53 -51
  88. data/app/models/alchemy/page/page_elements.rb +186 -205
  89. data/app/models/alchemy/page/page_naming.rb +66 -64
  90. data/app/models/alchemy/page/page_natures.rb +139 -142
  91. data/app/models/alchemy/page/page_scopes.rb +113 -102
  92. data/app/models/alchemy/page/publisher.rb +50 -0
  93. data/app/models/alchemy/page/url_path.rb +1 -1
  94. data/app/models/alchemy/page_version.rb +58 -0
  95. data/app/models/alchemy/picture.rb +3 -1
  96. data/app/models/alchemy/picture/calculations.rb +2 -8
  97. data/app/models/alchemy/picture/preprocessor.rb +2 -0
  98. data/app/models/alchemy/picture/transformations.rb +24 -96
  99. data/app/models/concerns/alchemy/picture_thumbnails.rb +181 -0
  100. data/app/models/concerns/alchemy/touch_elements.rb +2 -2
  101. data/app/presenters/alchemy/picture_view.rb +88 -0
  102. data/app/serializers/alchemy/element_serializer.rb +5 -0
  103. data/app/serializers/alchemy/page_tree_serializer.rb +3 -2
  104. data/app/services/alchemy/delete_elements.rb +44 -0
  105. data/app/services/alchemy/duplicate_element.rb +56 -0
  106. data/app/views/alchemy/admin/attachments/_archive_overlay.html.erb +1 -2
  107. data/app/views/alchemy/admin/attachments/_file_to_assign.html.erb +3 -3
  108. data/app/views/alchemy/admin/attachments/assign.js.erb +11 -0
  109. data/app/views/alchemy/admin/crop.html.erb +36 -0
  110. data/app/views/alchemy/admin/elements/_element.html.erb +14 -10
  111. data/app/views/alchemy/admin/elements/{_element_footer.html.erb → _footer.html.erb} +0 -0
  112. data/app/views/alchemy/admin/elements/{_new_element_form.html.erb → _form.html.erb} +1 -1
  113. data/app/views/alchemy/admin/elements/{_element_header.html.erb → _header.html.erb} +1 -1
  114. data/app/views/alchemy/admin/elements/{_element_toolbar.html.erb → _toolbar.html.erb} +5 -6
  115. data/app/views/alchemy/admin/elements/{trash.js.erb → destroy.js.erb} +1 -3
  116. data/app/views/alchemy/admin/elements/new.html.erb +3 -3
  117. data/app/views/alchemy/admin/elements/order.js.erb +0 -17
  118. data/app/views/alchemy/admin/elements/update.js.erb +3 -2
  119. data/app/views/alchemy/admin/essence_audios/edit.html.erb +7 -0
  120. data/app/views/alchemy/admin/essence_pictures/update.js.erb +0 -1
  121. data/app/views/alchemy/admin/essence_videos/edit.html.erb +11 -0
  122. data/app/views/alchemy/admin/ingredients/_audio_fields.html.erb +4 -0
  123. data/app/views/alchemy/admin/ingredients/_file_fields.html.erb +18 -0
  124. data/app/views/alchemy/admin/ingredients/_picture_fields.html.erb +25 -0
  125. data/app/views/alchemy/admin/ingredients/_video_fields.html.erb +8 -0
  126. data/app/views/alchemy/admin/ingredients/edit.html.erb +4 -0
  127. data/app/views/alchemy/admin/layoutpages/edit.html.erb +0 -5
  128. data/app/views/alchemy/admin/nodes/_node.html.erb +2 -2
  129. data/app/views/alchemy/admin/pages/_anchor_link.html.erb +1 -1
  130. data/app/views/alchemy/admin/pages/_external_link.html.erb +1 -1
  131. data/app/views/alchemy/admin/pages/_file_link.html.erb +1 -1
  132. data/app/views/alchemy/admin/pages/_form.html.erb +0 -6
  133. data/app/views/alchemy/admin/pages/_internal_link.html.erb +1 -1
  134. data/app/views/alchemy/admin/pages/_tinymce_custom_config.html.erb +5 -2
  135. data/app/views/alchemy/admin/pages/edit.html.erb +36 -24
  136. data/app/views/alchemy/admin/partials/_remote_search_form.html.erb +2 -4
  137. data/app/views/alchemy/admin/partials/_routes.html.erb +7 -11
  138. data/app/views/alchemy/admin/pictures/_filter_and_size_bar.html.erb +4 -8
  139. data/app/views/alchemy/admin/pictures/_infos.html.erb +0 -1
  140. data/app/views/alchemy/admin/pictures/_picture_to_assign.html.erb +4 -4
  141. data/app/views/alchemy/admin/pictures/assign.js.erb +10 -0
  142. data/app/views/alchemy/admin/resources/_form.html.erb +1 -0
  143. data/app/views/alchemy/essences/_essence_audio_editor.html.erb +4 -0
  144. data/app/views/alchemy/essences/_essence_audio_view.html.erb +15 -0
  145. data/app/views/alchemy/essences/_essence_file_editor.html.erb +15 -6
  146. data/app/views/alchemy/essences/_essence_headline_editor.html.erb +36 -0
  147. data/app/views/alchemy/essences/_essence_headline_view.html.erb +10 -0
  148. data/app/views/alchemy/essences/_essence_link_editor.html.erb +8 -4
  149. data/app/views/alchemy/essences/_essence_picture_editor.html.erb +27 -12
  150. data/app/views/alchemy/essences/_essence_picture_view.html.erb +3 -3
  151. data/app/views/alchemy/essences/_essence_text_editor.html.erb +12 -4
  152. data/app/views/alchemy/essences/_essence_video_editor.html.erb +4 -0
  153. data/app/views/alchemy/essences/_essence_video_view.html.erb +18 -0
  154. data/app/views/alchemy/essences/shared/_essence_picture_tools.html.erb +21 -16
  155. data/app/views/alchemy/essences/shared/_linkable_essence_tools.html.erb +2 -2
  156. data/app/views/alchemy/ingredients/_audio_editor.html.erb +5 -0
  157. data/app/views/alchemy/ingredients/_audio_view.html.erb +14 -0
  158. data/app/views/alchemy/ingredients/_boolean_editor.html.erb +11 -0
  159. data/app/views/alchemy/ingredients/_boolean_view.html.erb +1 -0
  160. data/app/views/alchemy/ingredients/_datetime_editor.html.erb +17 -0
  161. data/app/views/alchemy/ingredients/_datetime_view.html.erb +9 -0
  162. data/app/views/alchemy/ingredients/_file_editor.html.erb +50 -0
  163. data/app/views/alchemy/ingredients/_file_view.html.erb +17 -0
  164. data/app/views/alchemy/ingredients/_headline_editor.html.erb +30 -0
  165. data/app/views/alchemy/ingredients/_headline_view.html.erb +9 -0
  166. data/app/views/alchemy/ingredients/_html_editor.html.erb +8 -0
  167. data/app/views/alchemy/ingredients/_html_view.html.erb +1 -0
  168. data/app/views/alchemy/ingredients/_link_editor.html.erb +24 -0
  169. data/app/views/alchemy/ingredients/_link_view.html.erb +9 -0
  170. data/app/views/alchemy/ingredients/_node_editor.html.erb +25 -0
  171. data/app/views/alchemy/ingredients/_node_view.html.erb +1 -0
  172. data/app/views/alchemy/ingredients/_page_editor.html.erb +24 -0
  173. data/app/views/alchemy/ingredients/_page_view.html.erb +4 -0
  174. data/app/views/alchemy/ingredients/_picture_editor.html.erb +59 -0
  175. data/app/views/alchemy/ingredients/_picture_view.html.erb +5 -0
  176. data/app/views/alchemy/ingredients/_richtext_editor.html.erb +12 -0
  177. data/app/views/alchemy/ingredients/_richtext_view.html.erb +3 -0
  178. data/app/views/alchemy/ingredients/_select_editor.html.erb +29 -0
  179. data/app/views/alchemy/ingredients/_select_view.html.erb +1 -0
  180. data/app/views/alchemy/ingredients/_text_editor.html.erb +19 -0
  181. data/app/views/alchemy/ingredients/_text_view.html.erb +16 -0
  182. data/app/views/alchemy/ingredients/_video_editor.html.erb +5 -0
  183. data/app/views/alchemy/ingredients/_video_view.html.erb +17 -0
  184. data/app/views/alchemy/ingredients/shared/_link_tools.html.erb +20 -0
  185. data/app/views/alchemy/ingredients/shared/_picture_tools.html.erb +57 -0
  186. data/config/brakeman.ignore +66 -159
  187. data/config/initializers/dragonfly.rb +10 -0
  188. data/config/locales/alchemy.en.yml +23 -15
  189. data/config/routes.rb +17 -22
  190. data/db/migrate/20201207131309_create_page_versions.rb +19 -0
  191. data/db/migrate/20201207135820_add_page_version_id_to_alchemy_elements.rb +76 -0
  192. data/db/migrate/20210205143548_rename_public_on_and_public_until_on_alchemy_pages.rb +10 -0
  193. data/db/migrate/20210326105046_add_sanitized_body_to_alchemy_essence_richtexts.rb +7 -0
  194. data/db/migrate/20210406093436_add_alchemy_essence_headlines.rb +12 -0
  195. data/db/migrate/20210506135919_create_essence_audios.rb +19 -0
  196. data/db/migrate/20210506140258_create_essence_videos.rb +23 -0
  197. data/db/migrate/20210508091432_create_alchemy_ingredients.rb +22 -0
  198. data/lib/alchemy/admin/preview_url.rb +2 -0
  199. data/lib/alchemy/deprecation.rb +1 -1
  200. data/lib/alchemy/dragonfly/processors/auto_orient.rb +18 -0
  201. data/lib/alchemy/dragonfly/processors/crop_resize.rb +35 -0
  202. data/lib/alchemy/elements_finder.rb +14 -60
  203. data/lib/alchemy/essence.rb +1 -2
  204. data/lib/alchemy/hints.rb +8 -4
  205. data/lib/alchemy/page_layout.rb +0 -13
  206. data/lib/alchemy/permissions.rb +30 -29
  207. data/lib/alchemy/resource.rb +13 -3
  208. data/lib/alchemy/tasks/tidy.rb +29 -0
  209. data/lib/alchemy/test_support.rb +2 -11
  210. data/lib/alchemy/test_support/essence_shared_examples.rb +0 -1
  211. data/lib/alchemy/test_support/factories/element_factory.rb +8 -8
  212. data/lib/alchemy/test_support/factories/essence_audio_factory.rb +7 -0
  213. data/lib/alchemy/test_support/factories/essence_video_factory.rb +7 -0
  214. data/lib/alchemy/test_support/factories/ingredient_factory.rb +25 -0
  215. data/lib/alchemy/test_support/factories/page_factory.rb +20 -1
  216. data/lib/alchemy/test_support/factories/page_version_factory.rb +23 -0
  217. data/lib/alchemy/test_support/having_crop_action_examples.rb +170 -0
  218. data/lib/alchemy/test_support/having_picture_thumbnails_examples.rb +646 -0
  219. data/lib/alchemy/test_support/shared_ingredient_editor_examples.rb +21 -0
  220. data/lib/alchemy/test_support/shared_ingredient_examples.rb +57 -0
  221. data/lib/alchemy/tinymce.rb +17 -0
  222. data/lib/alchemy/upgrader/six_point_zero.rb +21 -0
  223. data/lib/alchemy/upgrader/tasks/add_page_versions.rb +33 -0
  224. data/lib/alchemy/upgrader/tasks/ingredients_migrator.rb +51 -0
  225. data/lib/alchemy/version.rb +1 -1
  226. data/lib/generators/alchemy/elements/elements_generator.rb +1 -0
  227. data/lib/generators/alchemy/elements/templates/view.html.erb +9 -0
  228. data/lib/generators/alchemy/elements/templates/view.html.haml +9 -0
  229. data/lib/generators/alchemy/elements/templates/view.html.slim +9 -0
  230. data/lib/generators/alchemy/ingredient/ingredient_generator.rb +38 -0
  231. data/lib/generators/alchemy/ingredient/templates/editor.html.erb +14 -0
  232. data/lib/generators/alchemy/ingredient/templates/model.rb.tt +13 -0
  233. data/lib/generators/alchemy/ingredient/templates/view.html.erb +1 -0
  234. data/lib/generators/alchemy/install/templates/dragonfly.rb.tt +1 -1
  235. data/lib/tasks/alchemy/thumbnails.rake +2 -0
  236. data/lib/tasks/alchemy/tidy.rake +12 -0
  237. data/lib/tasks/alchemy/upgrade.rake +26 -0
  238. data/package.json +2 -1
  239. data/package/admin.js +11 -1
  240. data/package/src/__tests__/i18n.spec.js +23 -0
  241. data/package/src/file_editors.js +28 -0
  242. data/package/src/i18n.js +1 -3
  243. data/package/src/image_cropper.js +103 -0
  244. data/package/src/image_loader.js +58 -0
  245. data/package/src/node_tree.js +5 -5
  246. data/package/src/picture_editors.js +169 -0
  247. data/package/src/utils/__tests__/ajax.spec.js +20 -12
  248. data/package/src/utils/ajax.js +8 -3
  249. data/vendor/assets/javascripts/jquery_plugins/jquery.Jcrop.min.js +3 -18
  250. data/vendor/assets/stylesheets/jquery.Jcrop.min.scss +2 -28
  251. metadata +284 -48
  252. data/app/assets/javascripts/alchemy/alchemy.image_cropper.js.coffee +0 -44
  253. data/app/assets/javascripts/alchemy/alchemy.trash_window.js.coffee +0 -30
  254. data/app/assets/stylesheets/alchemy/trash.scss +0 -8
  255. data/app/controllers/alchemy/admin/trash_controller.rb +0 -44
  256. data/app/views/alchemy/admin/essence_files/assign.js.erb +0 -3
  257. data/app/views/alchemy/admin/essence_pictures/assign.js.erb +0 -4
  258. data/app/views/alchemy/admin/essence_pictures/crop.html.erb +0 -48
  259. data/app/views/alchemy/admin/trash/clear.js.erb +0 -4
  260. data/app/views/alchemy/admin/trash/index.html.erb +0 -31
  261. data/lib/alchemy/test_support/factories.rb +0 -20
@@ -3,110 +3,121 @@
3
3
  module Alchemy
4
4
  # ActiveRecord scopes for Alchemy::Page
5
5
  #
6
- module Page::PageScopes
7
- extend ActiveSupport::Concern
8
-
9
- included do
10
- # All language root pages
11
- #
12
- scope :language_roots, -> { where(language_root: true) }
13
-
14
- # All layout pages
15
- #
16
- scope :layoutpages, -> { where(layoutpage: true) }
17
-
18
- # All locked pages
19
- #
20
- scope :locked, -> { where.not(locked_at: nil).where.not(locked_by: nil) }
21
-
22
- # All pages locked by given user
23
- #
24
- scope :locked_by,
25
- ->(user) {
26
- if user.class.respond_to? :primary_key
27
- locked.where(locked_by: user.send(user.class.primary_key))
28
- end
29
- }
30
-
31
- # All not locked pages
32
- #
33
- scope :not_locked, -> { where(locked_at: nil, locked_by: nil) }
34
-
35
- # All not restricted pages
36
- #
37
- scope :not_restricted, -> { where(restricted: false) }
38
-
39
- # All restricted pages
40
- #
41
- scope :restricted, -> { where(restricted: true) }
42
-
43
- # All pages that are a published language root
44
- #
45
- scope :public_language_roots,
46
- -> {
47
- published.language_roots.where(
48
- language_code: Language.published.pluck(:language_code),
49
- )
50
- }
51
-
52
- # Last 5 pages that where recently edited by given user
53
- #
54
- scope :all_last_edited_from,
55
- ->(user) {
56
- where(updater_id: user.id).order("updated_at DESC").limit(5)
57
- }
58
-
59
- # Returns all pages that have the given +language_id+
60
- #
61
- scope :with_language, ->(language_id) { where(language_id: language_id) }
62
-
63
- # Returns all content pages.
64
- #
65
- scope :contentpages, -> { where(layoutpage: [false, nil]) }
66
-
67
- # Returns all public contentpages that are not locked.
68
- #
69
- # Used for flushing all pages caches at once.
70
- #
71
- scope :flushables, -> { not_locked.published.contentpages }
72
-
73
- # Returns all layoutpages that are not locked.
74
- #
75
- # Used for flushing all pages caches at once.
76
- #
77
- scope :flushable_layoutpages, -> { not_locked.layoutpages }
78
-
79
- # All searchable pages
80
- #
81
- scope :searchables, -> { not_restricted.published.contentpages }
82
-
83
- # All pages from +Alchemy::Site.current+
84
- #
85
- scope :from_current_site,
86
- -> {
87
- where(Language.table_name => { site_id: Site.current || Site.default }).joins(:language)
88
- }
89
-
90
- # All pages for xml sitemap
91
- #
92
- scope :sitemap, -> { from_current_site.published.contentpages.where(sitemap: true) }
93
- end
94
-
95
- module ClassMethods
96
- # All public pages
97
- #
98
- def published
99
- where("#{table_name}.public_on <= :time AND " \
100
- "(#{table_name}.public_until IS NULL " \
101
- "OR #{table_name}.public_until >= :time)", time: Time.current)
6
+ class Page < BaseRecord
7
+ module PageScopes
8
+ extend ActiveSupport::Concern
9
+
10
+ included do
11
+ # All language root pages
12
+ #
13
+ scope :language_roots, -> { where(language_root: true) }
14
+
15
+ # All layout pages
16
+ #
17
+ scope :layoutpages, -> { where(layoutpage: true) }
18
+
19
+ # All locked pages
20
+ #
21
+ scope :locked, -> { where.not(locked_at: nil).where.not(locked_by: nil) }
22
+
23
+ # All pages locked by given user
24
+ #
25
+ scope :locked_by,
26
+ ->(user) {
27
+ if user.class.respond_to? :primary_key
28
+ locked.where(locked_by: user.send(user.class.primary_key))
29
+ end
30
+ }
31
+
32
+ # All not locked pages
33
+ #
34
+ scope :not_locked, -> { where(locked_at: nil, locked_by: nil) }
35
+
36
+ # All not restricted pages
37
+ #
38
+ scope :not_restricted, -> { where(restricted: false) }
39
+
40
+ # All restricted pages
41
+ #
42
+ scope :restricted, -> { where(restricted: true) }
43
+
44
+ # All public pages
45
+ #
46
+ scope :published,
47
+ -> {
48
+ joins(:language, :versions).
49
+ merge(Language.published).
50
+ merge(PageVersion.public_on(Time.current))
51
+ }
52
+
53
+ # All pages that are a published language root
54
+ #
55
+ scope :public_language_roots,
56
+ -> {
57
+ published.language_roots.where(
58
+ language_code: Language.published.pluck(:language_code),
59
+ )
60
+ }
61
+
62
+ # Last 5 pages that where recently edited by given user
63
+ #
64
+ scope :all_last_edited_from,
65
+ ->(user) {
66
+ where(updater_id: user.id).order("updated_at DESC").limit(5)
67
+ }
68
+
69
+ # Returns all pages that have the given +language_id+
70
+ #
71
+ scope :with_language, ->(language_id) { where(language_id: language_id) }
72
+
73
+ # Returns all content pages.
74
+ #
75
+ scope :contentpages, -> { where(layoutpage: [false, nil]) }
76
+
77
+ # Returns all public contentpages that are not locked.
78
+ #
79
+ # Used for flushing all pages caches at once.
80
+ #
81
+ scope :flushables, -> { not_locked.published.contentpages }
82
+
83
+ # Returns all layoutpages that are not locked.
84
+ #
85
+ # Used for flushing all pages caches at once.
86
+ #
87
+ scope :flushable_layoutpages, -> { not_locked.layoutpages }
88
+
89
+ # All searchable pages
90
+ #
91
+ scope :searchables, -> { not_restricted.published.contentpages }
92
+
93
+ # All pages from +Alchemy::Site.current+
94
+ #
95
+ scope :from_current_site,
96
+ -> {
97
+ where(Language.table_name => { site_id: Site.current || Site.default }).joins(:language)
98
+ }
99
+
100
+ # All pages for xml sitemap
101
+ #
102
+ scope :sitemap, -> { from_current_site.published.contentpages.where(sitemap: true) }
102
103
  end
103
104
 
104
- # All not public pages
105
- #
106
- def not_public
107
- where("#{table_name}.public_on IS NULL OR " \
108
- "#{table_name}.public_on >= :time OR " \
109
- "#{table_name}.public_until <= :time", time: Time.current)
105
+ module ClassMethods
106
+ # All pages that do not have any public version
107
+ #
108
+ def not_public(time = Time.current)
109
+ where <<~SQL
110
+ alchemy_pages.id NOT IN (
111
+ SELECT alchemy_page_versions.page_id
112
+ FROM alchemy_page_versions
113
+ WHERE alchemy_page_versions.public_on <= '#{connection.quoted_date(time)}'
114
+ AND (
115
+ alchemy_page_versions.public_until IS NULL
116
+ OR alchemy_page_versions.public_until >= '#{connection.quoted_date(time)}'
117
+ )
118
+ )
119
+ SQL
120
+ end
110
121
  end
111
122
  end
112
123
  end
@@ -0,0 +1,50 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_dependency "alchemy/page"
4
+
5
+ module Alchemy
6
+ class Page < BaseRecord
7
+ # Handles publishing of pages
8
+ class Publisher
9
+ def initialize(page)
10
+ @page = page
11
+ end
12
+
13
+ # Copies all currently visible elements to the public version of page
14
+ #
15
+ # Creates a new published version if none exists yet.
16
+ #
17
+ # Sends a publish notification to all registered publish targets
18
+ #
19
+ def publish!(public_on:)
20
+ Page.transaction do
21
+ version = public_version(public_on)
22
+ DeleteElements.new(version.elements).call
23
+
24
+ repository = page.draft_version.element_repository
25
+ ActiveRecord::Base.no_touching do
26
+ Element.acts_as_list_no_update do
27
+ repository.visible.not_nested.each.with_index(1) do |element, position|
28
+ Alchemy::DuplicateElement.new(element, repository: repository).call(
29
+ page_version_id: version.id,
30
+ position: position
31
+ )
32
+ end
33
+ end
34
+ end
35
+ end
36
+
37
+ Alchemy.publish_targets.each { |p| p.perform_later(page) }
38
+ end
39
+
40
+ private
41
+
42
+ attr_reader :page
43
+
44
+ # Load the pages public version or create one
45
+ def public_version(public_on)
46
+ page.public_version || page.versions.create!(public_on: public_on)
47
+ end
48
+ end
49
+ end
50
+ end
@@ -29,7 +29,7 @@ module Alchemy
29
29
  def call
30
30
  if @page.language_root?
31
31
  language_root_path
32
- elsif @site.languages.select(&:public?).length > 1
32
+ elsif @site.languages.count(&:public?) > 1
33
33
  page_path_with_language_prefix
34
34
  else
35
35
  page_path_with_leading_slash
@@ -0,0 +1,58 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Alchemy
4
+ class PageVersion < BaseRecord
5
+ belongs_to :page, class_name: "Alchemy::Page", inverse_of: :versions
6
+
7
+ has_many :elements, -> { order(:position) },
8
+ class_name: "Alchemy::Element",
9
+ inverse_of: :page_version
10
+
11
+ scope :drafts, -> { where(public_on: nil).order(updated_at: :desc) }
12
+ scope :published, -> { where.not(public_on: nil).order(public_on: :desc) }
13
+
14
+ def self.public_on(time = Time.current)
15
+ where("#{table_name}.public_on <= :time AND " \
16
+ "(#{table_name}.public_until IS NULL " \
17
+ "OR #{table_name}.public_until >= :time)", time: time)
18
+ end
19
+
20
+ before_destroy :delete_elements
21
+
22
+ # Determines if this version is public
23
+ #
24
+ # Takes the two timestamps +public_on+ and +public_until+
25
+ # and returns true if the time given (+Time.current+ per default)
26
+ # is in this timespan.
27
+ #
28
+ # @param time [DateTime] (Time.current)
29
+ # @returns Boolean
30
+ def public?(time = Time.current)
31
+ already_public_for?(time) && still_public_for?(time)
32
+ end
33
+
34
+ # Determines if this version is already public for given time
35
+ # @param time [DateTime] (Time.current)
36
+ # @returns Boolean
37
+ def already_public_for?(time = Time.current)
38
+ !public_on.nil? && public_on <= time
39
+ end
40
+
41
+ # Determines if this version is still public for given time
42
+ # @param time [DateTime] (Time.current)
43
+ # @returns Boolean
44
+ def still_public_for?(time = Time.current)
45
+ public_until.nil? || public_until >= time
46
+ end
47
+
48
+ def element_repository
49
+ ElementsRepository.new(elements.includes({ contents: :essence }, :tags))
50
+ end
51
+
52
+ private
53
+
54
+ def delete_elements
55
+ DeleteElements.new(elements).call
56
+ end
57
+ end
58
+ end
@@ -86,7 +86,9 @@ module Alchemy
86
86
  dragonfly_accessor :image_file, app: :alchemy_pictures do
87
87
  # Preprocess after uploading the picture
88
88
  after_assign do |image|
89
- self.class.preprocessor_class.new(image).call
89
+ if has_convertible_format?
90
+ self.class.preprocessor_class.new(image).call
91
+ end
90
92
  end
91
93
  end
92
94
 
@@ -27,15 +27,9 @@ module Alchemy
27
27
  # Given a string with an x, this function returns a Hash with point
28
28
  # :width and :height.
29
29
  #
30
- def sizes_from_string(string = "0x0")
31
- string = "0x0" if string.nil? || string.empty?
30
+ def sizes_from_string(string)
31
+ width, height = string.to_s.split("x", 2).map(&:to_i)
32
32
 
33
- raise ArgumentError unless string =~ /(\d*x\d*)/
34
-
35
- width, height = string.scan(/(\d*)x(\d*)/)[0].map(&:to_i)
36
-
37
- width = 0 if width.nil?
38
- height = 0 if height.nil?
39
33
  {
40
34
  width: width,
41
35
  height: height,
@@ -16,6 +16,8 @@ module Alchemy
16
16
  def call
17
17
  max_image_size = Alchemy::Config.get(:preprocess_image_resize)
18
18
  image_file.thumb!(max_image_size) if max_image_size.present?
19
+ # Auto orient the image so EXIF orientation data is taken into account
20
+ image_file.auto_orient!
19
21
  end
20
22
 
21
23
  private
@@ -11,53 +11,16 @@ module Alchemy
11
11
  include Alchemy::Picture::Calculations
12
12
  end
13
13
 
14
- THUMBNAIL_WIDTH = 160
15
- THUMBNAIL_HEIGHT = 120
16
-
17
- # Returns the default centered image mask for a given size.
18
- # If the mask is bigger than the image, the mask is scaled down
19
- # so the largest possible part of the image is visible.
20
- #
21
- def default_mask(mask_arg)
22
- mask = mask_arg.dup
23
- mask[:width] = image_file_width if mask[:width].zero?
24
- mask[:height] = image_file_height if mask[:height].zero?
25
-
26
- crop_size = size_when_fitting({width: image_file_width, height: image_file_height}, mask)
27
- top_left = get_top_left_crop_corner(crop_size)
28
-
29
- point_and_mask_to_points(top_left, crop_size)
30
- end
31
-
32
- # Returns a size value String for the thumbnail used in essence picture editors.
33
- #
34
- def thumbnail_size(size_string = "0x0", crop = false)
35
- size = sizes_from_string(size_string)
36
-
37
- # only if crop is set do we need to actually parse the size string, otherwise
38
- # we take the base image size.
39
- if crop
40
- size[:width] = get_base_dimensions[:width] if size[:width].zero?
41
- size[:height] = get_base_dimensions[:height] if size[:height].zero?
42
- size = reduce_to_image(size)
43
- else
44
- size = get_base_dimensions
45
- end
46
-
47
- size = size_when_fitting({width: THUMBNAIL_WIDTH, height: THUMBNAIL_HEIGHT}, size)
48
- "#{size[:width]}x#{size[:height]}"
49
- end
50
-
51
14
  # Returns the rendered cropped image. Tries to use the crop_from and crop_size
52
15
  # parameters. When they can't be parsed, it just crops from the center.
53
16
  #
54
17
  def crop(size, crop_from = nil, crop_size = nil, upsample = false)
55
18
  raise "No size given!" if size.empty?
56
19
 
57
- render_to = sizes_from_string(size)
20
+ render_to = inferred_sizes_from_string(size)
58
21
  if crop_from && crop_size
59
22
  top_left = point_from_string(crop_from)
60
- crop_dimensions = sizes_from_string(crop_size)
23
+ crop_dimensions = inferred_sizes_from_string(crop_size)
61
24
  xy_crop_resize(render_to, top_left, crop_dimensions, upsample)
62
25
  else
63
26
  center_crop(render_to, upsample)
@@ -75,21 +38,30 @@ module Alchemy
75
38
  def landscape_format?
76
39
  image_file.landscape?
77
40
  end
41
+
78
42
  alias_method :landscape?, :landscape_format?
43
+ deprecate landscape_format?: "Use image_file.landscape? instead", deprecator: Alchemy::Deprecation
44
+ deprecate landscape?: "Use image_file.landscape? instead", deprecator: Alchemy::Deprecation
79
45
 
80
46
  # Returns true if picture's width is smaller than it's height
81
47
  #
82
48
  def portrait_format?
83
49
  image_file.portrait?
84
50
  end
51
+
85
52
  alias_method :portrait?, :portrait_format?
53
+ deprecate portrait_format?: "Use image_file.portrait? instead", deprecator: Alchemy::Deprecation
54
+ deprecate portrait?: "Use image_file.portrait? instead", deprecator: Alchemy::Deprecation
86
55
 
87
56
  # Returns true if picture's width and height is equal
88
57
  #
89
58
  def square_format?
90
59
  image_file.aspect_ratio == 1.0
91
60
  end
61
+
92
62
  alias_method :square?, :square_format?
63
+ deprecate square_format?: "Use image_file.aspect_ratio instead", deprecator: Alchemy::Deprecation
64
+ deprecate square?: "Use image_file.aspect_ratio instead", deprecator: Alchemy::Deprecation
93
65
 
94
66
  # Returns true if the class we're included in has a meaningful render_size attribute
95
67
  #
@@ -121,62 +93,18 @@ module Alchemy
121
93
  }
122
94
  end
123
95
 
124
- # Given dimensions for a possibly destructive crop operation,
125
- # this function returns the top left corner as a Hash
126
- # with keys :x, :y
127
- #
128
- def get_top_left_crop_corner(dimensions)
129
- {
130
- x: (image_file_width - dimensions[:width]) / 2,
131
- y: (image_file_height - dimensions[:height]) / 2,
132
- }
133
- end
96
+ def inferred_sizes_from_string(string)
97
+ sizes = sizes_from_string(string)
98
+ ratio = image_file_width.to_f / image_file_height
134
99
 
135
- # Gets the base dimensions (the dimensions of the Picture before scaling).
136
- # If anything is missing, it gets padded with zero (Integer 0).
137
- # This is the order of precedence: crop_size > image_size
138
- def get_base_dimensions
139
- if crop_size?
140
- sizes_from_string(crop_size)
141
- else
142
- image_size
100
+ if sizes[:width].zero?
101
+ sizes[:width] = image_file_width * ratio
143
102
  end
144
- end
145
-
146
- # This function takes a target and a base dimensions hash and returns
147
- # the dimensions of the image when the base dimensions hash fills
148
- # the target.
149
- #
150
- # Aspect ratio will be preserved.
151
- #
152
- def size_when_fitting(target, dimensions = get_base_dimensions)
153
- zoom = [
154
- dimensions[:width].to_f / target[:width],
155
- dimensions[:height].to_f / target[:height],
156
- ].max
157
-
158
- if zoom == 0.0
159
- width = target[:width]
160
- height = target[:height]
161
- else
162
- width = (dimensions[:width] / zoom).round
163
- height = (dimensions[:height] / zoom).round
103
+ if sizes[:height].zero?
104
+ sizes[:height] = image_file_width / ratio
164
105
  end
165
106
 
166
- {width: width.to_i, height: height.to_i}
167
- end
168
-
169
- # Given a point as a Hash with :x and :y, and a mask with
170
- # :width and :height, this function returns the area on the
171
- # underlying canvas as a Hash of two points
172
- #
173
- def point_and_mask_to_points(point, mask)
174
- {
175
- x1: point[:x],
176
- y1: point[:y],
177
- x2: point[:x] + mask[:width],
178
- y2: point[:y] + mask[:height],
179
- }
107
+ sizes
180
108
  end
181
109
 
182
110
  # Converts a dimensions hash to a string of from "20x20"
@@ -197,20 +125,20 @@ module Alchemy
197
125
  # Use imagemagick to custom crop an image. Uses -thumbnail for better performance when resizing.
198
126
  #
199
127
  def xy_crop_resize(dimensions, top_left, crop_dimensions, upsample)
200
- crop_argument = "-crop #{dimensions_to_string(crop_dimensions)}"
128
+ crop_argument = dimensions_to_string(crop_dimensions)
201
129
  crop_argument += "+#{top_left[:x]}+#{top_left[:y]}"
202
130
 
203
- resize_argument = "-resize #{dimensions_to_string(dimensions)}"
131
+ resize_argument = dimensions_to_string(dimensions)
204
132
  resize_argument += ">" unless upsample
205
- image_file.convert "#{crop_argument} #{resize_argument}"
133
+ image_file.crop_resize(crop_argument, resize_argument)
206
134
  end
207
135
 
208
136
  # Used when centercropping.
209
137
  #
210
138
  def reduce_to_image(dimensions)
211
139
  {
212
- width: [dimensions[:width], image_file_width].min,
213
- height: [dimensions[:height], image_file_height].min,
140
+ width: [dimensions[:width].to_i, image_file_width.to_i].min,
141
+ height: [dimensions[:height].to_i, image_file_height.to_i].min,
214
142
  }
215
143
  end
216
144
  end