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
@@ -2,11 +2,115 @@ module Locomotive
|
|
2
2
|
module Steam
|
3
3
|
|
4
4
|
class Configuration
|
5
|
+
|
6
|
+
# Mainly used in the liquid templates (variable name: {{ mode }})
|
7
|
+
# to distinguish the page rendered in Wagon (:test) or in the Engine.
|
8
|
+
#
|
9
|
+
# default: :production
|
10
|
+
#
|
5
11
|
attr_accessor :mode
|
12
|
+
def mode; @mode || :production; end
|
13
|
+
|
14
|
+
# Steam needs an adapter in order to fetch the site content (site itself, pages, content entries, ...etc).
|
15
|
+
# By default, Steam is shipped with 2 adapters:
|
16
|
+
# - Filesystem (options: path). the path option should point to the root path of the site
|
17
|
+
# - MongoDB (options: database, hosts)
|
18
|
+
#
|
19
|
+
# default: { name: :filesytem, path: nil }
|
20
|
+
#
|
21
|
+
attr_accessor :adapter
|
6
22
|
|
7
|
-
|
8
|
-
|
23
|
+
# Manage the list of middlewares used by the rack stack.
|
24
|
+
#
|
25
|
+
# Example:
|
26
|
+
#
|
27
|
+
# Locomotive::Steam.configure do |config|
|
28
|
+
# ...
|
29
|
+
# config.middleware.remove Rack::Lint
|
30
|
+
# ...
|
31
|
+
# config.middleware.insert_after Middleware::Locale, MySlugMiddleware, answer: 42
|
32
|
+
# ...
|
33
|
+
# end
|
34
|
+
#
|
35
|
+
attr_accessor :middleware
|
36
|
+
def middleware
|
37
|
+
@middleware ||= Middlewares::StackProxy.new(&Locomotive::Steam::Server.default_middlewares)
|
9
38
|
end
|
39
|
+
|
40
|
+
# Add the checksum of a theme asset at the end of its path to allow public caching.
|
41
|
+
#
|
42
|
+
# default: false (disabled)
|
43
|
+
#
|
44
|
+
attr_accessor :theme_assets_checksum
|
45
|
+
def theme_assets_checksum; @theme_assets_checksum.nil? ? false : @theme_assets_checksum; end
|
46
|
+
|
47
|
+
# Enable serving of images, stylesheets, and JavaScripts from an asset server.
|
48
|
+
# Useful if a CDN is used to serve assets.
|
49
|
+
#
|
50
|
+
# default: nil
|
51
|
+
#
|
52
|
+
attr_accessor :asset_host
|
53
|
+
|
54
|
+
# Tell if Steam has to also serve static (images) or dynamic (SASS, Coffeescript) assets.
|
55
|
+
#
|
56
|
+
# default: true
|
57
|
+
#
|
58
|
+
attr_accessor :serve_assets
|
59
|
+
def serve_assets; @serve_assets.nil? ? true : @serve_assets; end
|
60
|
+
|
61
|
+
# Path to the assets (if Steam serves the assets).
|
62
|
+
#
|
63
|
+
# default: nil
|
64
|
+
#
|
65
|
+
attr_accessor :asset_path
|
66
|
+
|
67
|
+
# If java is installed and if this option is enabled,
|
68
|
+
# then YUI::JavaScriptCompressor and YUI::CssCompressor are used to minify the css and the javascript.
|
69
|
+
#
|
70
|
+
# default: false
|
71
|
+
#
|
72
|
+
attr_accessor :minify_assets
|
73
|
+
def minify_assets; @minify_assets.nil? ? false : @minify_assets; end
|
74
|
+
|
75
|
+
# Dragonfly needs it to generate the protective SHA.
|
76
|
+
#
|
77
|
+
# default: 'please change it'
|
78
|
+
#
|
79
|
+
attr_accessor :image_resizer_secret
|
80
|
+
def image_resizer_secret; @image_resizer_secret.nil? ? 'please change it' : @image_resizer_secret; end
|
81
|
+
|
82
|
+
# Enable the Cross-site request forgery protection for POST requests.
|
83
|
+
#
|
84
|
+
# default: true
|
85
|
+
#
|
86
|
+
attr_accessor :csrf_protection
|
87
|
+
def csrf_protection; @csrf_protection.nil? ? true : @csrf_protection; end
|
88
|
+
|
89
|
+
# Options for the store of Moneta (Session)
|
90
|
+
#
|
91
|
+
# default: { store: Moneta.new(:Memory, expires: true) }
|
92
|
+
#
|
93
|
+
attr_accessor :moneta
|
94
|
+
def moneta; @moneta.nil? ? { store: Moneta.new(:Memory, expires: true) } : @moneta; end
|
95
|
+
|
96
|
+
# Lambda called once a Services instance has been built.
|
97
|
+
# It is used when we want to change one of the services
|
98
|
+
#
|
99
|
+
# Example:
|
100
|
+
#
|
101
|
+
# Locomotive::Steam.configure do |config|
|
102
|
+
#
|
103
|
+
# config.services_hook = -> (services) {
|
104
|
+
# require 'my_custom_site_finder'
|
105
|
+
# services.site_finder = MyCustomSiteFinder.new
|
106
|
+
# }
|
107
|
+
#
|
108
|
+
# end
|
109
|
+
#
|
110
|
+
# default: nil
|
111
|
+
#
|
112
|
+
attr_accessor :services_hook
|
113
|
+
|
10
114
|
end
|
11
115
|
|
12
116
|
end
|
@@ -2,4 +2,5 @@ require_relative 'core_ext/hash'
|
|
2
2
|
require_relative 'core_ext/string'
|
3
3
|
require_relative 'core_ext/array'
|
4
4
|
require_relative 'core_ext/boolean/true'
|
5
|
-
require_relative 'core_ext/boolean/false'
|
5
|
+
require_relative 'core_ext/boolean/false'
|
6
|
+
require_relative 'core_ext/kernel'
|
@@ -1,27 +1,39 @@
|
|
1
|
-
|
1
|
+
# Big thanks to Tim Ruffles (https://github.com/timruffles)
|
2
|
+
# https://gist.github.com/timruffles/2780508
|
3
|
+
module HashConverter
|
4
|
+
class << self
|
2
5
|
|
3
|
-
|
4
|
-
|
6
|
+
def to_underscore(hash)
|
7
|
+
convert(hash, :underscore)
|
8
|
+
end
|
5
9
|
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
if item.respond_to?(:each_pair) # Hash item within
|
10
|
-
item.underscore_keys
|
11
|
-
else
|
12
|
-
item
|
13
|
-
end
|
14
|
-
end
|
15
|
-
elsif value.respond_to?(:each_pair) # Hash
|
16
|
-
value = value.underscore_keys
|
17
|
-
end
|
10
|
+
def to_string(hash)
|
11
|
+
convert(hash, :to_s)
|
12
|
+
end
|
18
13
|
|
19
|
-
|
14
|
+
def to_sym(hash)
|
15
|
+
convert(hash, :to_sym)
|
16
|
+
end
|
20
17
|
|
21
|
-
|
18
|
+
# FIXME: not sure it will be ever needed
|
19
|
+
# def to_camel_case hash
|
20
|
+
# convert hash, :camelize, :lower
|
21
|
+
# end
|
22
|
+
|
23
|
+
def convert(obj, *method)
|
24
|
+
case obj
|
25
|
+
when Hash
|
26
|
+
obj.inject({}) do |h, (k,v)|
|
27
|
+
v = convert(v, *method)
|
28
|
+
h[k.send(*method)] = v
|
29
|
+
h
|
30
|
+
end
|
31
|
+
when Array
|
32
|
+
obj.map { |m| convert(m, *method) }
|
33
|
+
else
|
34
|
+
obj
|
35
|
+
end
|
22
36
|
end
|
23
37
|
|
24
|
-
self.replace(new_hash)
|
25
38
|
end
|
26
|
-
|
27
39
|
end
|
@@ -0,0 +1,14 @@
|
|
1
|
+
module Kernel
|
2
|
+
|
3
|
+
def require_relative_all(paths, sub = nil)
|
4
|
+
main_path = File.dirname(caller.first.sub(/:\d+$/, ''))
|
5
|
+
main_path = File.join(main_path, sub) if sub
|
6
|
+
|
7
|
+
[*paths].each do |path|
|
8
|
+
Dir[File.join(main_path, path, '*.rb')].each { |file| require file }
|
9
|
+
end
|
10
|
+
end
|
11
|
+
|
12
|
+
end
|
13
|
+
|
14
|
+
|
@@ -1,8 +1,37 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
1
|
+
unless String.public_instance_methods.include?(:to_bool)
|
2
|
+
class String
|
3
|
+
|
4
|
+
def to_bool
|
5
|
+
return true if self == true || self =~ (/(true|t|yes|y|1)$/i)
|
6
|
+
return false if self == false || self.blank? || self =~ (/(false|f|no|n|0)$/i)
|
7
|
+
|
8
|
+
raise ArgumentError.new("invalid value for Boolean: \"#{self}\"")
|
9
|
+
end
|
10
|
+
|
11
|
+
end
|
12
|
+
end
|
13
|
+
|
14
|
+
unless String.public_instance_methods.include?(:permalink)
|
15
|
+
require 'stringex'
|
16
|
+
|
17
|
+
class String
|
18
|
+
|
19
|
+
def permalink(underscore = false)
|
20
|
+
# if the slug includes one "_" at least, we consider that the "_" is used instead of "-".
|
21
|
+
_permalink = if !self.index('_').nil?
|
22
|
+
self.to_url(replace_whitespace_with: '_')
|
23
|
+
else
|
24
|
+
self.to_url
|
25
|
+
end
|
26
|
+
|
27
|
+
underscore ? _permalink.underscore : _permalink
|
28
|
+
end
|
29
|
+
|
30
|
+
def permalink!(underscore = false)
|
31
|
+
replace(self.permalink(underscore))
|
32
|
+
end
|
33
|
+
|
34
|
+
alias :parameterize! :permalink!
|
35
|
+
|
7
36
|
end
|
8
37
|
end
|
@@ -0,0 +1,99 @@
|
|
1
|
+
module Locomotive
|
2
|
+
module Steam
|
3
|
+
module Decorators
|
4
|
+
|
5
|
+
class I18nDecorator < SimpleDelegator
|
6
|
+
|
7
|
+
attr_accessor :__localized_attributes__
|
8
|
+
attr_accessor :__frozen_locale__
|
9
|
+
attr_reader :__locale__
|
10
|
+
attr_reader :__default_locale__
|
11
|
+
|
12
|
+
def initialize(object, locale = nil, default_locale = nil)
|
13
|
+
# ::Object.send(:puts, "Decorating #{object.class.name} with #{self.class.name}")
|
14
|
+
|
15
|
+
self.__localized_attributes__ = object.localized_attributes
|
16
|
+
self.__frozen_locale__ = false
|
17
|
+
self.__locale__ = locale
|
18
|
+
self.__default_locale__ = default_locale
|
19
|
+
|
20
|
+
super(object)
|
21
|
+
end
|
22
|
+
|
23
|
+
class << self
|
24
|
+
|
25
|
+
def decorate(object_or_list, locale = nil, default_locale = nil)
|
26
|
+
decorated = [[object_or_list]].flatten.map do |object|
|
27
|
+
new(object, locale, default_locale)
|
28
|
+
end
|
29
|
+
|
30
|
+
object_or_list.respond_to?(:localized_attributes) ? decorated.first : decorated
|
31
|
+
end
|
32
|
+
|
33
|
+
end
|
34
|
+
|
35
|
+
def __locale__=(locale)
|
36
|
+
unless self.__frozen_locale__
|
37
|
+
@__locale__ = locale.try(:to_sym)
|
38
|
+
end
|
39
|
+
end
|
40
|
+
|
41
|
+
def __default_locale__=(locale)
|
42
|
+
@__default_locale__ = locale.try(:to_sym)
|
43
|
+
end
|
44
|
+
|
45
|
+
def __with_locale__(locale, &block)
|
46
|
+
old_locale, self.__locale__ = __locale__, locale.to_sym
|
47
|
+
self.__freeze_locale__
|
48
|
+
yield.tap do
|
49
|
+
self.__unfreeze_locale__
|
50
|
+
self.__locale__ = old_locale
|
51
|
+
end
|
52
|
+
end
|
53
|
+
|
54
|
+
def __freeze_locale__
|
55
|
+
@__frozen_locale__ = true
|
56
|
+
end
|
57
|
+
|
58
|
+
def __unfreeze_locale__
|
59
|
+
@__frozen_locale__ = false
|
60
|
+
end
|
61
|
+
|
62
|
+
def __is_localized_attribute__(name)
|
63
|
+
__localized_attributes__.include?(name.to_sym)
|
64
|
+
end
|
65
|
+
|
66
|
+
def __get_localized_value__(name)
|
67
|
+
field = __getobj__.public_send(name.to_sym)
|
68
|
+
field[__locale__] || field[__default_locale__]
|
69
|
+
end
|
70
|
+
|
71
|
+
def __set_localized_value__(name, value)
|
72
|
+
field = __getobj__.public_send(name.to_sym)
|
73
|
+
field[__locale__] = value
|
74
|
+
end
|
75
|
+
|
76
|
+
def method_missing(name, *args, &block)
|
77
|
+
if __is_localized_attribute__(name)
|
78
|
+
__get_localized_value__(name)
|
79
|
+
elsif name.to_s.end_with?('=') && __is_localized_attribute__(name.to_s.chop)
|
80
|
+
__set_localized_value__(name.to_s.chop, args.first)
|
81
|
+
else
|
82
|
+
# Note: we want to hit the method_missing of the target object
|
83
|
+
__getobj__.send(name, *args, &block)
|
84
|
+
end
|
85
|
+
end
|
86
|
+
|
87
|
+
#:nocov:
|
88
|
+
def inspect
|
89
|
+
"[Decorated #{__getobj__.class.name}][I18n] attributes exist? " +
|
90
|
+
__getobj__.respond_to?(:attributes).inspect +
|
91
|
+
', localized attributes: ' + @__localized_attributes__.inspect +
|
92
|
+
', locale: ' + @__locale__.inspect
|
93
|
+
end
|
94
|
+
|
95
|
+
end
|
96
|
+
|
97
|
+
end
|
98
|
+
end
|
99
|
+
end
|
@@ -0,0 +1,37 @@
|
|
1
|
+
require_relative 'i18n_decorator'
|
2
|
+
|
3
|
+
module Locomotive
|
4
|
+
module Steam
|
5
|
+
module Decorators
|
6
|
+
|
7
|
+
class TemplateDecorator < I18nDecorator
|
8
|
+
|
9
|
+
def liquid_source
|
10
|
+
if respond_to?(:template_path) && template_path
|
11
|
+
source_from_template_file
|
12
|
+
else
|
13
|
+
self.source
|
14
|
+
end
|
15
|
+
end
|
16
|
+
|
17
|
+
private
|
18
|
+
|
19
|
+
def source_from_template_file
|
20
|
+
source = File.open(template_path).read.force_encoding('utf-8')
|
21
|
+
|
22
|
+
if match = source.match(FRONTMATTER_REGEXP)
|
23
|
+
source = match[:template]
|
24
|
+
end
|
25
|
+
|
26
|
+
if template_path.ends_with?('.haml')
|
27
|
+
Haml::Engine.new(source).render
|
28
|
+
else
|
29
|
+
source
|
30
|
+
end
|
31
|
+
end
|
32
|
+
|
33
|
+
end
|
34
|
+
|
35
|
+
end
|
36
|
+
end
|
37
|
+
end
|
@@ -0,0 +1,151 @@
|
|
1
|
+
require 'chronic'
|
2
|
+
|
3
|
+
module Locomotive::Steam
|
4
|
+
|
5
|
+
class ContentEntry
|
6
|
+
|
7
|
+
include Locomotive::Steam::Models::Entity
|
8
|
+
|
9
|
+
attr_accessor :content_type
|
10
|
+
|
11
|
+
def initialize(attributes = {})
|
12
|
+
super({
|
13
|
+
_visible: true,
|
14
|
+
_position: 0,
|
15
|
+
created_at: Time.zone.now,
|
16
|
+
updated_at: Time.zone.now
|
17
|
+
}.merge(attributes))
|
18
|
+
end
|
19
|
+
|
20
|
+
def _visible?; !!self[:_visible]; end
|
21
|
+
alias :visible? :_visible?
|
22
|
+
|
23
|
+
def _slug; self[:_slug]; end
|
24
|
+
alias :_permalink :_slug
|
25
|
+
|
26
|
+
def method_missing(name, *args, &block)
|
27
|
+
if is_dynamic_attribute?(name)
|
28
|
+
cast_value(name)
|
29
|
+
elsif attributes.include?(name)
|
30
|
+
self[name]
|
31
|
+
else
|
32
|
+
super
|
33
|
+
end
|
34
|
+
end
|
35
|
+
|
36
|
+
def valid?
|
37
|
+
errors.clear
|
38
|
+
content_type.fields.required.each do |field|
|
39
|
+
errors.add_on_blank(field.name.to_sym)
|
40
|
+
end
|
41
|
+
errors.empty?
|
42
|
+
end
|
43
|
+
|
44
|
+
def content_type
|
45
|
+
@content_type || attributes[:content_type]
|
46
|
+
end
|
47
|
+
|
48
|
+
def content_type_id
|
49
|
+
@content_type.try(&:_id) || attributes[:content_type_id]
|
50
|
+
end
|
51
|
+
|
52
|
+
def content_type_slug
|
53
|
+
content_type.slug
|
54
|
+
end
|
55
|
+
|
56
|
+
def _class_name
|
57
|
+
"Locomotive::ContentEntry#{content_type_id}"
|
58
|
+
end
|
59
|
+
|
60
|
+
def _label
|
61
|
+
self[content_type.label_field_name]
|
62
|
+
end
|
63
|
+
|
64
|
+
def to_liquid
|
65
|
+
Locomotive::Steam::Liquid::Drops::ContentEntry.new(self)
|
66
|
+
end
|
67
|
+
|
68
|
+
private
|
69
|
+
|
70
|
+
def is_dynamic_attribute?(name)
|
71
|
+
content_type.fields_by_name.has_key?(name)
|
72
|
+
end
|
73
|
+
|
74
|
+
def cast_value(name)
|
75
|
+
field = content_type.fields_by_name[name]
|
76
|
+
|
77
|
+
begin
|
78
|
+
_cast_value(field)
|
79
|
+
rescue Exception => e
|
80
|
+
Locomotive::Common::Logger.info "[#{content_type.slug}][#{_label}] Unable to cast the \"#{name}\" field, reason: #{e.message}".yellow
|
81
|
+
nil
|
82
|
+
end
|
83
|
+
end
|
84
|
+
|
85
|
+
def _cast_value(field)
|
86
|
+
if private_methods.include?(:"_cast_#{field.type}")
|
87
|
+
send(:"_cast_#{field.type}", field)
|
88
|
+
else
|
89
|
+
attributes[field.name]
|
90
|
+
end
|
91
|
+
end
|
92
|
+
|
93
|
+
def _cast_integer(field)
|
94
|
+
_cast_convertor(field.name, &:to_i)
|
95
|
+
end
|
96
|
+
|
97
|
+
def _cast_float(field)
|
98
|
+
_cast_convertor(field.name, &:to_f)
|
99
|
+
end
|
100
|
+
|
101
|
+
def _cast_file(field)
|
102
|
+
_cast_convertor(field.name) do |value|
|
103
|
+
FileField.new(value, base_url, self.updated_at)
|
104
|
+
end
|
105
|
+
end
|
106
|
+
|
107
|
+
def _cast_date(field)
|
108
|
+
_cast_time(field, :to_date)
|
109
|
+
end
|
110
|
+
|
111
|
+
def _cast_date_time(field)
|
112
|
+
_cast_time(field, :to_date)
|
113
|
+
end
|
114
|
+
|
115
|
+
def _cast_time(field, end_method)
|
116
|
+
_cast_convertor(field.name) do |value|
|
117
|
+
value.is_a?(String) ? Chronic.parse(value).send(end_method) : value
|
118
|
+
end
|
119
|
+
end
|
120
|
+
|
121
|
+
def _cast_select(field)
|
122
|
+
_cast_convertor(:"#{field.name}_id") do |value|
|
123
|
+
field.select_options.find(value).try(:name)
|
124
|
+
end
|
125
|
+
end
|
126
|
+
|
127
|
+
def _cast_convertor(name, &block)
|
128
|
+
if (value = attributes[name]).respond_to?(:translations)
|
129
|
+
value.each { |l, _value| value[l] = yield(_value) }
|
130
|
+
value
|
131
|
+
else
|
132
|
+
yield(value)
|
133
|
+
end
|
134
|
+
end
|
135
|
+
|
136
|
+
# Represent a file
|
137
|
+
class FileField < Struct.new(:filename, :base, :updated_at)
|
138
|
+
|
139
|
+
def url
|
140
|
+
"#{base}/#{filename}"
|
141
|
+
end
|
142
|
+
|
143
|
+
def to_liquid
|
144
|
+
Locomotive::Steam::Liquid::Drops::UploadedFile.new(self)
|
145
|
+
end
|
146
|
+
|
147
|
+
end
|
148
|
+
|
149
|
+
end
|
150
|
+
|
151
|
+
end
|