locomotivecms_steam 0.1.2.pre.beta → 1.0.0.pre.alpha
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitignore +3 -0
- data/.travis.yml +8 -1
- data/Gemfile +17 -8
- data/Gemfile.lock +160 -113
- data/LICENSE +1 -1
- data/README.md +36 -15
- data/Rakefile +27 -1
- data/bin/steam.rb +97 -0
- data/config/locales/en.yml +2 -1
- data/config/locales/fr.yml +2 -1
- data/lib/locomotive/steam.rb +28 -19
- data/lib/locomotive/steam/adapters/concerns/key.rb +15 -0
- data/lib/locomotive/steam/adapters/filesystem.rb +124 -0
- data/lib/locomotive/steam/adapters/filesystem/sanitizer.rb +54 -0
- data/lib/locomotive/steam/adapters/filesystem/sanitizers/content_entry.rb +86 -0
- data/lib/locomotive/steam/adapters/filesystem/sanitizers/content_type.rb +21 -0
- data/lib/locomotive/steam/adapters/filesystem/sanitizers/page.rb +160 -0
- data/lib/locomotive/steam/adapters/filesystem/sanitizers/simple.rb +15 -0
- data/lib/locomotive/steam/adapters/filesystem/sanitizers/snippet.rb +33 -0
- data/lib/locomotive/steam/adapters/filesystem/simple_cache_store.rb +38 -0
- data/lib/locomotive/steam/adapters/filesystem/yaml_loader.rb +47 -0
- data/lib/locomotive/steam/adapters/filesystem/yaml_loaders/content_entry.rb +87 -0
- data/lib/locomotive/steam/adapters/filesystem/yaml_loaders/content_type.rb +96 -0
- data/lib/locomotive/steam/adapters/filesystem/yaml_loaders/page.rb +145 -0
- data/lib/locomotive/steam/adapters/filesystem/yaml_loaders/site.rb +25 -0
- data/lib/locomotive/steam/adapters/filesystem/yaml_loaders/snippet.rb +66 -0
- data/lib/locomotive/steam/adapters/filesystem/yaml_loaders/theme_asset.rb +21 -0
- data/lib/locomotive/steam/adapters/filesystem/yaml_loaders/translation.rb +72 -0
- data/lib/locomotive/steam/adapters/memory.rb +55 -0
- data/lib/locomotive/steam/adapters/memory/condition.rb +103 -0
- data/lib/locomotive/steam/adapters/memory/dataset.rb +77 -0
- data/lib/locomotive/steam/adapters/memory/order.rb +60 -0
- data/lib/locomotive/steam/adapters/memory/query.rb +116 -0
- data/lib/locomotive/steam/adapters/mongodb.rb +83 -0
- data/lib/locomotive/steam/adapters/mongodb/dataset.rb +20 -0
- data/lib/locomotive/steam/adapters/mongodb/origin.rb +3 -0
- data/lib/locomotive/steam/adapters/mongodb/query.rb +82 -0
- data/lib/locomotive/steam/configuration.rb +106 -2
- data/lib/locomotive/steam/core_ext.rb +2 -1
- data/lib/locomotive/steam/core_ext/hash.rb +31 -19
- data/lib/locomotive/steam/core_ext/kernel.rb +14 -0
- data/lib/locomotive/steam/core_ext/string.rb +35 -6
- data/lib/locomotive/steam/decorators/i18n_decorator.rb +99 -0
- data/lib/locomotive/steam/decorators/template_decorator.rb +37 -0
- data/lib/locomotive/steam/entities/content_entry.rb +151 -0
- data/lib/locomotive/steam/entities/content_type.rb +44 -6
- data/lib/locomotive/steam/entities/content_type_field.rb +71 -0
- data/lib/locomotive/steam/entities/editable_element.rb +21 -0
- data/lib/locomotive/steam/entities/page.rb +48 -127
- data/lib/locomotive/steam/entities/site.rb +36 -27
- data/lib/locomotive/steam/entities/snippet.rb +20 -0
- data/lib/locomotive/steam/entities/theme_asset.rb +9 -0
- data/lib/locomotive/steam/entities/translation.rb +15 -0
- data/lib/locomotive/steam/initializers.rb +0 -4
- data/lib/locomotive/steam/initializers/dragonfly.rb +51 -11
- data/lib/locomotive/steam/initializers/i18n.rb +6 -3
- data/lib/locomotive/steam/initializers/sprockets.rb +4 -1
- data/lib/locomotive/steam/liquid.rb +4 -7
- data/lib/locomotive/steam/liquid/drops/base.rb +0 -1
- data/lib/locomotive/steam/liquid/drops/content_entry.rb +37 -16
- data/lib/locomotive/steam/liquid/drops/content_entry_collection.rb +77 -0
- data/lib/locomotive/steam/liquid/drops/content_types.rb +5 -102
- data/lib/locomotive/steam/liquid/drops/current_user.rb +23 -0
- data/lib/locomotive/steam/liquid/drops/i18n_base.rb +39 -0
- data/lib/locomotive/steam/liquid/drops/page.rb +77 -11
- data/lib/locomotive/steam/liquid/drops/session_proxy.rb +1 -1
- data/lib/locomotive/steam/liquid/drops/site.rb +14 -8
- data/lib/locomotive/steam/liquid/drops/upload_file.rb +23 -0
- data/lib/locomotive/steam/liquid/errors.rb +3 -9
- data/lib/locomotive/steam/liquid/filters/base.rb +62 -0
- data/lib/locomotive/steam/liquid/filters/date.rb +85 -61
- data/lib/locomotive/steam/liquid/filters/html.rb +30 -115
- data/lib/locomotive/steam/liquid/filters/misc.rb +6 -5
- data/lib/locomotive/steam/liquid/filters/pagination.rb +55 -0
- data/lib/locomotive/steam/liquid/filters/resize.rb +2 -3
- data/lib/locomotive/steam/liquid/filters/text.rb +15 -15
- data/lib/locomotive/steam/liquid/filters/translate.rb +5 -14
- data/lib/locomotive/steam/liquid/patches.rb +29 -23
- data/lib/locomotive/steam/liquid/tags/concerns/i18n_page.rb +36 -0
- data/lib/locomotive/steam/liquid/tags/concerns/path.rb +114 -0
- data/lib/locomotive/steam/liquid/tags/consume.rb +39 -43
- data/lib/locomotive/steam/liquid/tags/csrf.rb +21 -12
- data/lib/locomotive/steam/liquid/tags/editable.rb +1 -3
- data/lib/locomotive/steam/liquid/tags/editable/base.rb +54 -15
- data/lib/locomotive/steam/liquid/tags/editable/control.rb +17 -4
- data/lib/locomotive/steam/liquid/tags/editable/file.rb +34 -2
- data/lib/locomotive/steam/liquid/tags/editable/text.rb +54 -2
- data/lib/locomotive/steam/liquid/tags/extends.rb +45 -8
- data/lib/locomotive/steam/liquid/tags/fetch_page.rb +38 -0
- data/lib/locomotive/steam/liquid/tags/google_analytics.rb +25 -12
- data/lib/locomotive/steam/liquid/tags/hybrid.rb +24 -12
- data/lib/locomotive/steam/liquid/tags/inherited_block.rb +39 -0
- data/lib/locomotive/steam/liquid/tags/inline_editor.rb +14 -4
- data/lib/locomotive/steam/liquid/tags/link_to.rb +16 -27
- data/lib/locomotive/steam/liquid/tags/locale_switcher.rb +45 -56
- data/lib/locomotive/steam/liquid/tags/model_form.rb +72 -0
- data/lib/locomotive/steam/liquid/tags/nav.rb +65 -57
- data/lib/locomotive/steam/liquid/tags/paginate.rb +79 -47
- data/lib/locomotive/steam/liquid/tags/path_to.rb +8 -20
- data/lib/locomotive/steam/liquid/tags/seo.rb +8 -8
- data/lib/locomotive/steam/liquid/tags/session_assign.rb +6 -8
- data/lib/locomotive/steam/liquid/tags/snippet.rb +26 -42
- data/lib/locomotive/steam/liquid/tags/with_scope.rb +44 -26
- data/lib/locomotive/steam/middlewares.rb +7 -13
- data/lib/locomotive/steam/middlewares/default_env.rb +25 -0
- data/lib/locomotive/steam/middlewares/dynamic_assets.rb +34 -17
- data/lib/locomotive/steam/middlewares/entry_submission.rb +117 -79
- data/lib/locomotive/steam/middlewares/favicon.rb +5 -2
- data/lib/locomotive/steam/middlewares/helpers.rb +44 -0
- data/lib/locomotive/steam/middlewares/locale.rb +25 -17
- data/lib/locomotive/steam/middlewares/locale_redirection.rb +62 -0
- data/lib/locomotive/steam/middlewares/logging.rb +7 -3
- data/lib/locomotive/steam/middlewares/page.rb +17 -48
- data/lib/locomotive/steam/middlewares/path.rb +5 -8
- data/lib/locomotive/steam/middlewares/renderer.rb +65 -106
- data/lib/locomotive/steam/middlewares/robots.rb +20 -0
- data/lib/locomotive/steam/middlewares/site.rb +42 -0
- data/lib/locomotive/steam/middlewares/sitemap.rb +94 -0
- data/lib/locomotive/steam/middlewares/stack_proxy.rb +46 -0
- data/lib/locomotive/steam/middlewares/templatized_page.rb +40 -14
- data/lib/locomotive/steam/middlewares/threadsafe.rb +65 -0
- data/lib/locomotive/steam/middlewares/timezone.rb +10 -6
- data/lib/locomotive/steam/models.rb +12 -0
- data/lib/locomotive/steam/models/associations/belongs_to.rb +18 -0
- data/lib/locomotive/steam/models/associations/embedded.rb +43 -0
- data/lib/locomotive/steam/models/associations/has_many.rb +22 -0
- data/lib/locomotive/steam/models/associations/many_to_many.rb +22 -0
- data/lib/locomotive/steam/models/associations/referenced.rb +48 -0
- data/lib/locomotive/steam/models/concerns/validation.rb +58 -0
- data/lib/locomotive/steam/models/entity.rb +40 -0
- data/lib/locomotive/steam/models/i18n_field.rb +42 -0
- data/lib/locomotive/steam/models/mapper.rb +119 -0
- data/lib/locomotive/steam/models/pager.rb +53 -0
- data/lib/locomotive/steam/models/repository.rb +101 -0
- data/lib/locomotive/steam/models/scope.rb +31 -0
- data/lib/locomotive/steam/repositories.rb +51 -0
- data/lib/locomotive/steam/repositories/content_entry_repository.rb +183 -0
- data/lib/locomotive/steam/repositories/content_type_field_repository.rb +50 -0
- data/lib/locomotive/steam/repositories/content_type_field_select_option_repository.rb +23 -0
- data/lib/locomotive/steam/repositories/content_type_repository.rb +38 -0
- data/lib/locomotive/steam/repositories/editable_element_repository.rb +20 -0
- data/lib/locomotive/steam/repositories/page_repository.rb +86 -0
- data/lib/locomotive/steam/repositories/site_repository.rb +29 -0
- data/lib/locomotive/steam/repositories/snippet_repository.rb +19 -0
- data/lib/locomotive/steam/repositories/theme_asset_repository.rb +24 -0
- data/lib/locomotive/steam/repositories/translation_repository.rb +17 -0
- data/lib/locomotive/steam/server.rb +61 -40
- data/lib/locomotive/steam/services.rb +120 -1
- data/lib/locomotive/steam/services/asset_host_service.rb +51 -0
- data/lib/locomotive/steam/services/concerns/decorator.rb +35 -0
- data/lib/locomotive/steam/services/csrf_protection_service.rb +13 -0
- data/lib/locomotive/steam/services/editable_element_service.rb +19 -0
- data/lib/locomotive/steam/services/entry_submission_service.rb +91 -0
- data/lib/locomotive/steam/services/external_api_service.rb +55 -0
- data/lib/locomotive/steam/services/image_resizer_service.rb +49 -0
- data/lib/locomotive/steam/services/liquid_parser_service.rb +23 -0
- data/lib/locomotive/steam/services/markdown_service.rb +17 -0
- data/lib/locomotive/steam/services/no_cache_service.rb +17 -0
- data/lib/locomotive/steam/services/page_finder_service.rb +44 -0
- data/lib/locomotive/steam/services/parent_finder_service.rb +23 -0
- data/lib/locomotive/steam/services/site_finder_service.rb +13 -0
- data/lib/locomotive/steam/services/snippet_finder_service.rb +17 -0
- data/lib/locomotive/steam/services/textile_service.rb +17 -0
- data/lib/locomotive/steam/services/theme_asset_url_service.rb +43 -0
- data/lib/locomotive/steam/services/translator_service.rb +34 -0
- data/lib/locomotive/steam/services/url_builder_service.rb +40 -0
- data/lib/locomotive/steam/version.rb +1 -1
- data/locomotivecms_steam.gemspec +34 -28
- data/script/ci/before_build.sh +4 -0
- data/spec/fixtures/default/app/content_types/bands.yml +3 -1
- data/spec/fixtures/default/app/content_types/events.yml +2 -2
- data/spec/fixtures/default/app/views/pages/about_us.liquid.haml +2 -1
- data/spec/fixtures/default/app/views/pages/archives.liquid.haml +6 -0
- data/spec/fixtures/default/app/views/pages/basic.liquid.haml +1 -0
- data/spec/fixtures/default/app/views/pages/contest.liquid.haml +2 -1
- data/spec/fixtures/default/app/views/pages/events.fr.liquid +4 -0
- data/spec/fixtures/default/app/views/pages/events.liquid.haml +23 -1
- data/spec/fixtures/default/app/views/pages/filtered.liquid.haml +16 -5
- data/spec/fixtures/default/app/views/pages/grunge_bands.liquid.haml +2 -1
- data/spec/fixtures/default/app/views/pages/index.liquid.haml +12 -11
- data/spec/fixtures/default/app/views/pages/music.liquid.haml +1 -1
- data/spec/fixtures/default/app/views/pages/songs.liquid +6 -0
- data/spec/fixtures/default/app/views/pages/songs/song-number-1.liquid.haml +5 -0
- data/spec/fixtures/default/app/views/pages/store.liquid +2 -1
- data/spec/fixtures/default/app/views/pages/tags.liquid +6 -0
- data/spec/fixtures/default/app/views/pages/unlisted_pages.liquid.haml +2 -1
- data/spec/fixtures/default/app/views/snippets/song.fr.liquid.haml +1 -1
- data/spec/fixtures/default/config/deploy.yml +2 -2
- data/spec/fixtures/default/config/site.yml +7 -1
- data/spec/fixtures/default/data/bands.yml +3 -0
- data/spec/fixtures/mongodb/locomotive_accounts.bson +0 -0
- data/spec/fixtures/mongodb/locomotive_accounts.metadata.json +1 -0
- data/spec/fixtures/mongodb/locomotive_content_assets.bson +0 -0
- data/spec/fixtures/mongodb/locomotive_content_assets.metadata.json +1 -0
- data/spec/fixtures/mongodb/locomotive_content_entries.bson +0 -0
- data/spec/fixtures/mongodb/locomotive_content_entries.metadata.json +1 -0
- data/spec/fixtures/mongodb/locomotive_content_types.bson +0 -0
- data/spec/fixtures/mongodb/locomotive_content_types.metadata.json +1 -0
- data/spec/fixtures/mongodb/locomotive_pages.bson +0 -0
- data/spec/fixtures/mongodb/locomotive_pages.metadata.json +1 -0
- data/spec/fixtures/mongodb/locomotive_sites.bson +0 -0
- data/spec/fixtures/mongodb/locomotive_sites.metadata.json +1 -0
- data/spec/fixtures/mongodb/locomotive_snippets.bson +0 -0
- data/spec/fixtures/mongodb/locomotive_snippets.metadata.json +1 -0
- data/spec/fixtures/mongodb/locomotive_theme_assets.bson +0 -0
- data/spec/fixtures/mongodb/locomotive_theme_assets.metadata.json +1 -0
- data/spec/fixtures/mongodb/locomotive_translations.bson +0 -0
- data/spec/fixtures/mongodb/locomotive_translations.metadata.json +1 -0
- data/spec/fixtures/mongodb/sessions.bson +0 -0
- data/spec/fixtures/mongodb/sessions.metadata.json +1 -0
- data/spec/fixtures/mongodb/system.indexes.bson +0 -0
- data/spec/integration/integration_helper.rb +2 -2
- data/spec/integration/liquid/tags/paginate_spec.rb +79 -0
- data/spec/integration/repositories/content_entry_repository_spec.rb +94 -0
- data/spec/integration/repositories/content_type_repository_spec.rb +69 -0
- data/spec/integration/repositories/page_repository_spec.rb +105 -0
- data/spec/integration/repositories/site_repository_spec.rb +45 -0
- data/spec/integration/repositories/snippet_repository_spec.rb +50 -0
- data/spec/integration/repositories/theme_asset_repository_spec.rb +48 -0
- data/spec/integration/repositories/translation_repository_spec.rb +50 -0
- data/spec/integration/server/assets_spec.rb +60 -0
- data/spec/integration/server/basic_spec.rb +100 -100
- data/spec/integration/server/contact_form_spec.rb +96 -25
- data/spec/integration/server/liquid_spec.rb +19 -41
- data/spec/integration/server/nav_spec.rb +49 -0
- data/spec/integration/server/session_spec.rb +33 -0
- data/spec/integration/server/sitemap_spec.rb +34 -0
- data/spec/integration/server/with_scope_spec.rb +28 -2
- data/spec/integration/services/external_api_service_spec.rb +20 -0
- data/spec/locales/locales_spec.rb +7 -7
- data/spec/spec_helper.rb +27 -13
- data/spec/support.rb +5 -1
- data/spec/support/cache_store.rb +3 -0
- data/spec/support/helpers.rb +20 -23
- data/spec/support/liquid.rb +29 -0
- data/spec/support/pry.rb +4 -0
- data/spec/support/time.rb +3 -0
- data/spec/unit/adapters/filesystem/yaml_loaders/content_entry_spec.rb +50 -0
- data/spec/unit/adapters/filesystem/yaml_loaders/content_type_spec.rb +25 -0
- data/spec/unit/adapters/filesystem/yaml_loaders/page_spec.rb +25 -0
- data/spec/unit/adapters/filesystem/yaml_loaders/site_spec.rb +19 -0
- data/spec/unit/adapters/filesystem/yaml_loaders/snippet_spec.rb +26 -0
- data/spec/unit/adapters/filesystem/yaml_loaders/translation_spec.rb +25 -0
- data/spec/unit/adapters/filesystem_adapter_spec.rb +53 -0
- data/spec/unit/adapters/memory/condition_spec.rb +125 -0
- data/spec/unit/adapters/memory/dataset_spec.rb +73 -0
- data/spec/unit/adapters/memory/order_spec.rb +67 -0
- data/spec/unit/adapters/memory/query_spec.rb +85 -0
- data/spec/unit/adapters/memory_adapter_spec.rb +36 -0
- data/spec/unit/adapters/mongodb/query_spec.rb +68 -0
- data/spec/unit/adapters/mongodb_adapter_spec.rb +17 -0
- data/spec/unit/configuration_spec.rb +29 -0
- data/spec/unit/core_ext/string_spec.rb +44 -0
- data/spec/unit/decorators/i18n_decorator_spec.rb +80 -0
- data/spec/unit/entities/content_entry_spec.rb +159 -0
- data/spec/unit/entities/content_type_field_spec.rb +67 -0
- data/spec/unit/entities/content_type_spec.rb +59 -0
- data/spec/unit/entities/page_spec.rb +40 -34
- data/spec/unit/entities/site_spec.rb +56 -5
- data/spec/unit/initializers/dragonfly_spec.rb +31 -0
- data/spec/unit/liquid/drops/content_entry_collection_spec.rb +81 -0
- data/spec/unit/liquid/drops/content_entry_spec.rb +99 -0
- data/spec/unit/liquid/drops/content_types_spec.rb +25 -0
- data/spec/unit/liquid/drops/current_user_spec.rb +45 -0
- data/spec/unit/liquid/drops/page_spec.rb +134 -0
- data/spec/unit/liquid/drops/session_proxy_spec.rb +13 -0
- data/spec/unit/liquid/drops/site_spec.rb +49 -0
- data/spec/unit/liquid/filters/date_spec.rb +160 -0
- data/spec/unit/liquid/filters/html_spec.rb +263 -0
- data/spec/unit/liquid/filters/misc_spec.rb +108 -0
- data/spec/unit/liquid/filters/pagination_spec.rb +42 -0
- data/spec/unit/liquid/filters/resize_spec.rb +36 -0
- data/spec/unit/liquid/filters/text_spec.rb +56 -0
- data/spec/unit/liquid/filters/translate_spec.rb +33 -0
- data/spec/unit/liquid/patches_spec.rb +50 -0
- data/spec/unit/liquid/tags/consume_spec.rb +87 -0
- data/spec/unit/liquid/tags/csrf_spec.rb +47 -0
- data/spec/unit/liquid/tags/editable/control_spec.rb +109 -0
- data/spec/unit/liquid/tags/editable/file_spec.rb +116 -0
- data/spec/unit/liquid/tags/editable/text_spec.rb +139 -0
- data/spec/unit/liquid/tags/extends_spec.rb +38 -0
- data/spec/unit/liquid/tags/fetch_page_spec.rb +39 -0
- data/spec/unit/liquid/tags/google_analytics_spec.rb +16 -0
- data/spec/unit/liquid/tags/inherited_block_spec.rb +33 -0
- data/spec/unit/liquid/tags/link_to_spec.rb +112 -0
- data/spec/unit/liquid/tags/locale_switcher_spec.rb +58 -0
- data/spec/unit/liquid/tags/model_form_spec.rb +35 -0
- data/spec/unit/liquid/tags/nav_spec.rb +184 -111
- data/spec/unit/liquid/tags/paginate_spec.rb +131 -0
- data/spec/unit/liquid/tags/path_to_spec.rb +100 -0
- data/spec/unit/liquid/tags/seo_spec.rb +85 -0
- data/spec/unit/liquid/tags/session_assign_spec.rb +51 -0
- data/spec/unit/liquid/tags/snippet_spec.rb +42 -0
- data/spec/unit/liquid/tags/with_scope_spec.rb +66 -0
- data/spec/unit/middlewares/dynamic_assets_spec.rb +25 -0
- data/spec/unit/middlewares/locale_redirection_spec.rb +105 -0
- data/spec/unit/middlewares/renderer_spec.rb +29 -0
- data/spec/unit/middlewares/stack_proxy_spec.rb +67 -0
- data/spec/unit/models/mapper_spec.rb +75 -0
- data/spec/unit/models/pager_spec.rb +82 -0
- data/spec/unit/models/repository_spec.rb +46 -0
- data/spec/unit/models/scope_spec.rb +27 -0
- data/spec/unit/repositories/content_entry_repository_spec.rb +347 -0
- data/spec/unit/repositories/content_type_repository_spec.rb +126 -0
- data/spec/unit/repositories/page_repository_spec.rb +365 -0
- data/spec/unit/repositories/site_repository_spec.rb +41 -0
- data/spec/unit/repositories/snippet_repository_spec.rb +37 -0
- data/spec/unit/repositories/theme_asset_repository_spec.rb +35 -0
- data/spec/unit/repositories/translation_repository_spec.rb +34 -0
- data/spec/unit/services/asset_host_service_spec.rb +79 -0
- data/spec/unit/services/entry_submission_service_spec.rb +143 -0
- data/spec/unit/services/external_api_service_spec.rb +80 -0
- data/spec/unit/services/image_resizer_service_spec.rb +75 -0
- data/spec/unit/services/markdown_service_spec.rb +36 -0
- data/spec/unit/services/parent_finder_service_spec.rb +41 -0
- data/spec/unit/services/textile_service_spec.rb +34 -0
- data/spec/unit/services/translator_service_spec.rb +65 -0
- data/spec/unit/services/url_builder_service_spec.rb +48 -0
- data/spec/unit/services_spec.rb +25 -0
- metadata +462 -119
- data/example/server.rb +0 -31
- data/lib/locomotive/steam/decorators.rb +0 -1
- data/lib/locomotive/steam/decorators/page_decorator.rb +0 -50
- data/lib/locomotive/steam/exceptions.rb +0 -62
- data/lib/locomotive/steam/liquid/scopeable.rb +0 -149
- data/lib/locomotive/steam/liquid/tags/editable/long_text.rb +0 -15
- data/lib/locomotive/steam/liquid/tags/editable/short_text.rb +0 -20
- data/lib/locomotive/steam/liquid/tags/path_helper.rb +0 -98
- data/lib/locomotive/steam/loaders/yml/pages_loader.rb +0 -193
- data/lib/locomotive/steam/loaders/yml/site_loader.rb +0 -49
- data/lib/locomotive/steam/loaders/yml/utils/localized_tree.rb +0 -33
- data/lib/locomotive/steam/loaders/yml/utils/yaml_front_matters_template.rb +0 -66
- data/lib/locomotive/steam/loaders/yml_loader.rb +0 -33
- data/lib/locomotive/steam/mapper.rb +0 -86
- data/lib/locomotive/steam/middlewares/base.rb +0 -65
- data/lib/locomotive/steam/middlewares/stack.rb +0 -66
- data/lib/locomotive/steam/middlewares/static_assets.rb +0 -25
- data/lib/locomotive/steam/monkey_patches.rb +0 -3
- data/lib/locomotive/steam/monkey_patches/haml.rb +0 -17
- data/lib/locomotive/steam/repositories/content_types_repository.rb +0 -14
- data/lib/locomotive/steam/repositories/pages_repository.rb +0 -23
- data/lib/locomotive/steam/repositories/sites_repository.rb +0 -16
- data/lib/locomotive/steam/services/dragonfly.rb +0 -49
- data/lib/locomotive/steam/services/external_api.rb +0 -47
- data/lib/locomotive/steam/services/markdown.rb +0 -20
- data/lib/locomotive/steam/standalone_server.rb +0 -30
- data/spec/unit/decorators/page_decorator_spec.rb +0 -55
- data/spec/unit/loaders/pages_loader_spec.rb +0 -42
- data/spec/unit/loaders/site_loader_spec.rb +0 -21
- data/spec/unit/loaders/utils/localized_tree_spec.rb +0 -33
- data/spec/unit/loaders/utils/yaml_front_matters_template_spec.rb +0 -39
- data/spec/unit/middlewares/base_spec.rb +0 -20
- data/spec/unit/middlewares/page_spec.rb +0 -51
- data/spec/unit/repositories/pages_spec.rb +0 -11
@@ -0,0 +1,62 @@
|
|
1
|
+
module Locomotive::Steam
|
2
|
+
module Middlewares
|
3
|
+
|
4
|
+
# Redirect to the same page with or without the locale in the url
|
5
|
+
# based on the "prefix_default_locale" property of the current site.
|
6
|
+
#
|
7
|
+
# See the specs (spec/unit/middlewares/locale_redirection_spec.rb) for more details.
|
8
|
+
#
|
9
|
+
class LocaleRedirection < ThreadSafe
|
10
|
+
|
11
|
+
include Helpers
|
12
|
+
|
13
|
+
def _call
|
14
|
+
if url = redirect_url
|
15
|
+
redirect_to url
|
16
|
+
end
|
17
|
+
end
|
18
|
+
|
19
|
+
protected
|
20
|
+
|
21
|
+
def redirect_url
|
22
|
+
if apply_redirection?
|
23
|
+
if site.prefix_default_locale
|
24
|
+
path_with_default_locale if locale_not_mentioned_in_path?
|
25
|
+
else
|
26
|
+
path_without_default_locale if default_locale? && locale_mentioned_in_path?
|
27
|
+
end
|
28
|
+
end
|
29
|
+
end
|
30
|
+
|
31
|
+
def apply_redirection?
|
32
|
+
site.locales.size > 1 && request.get?
|
33
|
+
end
|
34
|
+
|
35
|
+
def default_locale?
|
36
|
+
locale.to_s == site.default_locale.to_s
|
37
|
+
end
|
38
|
+
|
39
|
+
def locale_mentioned_in_path?
|
40
|
+
env['steam.locale_in_path']
|
41
|
+
end
|
42
|
+
|
43
|
+
def locale_not_mentioned_in_path?
|
44
|
+
!locale_mentioned_in_path?
|
45
|
+
end
|
46
|
+
|
47
|
+
def path_with_default_locale
|
48
|
+
modify_path do |segments|
|
49
|
+
segments.insert(1, site.default_locale)
|
50
|
+
end
|
51
|
+
end
|
52
|
+
|
53
|
+
def path_without_default_locale
|
54
|
+
modify_path do |segments|
|
55
|
+
segments.delete_at(1)
|
56
|
+
end
|
57
|
+
end
|
58
|
+
|
59
|
+
end
|
60
|
+
end
|
61
|
+
|
62
|
+
end
|
@@ -3,12 +3,15 @@ module Locomotive::Steam
|
|
3
3
|
|
4
4
|
# Track the request into the current logger
|
5
5
|
#
|
6
|
-
class Logging <
|
6
|
+
class Logging < Struct.new(:app)
|
7
|
+
|
8
|
+
include Helpers
|
7
9
|
|
8
10
|
def call(env)
|
9
11
|
now = Time.now
|
10
12
|
|
11
|
-
log "Started #{env['REQUEST_METHOD'].upcase} \"#{env['PATH_INFO']}\" at #{now}".light_white
|
13
|
+
log "Started #{env['REQUEST_METHOD'].upcase} \"#{env['PATH_INFO']}\" at #{now}".light_white, 0
|
14
|
+
log "Params: #{env.fetch('steam.request').params.inspect}"
|
12
15
|
|
13
16
|
app.call(env).tap do |response|
|
14
17
|
done_in_ms = ((Time.now - now) * 10000).truncate / 10.0
|
@@ -24,9 +27,10 @@ module Locomotive::Steam
|
|
24
27
|
when 301 then '301 Found'
|
25
28
|
when 302 then '302 Found'
|
26
29
|
when 404 then '404 Not Found'
|
30
|
+
when 422 then '422 Unprocessable Entity'
|
27
31
|
end
|
28
32
|
end
|
29
33
|
|
30
34
|
end
|
31
35
|
end
|
32
|
-
end
|
36
|
+
end
|
@@ -1,64 +1,33 @@
|
|
1
1
|
module Locomotive::Steam
|
2
2
|
module Middlewares
|
3
3
|
|
4
|
-
#
|
5
|
-
#
|
4
|
+
# Retrieve a page from the path and the locale previously
|
5
|
+
# fetched from the request.
|
6
6
|
#
|
7
|
-
class Page <
|
7
|
+
class Page < ThreadSafe
|
8
8
|
|
9
|
-
|
10
|
-
super
|
11
|
-
set_page!(env)
|
12
|
-
app.call(env)
|
13
|
-
end
|
14
|
-
|
15
|
-
protected
|
9
|
+
include Helpers
|
16
10
|
|
17
|
-
def
|
18
|
-
page = fetch_page
|
19
|
-
|
20
|
-
|
11
|
+
def _call
|
12
|
+
if page = fetch_page
|
13
|
+
if !page.not_found?
|
14
|
+
log "Found page \"#{page.title}\" [#{page.fullpath}]"
|
15
|
+
else
|
16
|
+
log "Page not found, rendering the 404 page.".magenta
|
17
|
+
end
|
21
18
|
end
|
22
19
|
|
23
20
|
env['steam.page'] = page
|
24
21
|
end
|
25
22
|
|
26
|
-
|
27
|
-
decorated(locale) do
|
28
|
-
Locomotive::Models[:pages].current_locale = locale
|
29
|
-
Locomotive::Models[:pages].matching_paths(path_combinations(path)).tap do |pages|
|
30
|
-
if pages.size > 1
|
31
|
-
self.log "Found multiple pages: #{pages.all.collect(&:title).join(', ')}"
|
32
|
-
end
|
33
|
-
end.first
|
34
|
-
end
|
35
|
-
end
|
36
|
-
|
37
|
-
def decorated(locale)
|
38
|
-
entity = yield
|
39
|
-
unless entity.nil?
|
40
|
-
Locomotive::Steam::Decorators::PageDecorator.new(
|
41
|
-
Locomotive::Decorators::I18nDecorator.new(entity, locale))
|
42
|
-
end
|
43
|
-
end
|
44
|
-
|
45
|
-
def path_combinations(path)
|
46
|
-
self._path_combinations(path.split('/'))
|
47
|
-
end
|
48
|
-
|
49
|
-
def _path_combinations(segments, can_include_template = true)
|
50
|
-
return nil if segments.empty?
|
51
|
-
segment = segments.shift
|
23
|
+
protected
|
52
24
|
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
end
|
58
|
-
else
|
59
|
-
[_segment]
|
25
|
+
def fetch_page
|
26
|
+
services.page_finder.match(path).tap do |pages|
|
27
|
+
if pages.size > 1
|
28
|
+
self.log "Found multiple pages: #{pages.map(&:title).join(', ')}"
|
60
29
|
end
|
61
|
-
end.
|
30
|
+
end.first || services.page_finder.find('404')
|
62
31
|
end
|
63
32
|
|
64
33
|
end
|
@@ -4,20 +4,17 @@ module Locomotive::Steam
|
|
4
4
|
# Sanitize the path from the previous middleware in order
|
5
5
|
# to make it work for the renderer.
|
6
6
|
#
|
7
|
-
class Path <
|
8
|
-
|
9
|
-
def _call(env)
|
10
|
-
super
|
11
|
-
|
12
|
-
self.set_path!(env)
|
7
|
+
class Path < Struct.new(:app)
|
13
8
|
|
9
|
+
def call(env)
|
10
|
+
set_path!(env)
|
14
11
|
app.call(env)
|
15
12
|
end
|
16
13
|
|
17
14
|
protected
|
18
15
|
|
19
16
|
def set_path!(env)
|
20
|
-
path = env['
|
17
|
+
path = env['steam.path'] || request.path_info
|
21
18
|
|
22
19
|
path.gsub!(/\.[a-zA-Z][a-zA-Z0-9]{2,}$/, '')
|
23
20
|
path.gsub!(/^\//, '')
|
@@ -31,4 +28,4 @@ module Locomotive::Steam
|
|
31
28
|
end
|
32
29
|
|
33
30
|
end
|
34
|
-
end
|
31
|
+
end
|
@@ -1,141 +1,100 @@
|
|
1
1
|
module Locomotive::Steam
|
2
2
|
module Middlewares
|
3
3
|
|
4
|
-
class Renderer <
|
4
|
+
class Renderer < ThreadSafe
|
5
5
|
|
6
|
-
|
7
|
-
super
|
6
|
+
include Helpers
|
8
7
|
|
8
|
+
def _call
|
9
9
|
if page
|
10
|
-
|
11
|
-
redirect_to(page.redirect_url, page.redirect_type)
|
12
|
-
else
|
13
|
-
type = page.response_type || 'text/html'
|
14
|
-
html = render_page
|
15
|
-
|
16
|
-
log 'Rendered liquid page template'
|
17
|
-
|
18
|
-
[200, { 'Content-Type' => type }, [html]]
|
19
|
-
end
|
10
|
+
render_page
|
20
11
|
else
|
21
|
-
|
12
|
+
render_missing_404
|
22
13
|
end
|
23
14
|
end
|
24
15
|
|
25
|
-
|
16
|
+
private
|
26
17
|
|
27
18
|
def render_page
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
# raise RendererException.new(e, self.page.title, self.page.template, context)
|
35
|
-
# end
|
19
|
+
if page.redirect_url
|
20
|
+
redirect_to(page.redirect_url, page.redirect_type)
|
21
|
+
else
|
22
|
+
content = parse_and_render_liquid
|
23
|
+
render_response(content, page.not_found? ? 404: 200)
|
24
|
+
end
|
36
25
|
end
|
37
26
|
|
38
|
-
def
|
39
|
-
|
27
|
+
def render_missing_404
|
28
|
+
log "[Warning] Your 404 page is missing. Please create it.".red
|
29
|
+
render_response('Missing 404 page', 404)
|
40
30
|
end
|
41
31
|
|
42
|
-
|
32
|
+
def parse_and_render_liquid
|
33
|
+
document = services.liquid_parser.parse(page)
|
34
|
+
document.render(liquid_context)
|
35
|
+
end
|
43
36
|
|
44
|
-
def
|
37
|
+
def liquid_context
|
38
|
+
::Liquid::Context.new(liquid_assigns, {}, liquid_registers, true)
|
39
|
+
end
|
45
40
|
|
46
|
-
|
41
|
+
def liquid_registers
|
42
|
+
{
|
43
|
+
request: request,
|
44
|
+
locale: locale,
|
45
|
+
site: site,
|
47
46
|
page: page,
|
48
|
-
|
49
|
-
|
50
|
-
|
47
|
+
services: services,
|
48
|
+
repositories: services.repositories,
|
49
|
+
logger: Locomotive::Common::Logger
|
51
50
|
}
|
52
|
-
|
53
|
-
begin
|
54
|
-
::Liquid::Template.parse(page.source(I18n.locale), options)
|
55
|
-
rescue ::Liquid::SyntaxError
|
56
|
-
# do it again on the raw source instead so that the error line matches
|
57
|
-
# the source file.
|
58
|
-
::Liquid::Template.parse(self.template.raw_source, options)
|
59
|
-
end
|
60
51
|
end
|
61
52
|
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
'Page not found'
|
68
|
-
end
|
53
|
+
def liquid_assigns
|
54
|
+
_default_liquid_assigns.merge(
|
55
|
+
_locale_liquid_assigns.merge(
|
56
|
+
_request_liquid_assigns.merge(
|
57
|
+
_steam_liquid_assigns)))
|
69
58
|
end
|
70
59
|
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
# assigns from other middlewares
|
82
|
-
assigns.merge!(self.liquid_assigns)
|
83
|
-
|
84
|
-
assigns.merge!(other_assigns)
|
85
|
-
|
86
|
-
# templatized page
|
87
|
-
if self.page && self.content_entry
|
88
|
-
['content_entry', 'entry', self.page.content_type.slug.singularize].each do |key|
|
89
|
-
assigns[key] = self.content_entry
|
90
|
-
end
|
91
|
-
end
|
60
|
+
def _default_liquid_assigns
|
61
|
+
{
|
62
|
+
'current_page' => params[:page],
|
63
|
+
'params' => params.stringify_keys,
|
64
|
+
'now' => Time.zone.now,
|
65
|
+
'today' => Date.today,
|
66
|
+
'mode' => Locomotive::Steam.configuration.mode,
|
67
|
+
'wagon' => Locomotive::Steam.configuration.mode == :test
|
68
|
+
}
|
69
|
+
end
|
92
70
|
|
93
|
-
|
94
|
-
|
71
|
+
def _steam_liquid_assigns
|
72
|
+
{
|
73
|
+
'site' => site.to_liquid,
|
74
|
+
'page' => page.to_liquid,
|
75
|
+
'models' => Locomotive::Steam::Liquid::Drops::ContentTypes.new,
|
76
|
+
'contents' => Locomotive::Steam::Liquid::Drops::ContentTypes.new,
|
77
|
+
'current_user' => {},
|
78
|
+
'session' => Locomotive::Steam::Liquid::Drops::SessionProxy.new,
|
79
|
+
}.merge(env['steam.liquid_assigns'])
|
95
80
|
end
|
96
81
|
|
97
|
-
|
98
|
-
#
|
99
|
-
# @return [ Hash ] The default liquid assigns object
|
100
|
-
#
|
101
|
-
def locomotive_default_assigns
|
82
|
+
def _locale_liquid_assigns
|
102
83
|
{
|
103
|
-
'
|
104
|
-
'
|
105
|
-
'
|
106
|
-
'contents' => Locomotive::Steam::Liquid::Drops::ContentTypes.new,
|
107
|
-
'current_page' => self.params[:page],
|
108
|
-
'params' => self.params.stringify_keys,
|
109
|
-
'path' => self.request.path,
|
110
|
-
'fullpath' => self.request.fullpath,
|
111
|
-
'url' => self.request.url,
|
112
|
-
'ip_address' => self.request.ip,
|
113
|
-
'post?' => self.request.post?,
|
114
|
-
'host' => self.request.host_with_port,
|
115
|
-
'now' => Time.zone.now,
|
116
|
-
'today' => Date.today,
|
117
|
-
'locale' => I18n.locale.to_s,
|
118
|
-
'default_locale' => self.site.default_locale.to_s,
|
119
|
-
'locales' => self.site.locales.map(&:to_s),
|
120
|
-
'current_user' => {},
|
121
|
-
'session' => Locomotive::Steam::Liquid::Drops::SessionProxy.new,
|
122
|
-
'steam' => true,
|
123
|
-
'editing' => false
|
84
|
+
'locale' => locale,
|
85
|
+
'default_locale' => site.default_locale.to_s,
|
86
|
+
'locales' => site.locales.map(&:to_s)
|
124
87
|
}
|
125
88
|
end
|
126
89
|
|
127
|
-
|
128
|
-
#
|
129
|
-
# @return [ Hash ] The default liquid registers object
|
130
|
-
#
|
131
|
-
def locomotive_default_registers
|
90
|
+
def _request_liquid_assigns
|
132
91
|
{
|
133
|
-
request
|
134
|
-
|
135
|
-
|
136
|
-
|
137
|
-
|
138
|
-
|
92
|
+
'path' => request.path,
|
93
|
+
'fullpath' => request.fullpath,
|
94
|
+
'url' => request.url,
|
95
|
+
'ip_address' => request.ip,
|
96
|
+
'post?' => request.post?,
|
97
|
+
'host' => request.host_with_port
|
139
98
|
}
|
140
99
|
end
|
141
100
|
|
@@ -0,0 +1,20 @@
|
|
1
|
+
module Locomotive::Steam
|
2
|
+
module Middlewares
|
3
|
+
|
4
|
+
class Robots < Struct.new(:app, :options)
|
5
|
+
|
6
|
+
include Helpers
|
7
|
+
|
8
|
+
def call(env)
|
9
|
+
if env['PATH_INFO'] == '/robots.txt'
|
10
|
+
site = env['steam.site']
|
11
|
+
render_response(site[:robots_txt] || '', 200, 'text/plain')
|
12
|
+
else
|
13
|
+
app.call(env)
|
14
|
+
end
|
15
|
+
end
|
16
|
+
|
17
|
+
end
|
18
|
+
|
19
|
+
end
|
20
|
+
end
|
@@ -0,0 +1,42 @@
|
|
1
|
+
module Locomotive::Steam
|
2
|
+
module Middlewares
|
3
|
+
|
4
|
+
# Fetch a site using the site_finder service. Look for an existing
|
5
|
+
# site in the rack env variable (context: when launched from the Engine).
|
6
|
+
#
|
7
|
+
class Site < ThreadSafe
|
8
|
+
|
9
|
+
include Helpers
|
10
|
+
|
11
|
+
def _call
|
12
|
+
env['steam.site'] ||= services.site_finder.find
|
13
|
+
services.repositories.current_site = site = env['steam.site']
|
14
|
+
|
15
|
+
# render a simple message if the service was not able to find a site
|
16
|
+
# based on the request.
|
17
|
+
render_no_site unless site
|
18
|
+
|
19
|
+
# log anyway
|
20
|
+
log_site(site)
|
21
|
+
end
|
22
|
+
|
23
|
+
private
|
24
|
+
|
25
|
+
def render_no_site
|
26
|
+
render_response('Hi, we are sorry but no site was found.', 404, 'text/html')
|
27
|
+
end
|
28
|
+
|
29
|
+
def log_site(site)
|
30
|
+
if site.nil?
|
31
|
+
msg = "Unable to find a site, url asked: #{request.url} ".colorize(color: :light_white, background: :red)
|
32
|
+
else
|
33
|
+
msg = site.name.colorize(color: :light_white, background: :blue)
|
34
|
+
end
|
35
|
+
|
36
|
+
log msg, 0
|
37
|
+
end
|
38
|
+
|
39
|
+
end
|
40
|
+
|
41
|
+
end
|
42
|
+
end
|