alchemy_cms 5.1.4 → 6.0.0.b1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/ci.yml +7 -14
- data/.gitignore +0 -1
- data/.hound.yml +1 -1
- data/.rubocop.yml +46 -4
- data/CHANGELOG.md +112 -5
- data/Gemfile +5 -2
- data/README.md +5 -2
- data/alchemy_cms.gemspec +78 -65
- data/app/assets/javascripts/alchemy/admin.js +0 -2
- data/app/assets/javascripts/alchemy/alchemy.base.js.coffee +0 -27
- data/app/assets/javascripts/alchemy/alchemy.confirm_dialog.js.coffee +2 -1
- data/app/assets/javascripts/alchemy/alchemy.dialog.js.coffee +1 -1
- data/app/assets/javascripts/alchemy/alchemy.dragndrop.js.coffee +0 -25
- data/app/assets/javascripts/alchemy/alchemy.element_editors.js.coffee +1 -1
- data/app/assets/javascripts/alchemy/alchemy.elements_window.js.coffee +2 -0
- data/app/assets/javascripts/alchemy/alchemy.fixed_elements.js +1 -1
- data/app/assets/javascripts/alchemy/alchemy.gui.js.coffee +3 -1
- data/app/assets/javascripts/alchemy/alchemy.image_overlay.coffee +1 -1
- data/app/assets/javascripts/alchemy/alchemy.link_dialog.js.coffee +40 -27
- data/app/assets/javascripts/alchemy/templates/node_folder.hbs +1 -1
- data/app/assets/stylesheets/alchemy/_variables.scss +2 -0
- data/app/assets/stylesheets/alchemy/admin.scss +1 -1
- data/app/assets/stylesheets/alchemy/archive.scss +4 -4
- data/app/assets/stylesheets/alchemy/buttons.scss +0 -4
- data/app/assets/stylesheets/alchemy/elements.scss +111 -66
- data/app/assets/stylesheets/alchemy/images.scss +8 -0
- data/app/assets/stylesheets/alchemy/node-select.scss +4 -3
- data/app/assets/stylesheets/alchemy/page-select.scss +1 -0
- data/app/controllers/alchemy/admin/attachments_controller.rb +6 -2
- data/app/controllers/alchemy/admin/base_controller.rb +5 -6
- data/app/controllers/alchemy/admin/elements_controller.rb +58 -34
- data/app/controllers/alchemy/admin/essence_audios_controller.rb +30 -0
- data/app/controllers/alchemy/admin/essence_files_controller.rb +0 -14
- data/app/controllers/alchemy/admin/essence_pictures_controller.rb +8 -79
- data/app/controllers/alchemy/admin/essence_videos_controller.rb +33 -0
- data/app/controllers/alchemy/admin/ingredients_controller.rb +30 -0
- data/app/controllers/alchemy/admin/layoutpages_controller.rb +0 -1
- data/app/controllers/alchemy/admin/pages_controller.rb +6 -13
- data/app/controllers/alchemy/admin/pictures_controller.rb +35 -9
- data/app/controllers/alchemy/api/elements_controller.rb +10 -5
- data/app/controllers/alchemy/api/pages_controller.rb +3 -4
- data/app/controllers/concerns/alchemy/admin/archive_overlay.rb +13 -3
- data/app/controllers/concerns/alchemy/admin/crop_action.rb +26 -0
- data/app/decorators/alchemy/content_editor.rb +64 -0
- data/app/decorators/alchemy/element_editor.rb +24 -1
- data/app/decorators/alchemy/ingredient_editor.rb +154 -0
- data/app/helpers/alchemy/admin/contents_helper.rb +3 -8
- data/app/helpers/alchemy/admin/elements_helper.rb +1 -0
- data/app/helpers/alchemy/admin/essences_helper.rb +1 -1
- data/app/helpers/alchemy/admin/ingredients_helper.rb +42 -0
- data/app/helpers/alchemy/elements_block_helper.rb +22 -7
- data/app/helpers/alchemy/elements_helper.rb +12 -23
- data/app/helpers/alchemy/pages_helper.rb +3 -9
- data/app/jobs/alchemy/base_job.rb +11 -0
- data/app/jobs/alchemy/publish_page_job.rb +11 -0
- data/app/models/alchemy/attachment.rb +4 -0
- data/app/models/alchemy/content.rb +5 -3
- data/app/models/alchemy/content/factory.rb +23 -27
- data/app/models/alchemy/element.rb +72 -67
- data/app/models/alchemy/element/definitions.rb +26 -41
- data/app/models/alchemy/element/element_contents.rb +131 -122
- data/app/models/alchemy/element/element_essences.rb +100 -98
- data/app/models/alchemy/element/element_ingredients.rb +176 -0
- data/app/models/alchemy/element/presenters.rb +89 -87
- data/app/models/alchemy/elements_repository.rb +126 -0
- data/app/models/alchemy/essence_audio.rb +12 -0
- data/app/models/alchemy/essence_headline.rb +40 -0
- data/app/models/alchemy/essence_picture.rb +4 -116
- data/app/models/alchemy/essence_richtext.rb +12 -0
- data/app/models/alchemy/essence_video.rb +12 -0
- data/app/models/alchemy/image_cropper_settings.rb +87 -0
- data/app/models/alchemy/ingredient.rb +219 -0
- data/app/models/alchemy/ingredient_validator.rb +97 -0
- data/app/models/alchemy/ingredients/audio.rb +29 -0
- data/app/models/alchemy/ingredients/boolean.rb +21 -0
- data/app/models/alchemy/ingredients/datetime.rb +20 -0
- data/app/models/alchemy/ingredients/file.rb +30 -0
- data/app/models/alchemy/ingredients/headline.rb +42 -0
- data/app/models/alchemy/ingredients/html.rb +19 -0
- data/app/models/alchemy/ingredients/link.rb +16 -0
- data/app/models/alchemy/ingredients/node.rb +23 -0
- data/app/models/alchemy/ingredients/page.rb +23 -0
- data/app/models/alchemy/ingredients/picture.rb +41 -0
- data/app/models/alchemy/ingredients/richtext.rb +57 -0
- data/app/models/alchemy/ingredients/select.rb +10 -0
- data/app/models/alchemy/ingredients/text.rb +17 -0
- data/app/models/alchemy/ingredients/video.rb +33 -0
- data/app/models/alchemy/language.rb +0 -11
- data/app/models/alchemy/page.rb +66 -32
- data/app/models/alchemy/page/fixed_attributes.rb +53 -51
- data/app/models/alchemy/page/page_elements.rb +187 -199
- data/app/models/alchemy/page/page_naming.rb +66 -64
- data/app/models/alchemy/page/page_natures.rb +139 -142
- data/app/models/alchemy/page/page_scopes.rb +113 -102
- data/app/models/alchemy/page/publisher.rb +50 -0
- data/app/models/alchemy/page/url_path.rb +1 -1
- data/app/models/alchemy/page_version.rb +58 -0
- data/app/models/alchemy/picture.rb +3 -1
- data/app/models/alchemy/picture/calculations.rb +2 -8
- data/app/models/alchemy/picture/preprocessor.rb +2 -0
- data/app/models/alchemy/picture/transformations.rb +24 -96
- data/app/models/alchemy/picture_variant.rb +1 -1
- data/app/models/concerns/alchemy/picture_thumbnails.rb +181 -0
- data/app/models/concerns/alchemy/touch_elements.rb +2 -2
- data/app/presenters/alchemy/picture_view.rb +88 -0
- data/app/serializers/alchemy/element_serializer.rb +5 -0
- data/app/serializers/alchemy/page_tree_serializer.rb +3 -2
- data/app/services/alchemy/delete_elements.rb +44 -0
- data/app/services/alchemy/duplicate_element.rb +56 -0
- data/app/views/alchemy/admin/attachments/_archive_overlay.html.erb +1 -2
- data/app/views/alchemy/admin/attachments/_file_to_assign.html.erb +3 -3
- data/app/views/alchemy/admin/attachments/assign.js.erb +11 -0
- data/app/views/alchemy/admin/crop.html.erb +36 -0
- data/app/views/alchemy/admin/elements/_element.html.erb +14 -10
- data/app/views/alchemy/admin/elements/{_element_footer.html.erb → _footer.html.erb} +0 -0
- data/app/views/alchemy/admin/elements/{_new_element_form.html.erb → _form.html.erb} +1 -1
- data/app/views/alchemy/admin/elements/{_element_header.html.erb → _header.html.erb} +3 -1
- data/app/views/alchemy/admin/elements/{_element_toolbar.html.erb → _toolbar.html.erb} +5 -6
- data/app/views/alchemy/admin/elements/{trash.js.erb → destroy.js.erb} +1 -3
- data/app/views/alchemy/admin/elements/new.html.erb +3 -3
- data/app/views/alchemy/admin/elements/order.js.erb +0 -17
- data/app/views/alchemy/admin/elements/update.js.erb +3 -2
- data/app/views/alchemy/admin/essence_audios/edit.html.erb +7 -0
- data/app/views/alchemy/admin/essence_pictures/update.js.erb +0 -1
- data/app/views/alchemy/admin/essence_videos/edit.html.erb +11 -0
- data/app/views/alchemy/admin/ingredients/_audio_fields.html.erb +4 -0
- data/app/views/alchemy/admin/ingredients/_file_fields.html.erb +18 -0
- data/app/views/alchemy/admin/ingredients/_picture_fields.html.erb +25 -0
- data/app/views/alchemy/admin/ingredients/_video_fields.html.erb +8 -0
- data/app/views/alchemy/admin/ingredients/edit.html.erb +4 -0
- data/app/views/alchemy/admin/layoutpages/edit.html.erb +0 -5
- data/app/views/alchemy/admin/nodes/_node.html.erb +2 -2
- data/app/views/alchemy/admin/pages/_anchor_link.html.erb +1 -1
- data/app/views/alchemy/admin/pages/_external_link.html.erb +1 -1
- data/app/views/alchemy/admin/pages/_file_link.html.erb +1 -1
- data/app/views/alchemy/admin/pages/_form.html.erb +0 -6
- data/app/views/alchemy/admin/pages/_internal_link.html.erb +1 -1
- data/app/views/alchemy/admin/pages/_tinymce_custom_config.html.erb +5 -2
- data/app/views/alchemy/admin/pages/edit.html.erb +36 -24
- data/app/views/alchemy/admin/partials/_remote_search_form.html.erb +2 -4
- data/app/views/alchemy/admin/partials/_routes.html.erb +7 -11
- data/app/views/alchemy/admin/pictures/_filter_and_size_bar.html.erb +4 -8
- data/app/views/alchemy/admin/pictures/_infos.html.erb +0 -1
- data/app/views/alchemy/admin/pictures/_picture_to_assign.html.erb +4 -4
- data/app/views/alchemy/admin/pictures/assign.js.erb +10 -0
- data/app/views/alchemy/admin/resources/_form.html.erb +1 -0
- data/app/views/alchemy/essences/_essence_audio_editor.html.erb +4 -0
- data/app/views/alchemy/essences/_essence_audio_view.html.erb +15 -0
- data/app/views/alchemy/essences/_essence_file_editor.html.erb +15 -6
- data/app/views/alchemy/essences/_essence_headline_editor.html.erb +36 -0
- data/app/views/alchemy/essences/_essence_headline_view.html.erb +10 -0
- data/app/views/alchemy/essences/_essence_link_editor.html.erb +8 -4
- data/app/views/alchemy/essences/_essence_picture_editor.html.erb +27 -12
- data/app/views/alchemy/essences/_essence_picture_view.html.erb +3 -3
- data/app/views/alchemy/essences/_essence_text_editor.html.erb +12 -4
- data/app/views/alchemy/essences/_essence_video_editor.html.erb +4 -0
- data/app/views/alchemy/essences/_essence_video_view.html.erb +18 -0
- data/app/views/alchemy/essences/shared/_essence_picture_tools.html.erb +21 -16
- data/app/views/alchemy/essences/shared/_linkable_essence_tools.html.erb +2 -2
- data/app/views/alchemy/ingredients/_audio_editor.html.erb +5 -0
- data/app/views/alchemy/ingredients/_audio_view.html.erb +14 -0
- data/app/views/alchemy/ingredients/_boolean_editor.html.erb +11 -0
- data/app/views/alchemy/ingredients/_boolean_view.html.erb +1 -0
- data/app/views/alchemy/ingredients/_datetime_editor.html.erb +17 -0
- data/app/views/alchemy/ingredients/_datetime_view.html.erb +9 -0
- data/app/views/alchemy/ingredients/_file_editor.html.erb +50 -0
- data/app/views/alchemy/ingredients/_file_view.html.erb +17 -0
- data/app/views/alchemy/ingredients/_headline_editor.html.erb +30 -0
- data/app/views/alchemy/ingredients/_headline_view.html.erb +9 -0
- data/app/views/alchemy/ingredients/_html_editor.html.erb +8 -0
- data/app/views/alchemy/ingredients/_html_view.html.erb +1 -0
- data/app/views/alchemy/ingredients/_link_editor.html.erb +24 -0
- data/app/views/alchemy/ingredients/_link_view.html.erb +9 -0
- data/app/views/alchemy/ingredients/_node_editor.html.erb +25 -0
- data/app/views/alchemy/ingredients/_node_view.html.erb +1 -0
- data/app/views/alchemy/ingredients/_page_editor.html.erb +24 -0
- data/app/views/alchemy/ingredients/_page_view.html.erb +4 -0
- data/app/views/alchemy/ingredients/_picture_editor.html.erb +59 -0
- data/app/views/alchemy/ingredients/_picture_view.html.erb +5 -0
- data/app/views/alchemy/ingredients/_richtext_editor.html.erb +12 -0
- data/app/views/alchemy/ingredients/_richtext_view.html.erb +3 -0
- data/app/views/alchemy/ingredients/_select_editor.html.erb +29 -0
- data/app/views/alchemy/ingredients/_select_view.html.erb +1 -0
- data/app/views/alchemy/ingredients/_text_editor.html.erb +19 -0
- data/app/views/alchemy/ingredients/_text_view.html.erb +16 -0
- data/app/views/alchemy/ingredients/_video_editor.html.erb +5 -0
- data/app/views/alchemy/ingredients/_video_view.html.erb +17 -0
- data/app/views/alchemy/ingredients/shared/_link_tools.html.erb +20 -0
- data/app/views/alchemy/ingredients/shared/_picture_tools.html.erb +57 -0
- data/config/brakeman.ignore +212 -17
- data/config/initializers/dragonfly.rb +10 -0
- data/config/locales/alchemy.en.yml +63 -39
- data/config/routes.rb +17 -22
- data/db/migrate/20201207131309_create_page_versions.rb +19 -0
- data/db/migrate/20201207135820_add_page_version_id_to_alchemy_elements.rb +76 -0
- data/db/migrate/20210205143548_rename_public_on_and_public_until_on_alchemy_pages.rb +10 -0
- data/db/migrate/20210326105046_add_sanitized_body_to_alchemy_essence_richtexts.rb +7 -0
- data/db/migrate/20210406093436_add_alchemy_essence_headlines.rb +12 -0
- data/db/migrate/20210506135919_create_essence_audios.rb +19 -0
- data/db/migrate/20210506140258_create_essence_videos.rb +23 -0
- data/db/migrate/20210508091432_create_alchemy_ingredients.rb +22 -0
- data/lib/alchemy/admin/preview_url.rb +2 -0
- data/lib/alchemy/deprecation.rb +1 -1
- data/lib/alchemy/dragonfly/processors/auto_orient.rb +18 -0
- data/lib/alchemy/dragonfly/processors/crop_resize.rb +35 -0
- data/lib/alchemy/element_definition.rb +70 -0
- data/lib/alchemy/elements_finder.rb +14 -56
- data/lib/alchemy/essence.rb +5 -6
- data/lib/alchemy/filetypes.rb +13 -0
- data/lib/alchemy/forms/builder.rb +1 -1
- data/lib/alchemy/hints.rb +8 -4
- data/lib/alchemy/i18n.rb +4 -5
- data/lib/alchemy/page_layout.rb +0 -12
- data/lib/alchemy/permissions.rb +30 -29
- data/lib/alchemy/resource.rb +13 -3
- data/lib/alchemy/tasks/tidy.rb +29 -0
- data/lib/alchemy/test_support.rb +9 -0
- data/lib/alchemy/test_support/essence_shared_examples.rb +0 -4
- data/lib/alchemy/test_support/factories/attachment_factory.rb +0 -2
- data/lib/alchemy/test_support/factories/content_factory.rb +0 -6
- data/lib/alchemy/test_support/factories/dummy_user_factory.rb +0 -2
- data/lib/alchemy/test_support/factories/element_factory.rb +8 -11
- data/lib/alchemy/test_support/factories/essence_audio_factory.rb +7 -0
- data/lib/alchemy/test_support/factories/essence_file_factory.rb +0 -3
- data/lib/alchemy/test_support/factories/essence_page_factory.rb +0 -3
- data/lib/alchemy/test_support/factories/essence_picture_factory.rb +0 -4
- data/lib/alchemy/test_support/factories/essence_text_factory.rb +0 -2
- data/lib/alchemy/test_support/factories/essence_video_factory.rb +7 -0
- data/lib/alchemy/test_support/factories/ingredient_factory.rb +25 -0
- data/lib/alchemy/test_support/factories/language_factory.rb +0 -3
- data/lib/alchemy/test_support/factories/node_factory.rb +0 -4
- data/lib/alchemy/test_support/factories/page_factory.rb +20 -4
- data/lib/alchemy/test_support/factories/page_version_factory.rb +23 -0
- data/lib/alchemy/test_support/factories/picture_factory.rb +0 -2
- data/lib/alchemy/test_support/factories/picture_thumb_factory.rb +0 -3
- data/lib/alchemy/test_support/factories/site_factory.rb +0 -2
- data/lib/alchemy/test_support/having_crop_action_examples.rb +170 -0
- data/lib/alchemy/test_support/having_picture_thumbnails_examples.rb +646 -0
- data/lib/alchemy/test_support/integration_helpers.rb +5 -5
- data/lib/alchemy/test_support/shared_ingredient_editor_examples.rb +21 -0
- data/lib/alchemy/test_support/shared_ingredient_examples.rb +57 -0
- data/lib/alchemy/tinymce.rb +17 -0
- data/lib/alchemy/upgrader/six_point_zero.rb +21 -0
- data/lib/alchemy/upgrader/tasks/add_page_versions.rb +33 -0
- data/lib/alchemy/upgrader/tasks/ingredients_migrator.rb +51 -0
- data/lib/alchemy/version.rb +1 -1
- data/lib/alchemy_cms.rb +1 -0
- data/lib/generators/alchemy/elements/elements_generator.rb +1 -0
- data/lib/generators/alchemy/elements/templates/view.html.erb +9 -0
- data/lib/generators/alchemy/elements/templates/view.html.haml +9 -0
- data/lib/generators/alchemy/elements/templates/view.html.slim +9 -0
- data/lib/generators/alchemy/ingredient/ingredient_generator.rb +38 -0
- data/lib/generators/alchemy/ingredient/templates/editor.html.erb +14 -0
- data/lib/generators/alchemy/ingredient/templates/model.rb.tt +13 -0
- data/lib/generators/alchemy/ingredient/templates/view.html.erb +1 -0
- data/lib/generators/alchemy/install/templates/dragonfly.rb.tt +1 -1
- data/lib/tasks/alchemy/thumbnails.rake +2 -0
- data/lib/tasks/alchemy/tidy.rake +12 -0
- data/lib/tasks/alchemy/upgrade.rake +26 -0
- data/package.json +2 -1
- data/package/admin.js +11 -1
- data/package/src/__tests__/i18n.spec.js +23 -0
- data/package/src/file_editors.js +28 -0
- data/package/src/i18n.js +1 -3
- data/package/src/image_cropper.js +103 -0
- data/package/src/image_loader.js +58 -0
- data/package/src/node_tree.js +5 -5
- data/package/src/picture_editors.js +169 -0
- data/package/src/utils/__tests__/ajax.spec.js +20 -12
- data/package/src/utils/ajax.js +8 -3
- data/vendor/assets/javascripts/jquery_plugins/jquery.Jcrop.min.js +3 -18
- data/vendor/assets/stylesheets/jquery.Jcrop.min.scss +2 -28
- metadata +290 -52
- data/app/assets/javascripts/alchemy/alchemy.image_cropper.js.coffee +0 -44
- data/app/assets/javascripts/alchemy/alchemy.trash_window.js.coffee +0 -30
- data/app/assets/stylesheets/alchemy/trash.scss +0 -8
- data/app/controllers/alchemy/admin/trash_controller.rb +0 -42
- data/app/views/alchemy/admin/essence_files/assign.js.erb +0 -3
- data/app/views/alchemy/admin/essence_pictures/assign.js.erb +0 -4
- data/app/views/alchemy/admin/essence_pictures/crop.html.erb +0 -48
- data/app/views/alchemy/admin/trash/clear.js.erb +0 -4
- data/app/views/alchemy/admin/trash/index.html.erb +0 -31
- data/lib/alchemy/test_support/factories.rb +0 -5
@@ -3,110 +3,121 @@
|
|
3
3
|
module Alchemy
|
4
4
|
# ActiveRecord scopes for Alchemy::Page
|
5
5
|
#
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
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
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
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
|
@@ -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
|
-
|
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
|
31
|
-
|
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 =
|
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 =
|
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
|
-
|
125
|
-
|
126
|
-
|
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
|
-
|
136
|
-
|
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
|
-
|
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
|
-
|
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 =
|
128
|
+
crop_argument = dimensions_to_string(crop_dimensions)
|
201
129
|
crop_argument += "+#{top_left[:x]}+#{top_left[:y]}"
|
202
130
|
|
203
|
-
resize_argument =
|
131
|
+
resize_argument = dimensions_to_string(dimensions)
|
204
132
|
resize_argument += ">" unless upsample
|
205
|
-
image_file.
|
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
|