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
@@ -4,31 +4,40 @@ module Locomotive
|
|
4
4
|
module Tags
|
5
5
|
module Csrf
|
6
6
|
|
7
|
-
class
|
8
|
-
|
7
|
+
class Base < ::Liquid::Tag
|
9
8
|
def render(context)
|
10
|
-
|
11
|
-
end
|
9
|
+
service = context.registers[:services].csrf_protection
|
12
10
|
|
11
|
+
if service.enabled?
|
12
|
+
render_csrf(service)
|
13
|
+
|
14
|
+
else
|
15
|
+
''
|
16
|
+
end
|
17
|
+
end
|
13
18
|
end
|
14
19
|
|
15
|
-
class
|
20
|
+
class Param < Base
|
21
|
+
def render_csrf(service)
|
22
|
+
%(<input type="hidden" name="#{service.field}" value="#{service.token}" />)
|
23
|
+
end
|
24
|
+
end
|
16
25
|
|
17
|
-
|
26
|
+
class Meta < Base
|
27
|
+
def render_csrf(service)
|
18
28
|
%{
|
19
|
-
<meta name="csrf-param" content="
|
20
|
-
<meta name="csrf-token" content="
|
29
|
+
<meta name="csrf-param" content="#{service.field}" />
|
30
|
+
<meta name="csrf-token" content="#{service.token}" />
|
21
31
|
}
|
22
32
|
end
|
23
|
-
|
24
33
|
end
|
25
34
|
|
26
35
|
end
|
27
36
|
|
28
|
-
::Liquid::Template.register_tag('csrf_param', Csrf::Param)
|
29
|
-
::Liquid::Template.register_tag('csrf_meta', Csrf::Meta)
|
37
|
+
::Liquid::Template.register_tag('csrf_param'.freeze, Csrf::Param)
|
38
|
+
::Liquid::Template.register_tag('csrf_meta'.freeze, Csrf::Meta)
|
30
39
|
|
31
40
|
end
|
32
41
|
end
|
33
42
|
end
|
34
|
-
end
|
43
|
+
end
|
@@ -5,40 +5,79 @@ module Locomotive
|
|
5
5
|
module Editable
|
6
6
|
class Base < ::Liquid::Block
|
7
7
|
|
8
|
-
Syntax = /(#{::Liquid::QuotedFragment})(\s*,\s*#{::Liquid::Expression}+)?/
|
8
|
+
Syntax = /(#{::Liquid::QuotedFragment})(\s*,\s*#{::Liquid::Expression}+)?/o
|
9
9
|
|
10
|
-
|
10
|
+
attr_accessor :slug
|
11
|
+
|
12
|
+
def initialize(tag_name, markup, options)
|
11
13
|
if markup =~ Syntax
|
12
|
-
@slug
|
13
|
-
@
|
14
|
-
markup.scan(::Liquid::TagAttributes) { |key, value| @
|
14
|
+
@slug = $1.gsub(/[\"\']/, '')
|
15
|
+
@element_options = { fixed: false }
|
16
|
+
markup.scan(::Liquid::TagAttributes) { |key, value| @element_options[key.to_sym] = value.gsub(/^[\"\']/, '').gsub(/[\"\']$/, '') }
|
15
17
|
else
|
16
|
-
raise ::Liquid::SyntaxError.new(
|
18
|
+
raise ::Liquid::SyntaxError.new("Valid syntax: #{tag_name} <slug>(, <options>)")
|
17
19
|
end
|
18
20
|
|
19
21
|
super
|
20
22
|
end
|
21
23
|
|
22
|
-
def
|
23
|
-
|
24
|
+
def parse(tokens)
|
25
|
+
super
|
24
26
|
|
25
|
-
|
27
|
+
if listener = options[:events_listener]
|
28
|
+
listener.emit(@tag_name.to_sym, page: options[:page], attributes: default_element_attributes)
|
29
|
+
end
|
30
|
+
end
|
31
|
+
|
32
|
+
def render(context)
|
33
|
+
service = context.registers[:services].editable_element
|
34
|
+
page = context.registers[:page]
|
35
|
+
block = context['block'].try(:name)
|
26
36
|
|
27
|
-
if element.
|
37
|
+
if element = service.find(page, block, @slug)
|
28
38
|
render_element(context, element)
|
29
39
|
else
|
40
|
+
# Locomotive::Common::Logger.error "[#{page.fullpath}] missing #{@tag_name} \"#{@slug}\" (#{context['block'].try(:name) || 'default'})"
|
30
41
|
super
|
31
42
|
end
|
32
43
|
end
|
33
44
|
|
34
45
|
protected
|
35
46
|
|
36
|
-
def
|
37
|
-
|
47
|
+
def default_element_attributes
|
48
|
+
{
|
49
|
+
block: self.current_inherited_block_name,
|
50
|
+
slug: @slug,
|
51
|
+
hint: @element_options[:hint],
|
52
|
+
priority: @element_options[:priority] || 0,
|
53
|
+
fixed: !!@element_options[:fixed],
|
54
|
+
disabled: false,
|
55
|
+
inline_editing: true,
|
56
|
+
from_parent: false
|
57
|
+
}
|
58
|
+
end
|
59
|
+
|
60
|
+
def current_inherited_block_name
|
61
|
+
@element_options[:block] || current_inherited_block.try(:name)
|
62
|
+
end
|
63
|
+
|
64
|
+
def current_inherited_block
|
65
|
+
options[:inherited_blocks].try(:[], :nested).try(:last)
|
66
|
+
end
|
67
|
+
|
68
|
+
def render_default_content
|
69
|
+
begin
|
70
|
+
if nodelist.all? { |n| n.is_a? String }
|
71
|
+
@body.render(::Liquid::Context.new)
|
72
|
+
else
|
73
|
+
raise ::Liquid::SyntaxError.new("No liquid tags are allowed inside the #{@tag_name} \"#{@slug}\" (block: #{current_inherited_block_name || 'default'})")
|
74
|
+
end
|
75
|
+
end
|
38
76
|
end
|
39
77
|
|
40
|
-
|
41
|
-
|
78
|
+
#:nocov:
|
79
|
+
def render_element(element)
|
80
|
+
raise 'FIXME: has to be overidden'
|
42
81
|
end
|
43
82
|
|
44
83
|
end
|
@@ -47,4 +86,4 @@ module Locomotive
|
|
47
86
|
end
|
48
87
|
end
|
49
88
|
end
|
50
|
-
end
|
89
|
+
end
|
@@ -5,15 +5,28 @@ module Locomotive
|
|
5
5
|
module Editable
|
6
6
|
class Control < Base
|
7
7
|
|
8
|
-
|
9
|
-
|
8
|
+
protected
|
9
|
+
|
10
|
+
def default_element_attributes
|
11
|
+
super.merge({
|
12
|
+
content: render_default_content,
|
13
|
+
options: @element_options[:options]
|
14
|
+
})
|
15
|
+
end
|
16
|
+
|
17
|
+
def render_element(context, element)
|
18
|
+
element.content
|
19
|
+
end
|
20
|
+
|
21
|
+
def render_default_content
|
22
|
+
super.try(:strip)
|
10
23
|
end
|
11
24
|
|
12
25
|
end
|
13
26
|
|
14
|
-
::Liquid::Template.register_tag('editable_control', Control)
|
27
|
+
::Liquid::Template.register_tag('editable_control'.freeze, Control)
|
15
28
|
end
|
16
29
|
end
|
17
30
|
end
|
18
31
|
end
|
19
|
-
end
|
32
|
+
end
|
@@ -5,11 +5,43 @@ module Locomotive
|
|
5
5
|
module Editable
|
6
6
|
class File < Base
|
7
7
|
|
8
|
+
protected
|
9
|
+
|
10
|
+
def default_element_attributes
|
11
|
+
super.merge({
|
12
|
+
default_source_url: render_default_content.strip
|
13
|
+
})
|
14
|
+
end
|
15
|
+
|
16
|
+
def render_element(context, element)
|
17
|
+
default_timestamp = context.registers[:page].updated_at.to_i
|
18
|
+
|
19
|
+
url, timestamp = (if element.source
|
20
|
+
[source_url(element), default_timestamp]
|
21
|
+
else
|
22
|
+
if element.default_source_url.present?
|
23
|
+
[element.default_source_url, default_timestamp]
|
24
|
+
else
|
25
|
+
[render_default_content, nil]
|
26
|
+
end
|
27
|
+
end)
|
28
|
+
|
29
|
+
context.registers[:services].asset_host.compute(url, timestamp)
|
30
|
+
end
|
31
|
+
|
32
|
+
def source_url(element)
|
33
|
+
if element.source =~ /^https?/
|
34
|
+
element.source
|
35
|
+
else
|
36
|
+
"#{element.base_url}/#{element.source}"
|
37
|
+
end
|
38
|
+
end
|
39
|
+
|
8
40
|
end
|
9
41
|
|
10
|
-
::Liquid::Template.register_tag('editable_file', File)
|
42
|
+
::Liquid::Template.register_tag('editable_file'.freeze, File)
|
11
43
|
end
|
12
44
|
end
|
13
45
|
end
|
14
46
|
end
|
15
|
-
end
|
47
|
+
end
|
@@ -5,11 +5,63 @@ module Locomotive
|
|
5
5
|
module Editable
|
6
6
|
class Text < Base
|
7
7
|
|
8
|
+
protected
|
9
|
+
|
10
|
+
def render_element(context, element)
|
11
|
+
with_inline_editing(context, element) do
|
12
|
+
if element.default_content?
|
13
|
+
render_default_content
|
14
|
+
else
|
15
|
+
element.content
|
16
|
+
end
|
17
|
+
end
|
18
|
+
end
|
19
|
+
|
20
|
+
def with_inline_editing(context, element, &block)
|
21
|
+
if editable?(context, element)
|
22
|
+
%{<span class="locomotive-editable-text" data-element-id="#{element.id}">#{yield}</span>}
|
23
|
+
else
|
24
|
+
yield
|
25
|
+
end
|
26
|
+
end
|
27
|
+
|
28
|
+
def editable?(context, element)
|
29
|
+
!!context['inline_editing'] && element.inline_editing?
|
30
|
+
end
|
31
|
+
|
32
|
+
def default_element_attributes
|
33
|
+
super.merge(
|
34
|
+
content_from_default: self.render_default_content,
|
35
|
+
format: @options[:format] || 'html',
|
36
|
+
rows: @options[:rows] || 10,
|
37
|
+
line_break: @options[:line_break].blank? ? true : @options[:line_break]
|
38
|
+
)
|
39
|
+
end
|
40
|
+
|
41
|
+
end
|
42
|
+
|
43
|
+
::Liquid::Template.register_tag('editable_text'.freeze, Text)
|
44
|
+
|
45
|
+
class ShortText < Text
|
46
|
+
def initialize(tag_name, markup, options)
|
47
|
+
Locomotive::Common::Logger.warn %(The "#{tag_name}" liquid tag is deprecated. Use "editable_text" instead.).yellow
|
48
|
+
super
|
49
|
+
end
|
50
|
+
def default_element_attributes
|
51
|
+
super.merge(format: 'raw', rows: 2, line_break: false)
|
52
|
+
end
|
53
|
+
end
|
54
|
+
::Liquid::Template.register_tag('editable_short_text'.freeze, ShortText)
|
55
|
+
|
56
|
+
class LongText < ShortText
|
57
|
+
def default_element_attributes
|
58
|
+
super.merge(format: 'html', rows: 15, line_break: true)
|
59
|
+
end
|
8
60
|
end
|
61
|
+
::Liquid::Template.register_tag('editable_long_text'.freeze, LongText)
|
9
62
|
|
10
|
-
::Liquid::Template.register_tag('editable_text', Text)
|
11
63
|
end
|
12
64
|
end
|
13
65
|
end
|
14
66
|
end
|
15
|
-
end
|
67
|
+
end
|
@@ -4,22 +4,59 @@ module Locomotive
|
|
4
4
|
module Tags
|
5
5
|
class Extends < ::Liquid::Extends
|
6
6
|
|
7
|
+
private
|
8
|
+
|
7
9
|
def parse_parent_template
|
8
|
-
|
10
|
+
parent = options[:parent_finder].find(options[:page], @template_name)
|
11
|
+
|
12
|
+
# no need to go further if the parent does not exist
|
13
|
+
raise PageNotFound.new("Page with fullpath '#{@template_name}' was not found") if parent.nil?
|
9
14
|
|
10
|
-
|
11
|
-
|
12
|
-
else
|
13
|
-
mounting_point.pages[@template_name]
|
15
|
+
if listener = options[:events_listener]
|
16
|
+
listener.emit(:extends, page: options[:page], parent: parent)
|
14
17
|
end
|
15
18
|
|
16
|
-
|
19
|
+
# the source has already been parsed before
|
20
|
+
options[:parser]._parse(parent, options.merge(page: parent))
|
21
|
+
# parent.template || ::Liquid::Template.parse(parent.source, options.merge(page: parent))
|
17
22
|
end
|
18
23
|
|
19
24
|
end
|
20
25
|
|
21
|
-
::Liquid::Template.register_tag('extends', Extends)
|
26
|
+
::Liquid::Template.register_tag('extends'.freeze, Extends)
|
22
27
|
end
|
23
28
|
end
|
24
29
|
end
|
25
|
-
end
|
30
|
+
end
|
31
|
+
|
32
|
+
# def prepare_parsing
|
33
|
+
# super
|
34
|
+
|
35
|
+
# parent_page = @context[:parent_page]
|
36
|
+
|
37
|
+
# @context[:page].merge_editable_elements_from_page(parent_page)
|
38
|
+
|
39
|
+
# @context[:snippets] = parent_page.snippet_dependencies
|
40
|
+
# @context[:templates] = ([*parent_page.template_dependencies] + [parent_page.id]).compact
|
41
|
+
# end
|
42
|
+
|
43
|
+
# if @template_name == 'parent'
|
44
|
+
# @context[:parent_page] = @context[:cached_parent] || @context[:page].parent
|
45
|
+
# else
|
46
|
+
# locale = ::Mongoid::Fields::I18n.locale
|
47
|
+
|
48
|
+
# @context[:parent_page] = @context[:cached_pages].try(:[], @template_name) ||
|
49
|
+
# @context[:site].pages.where("fullpath.#{locale}" => @template_name).first
|
50
|
+
# end
|
51
|
+
|
52
|
+
# raise PageNotFound.new("Page with fullpath '#{@template_name}' was not found") if @context[:parent_page].nil?
|
53
|
+
|
54
|
+
# # be sure to work with a copy of the parent template otherwise there will be conflicts
|
55
|
+
# parent_template = @context[:parent_page].template.try(:clone)
|
56
|
+
|
57
|
+
# raise PageNotTranslated.new("Page with fullpath '#{@template_name}' was not translated") if parent_template.nil?
|
58
|
+
|
59
|
+
# # force the page to restore the original version of its template (from the serialized version)
|
60
|
+
# @context[:parent_page].instance_variable_set(:@template, nil)
|
61
|
+
|
62
|
+
# parent_template
|
@@ -0,0 +1,38 @@
|
|
1
|
+
module Locomotive
|
2
|
+
module Steam
|
3
|
+
module Liquid
|
4
|
+
module Tags
|
5
|
+
|
6
|
+
# Fetch a page from its handle and assign it to a liquid variable.
|
7
|
+
#
|
8
|
+
# Usage:
|
9
|
+
#
|
10
|
+
# {% fetch_page about_us as a_page %}
|
11
|
+
# <p>{{ a_page.title }}</p>
|
12
|
+
#
|
13
|
+
class FetchPage < ::Liquid::Tag
|
14
|
+
|
15
|
+
Syntax = /(#{::Liquid::VariableSignature}+)\s+as\s+(#{::Liquid::VariableSignature}+)/o
|
16
|
+
|
17
|
+
def initialize(tag_name, markup, options)
|
18
|
+
if markup =~ Syntax
|
19
|
+
@handle, @var = $1, $2
|
20
|
+
else
|
21
|
+
raise SyntaxError.new("Syntax Error in 'fetch_page' - Valid syntax: fetch_page page_handle as variable")
|
22
|
+
end
|
23
|
+
|
24
|
+
super
|
25
|
+
end
|
26
|
+
|
27
|
+
def render(context)
|
28
|
+
page = context.registers[:repositories].page.by_handle(@handle)
|
29
|
+
context.scopes.last[@var] = page
|
30
|
+
''
|
31
|
+
end
|
32
|
+
end
|
33
|
+
|
34
|
+
::Liquid::Template.register_tag('fetch_page'.freeze, FetchPage)
|
35
|
+
end
|
36
|
+
end
|
37
|
+
end
|
38
|
+
end
|
@@ -2,27 +2,40 @@ module Locomotive
|
|
2
2
|
module Steam
|
3
3
|
module Liquid
|
4
4
|
module Tags
|
5
|
-
class GoogleAnalytics < ::
|
5
|
+
class GoogleAnalytics < ::Solid::Tag
|
6
6
|
|
7
|
-
|
7
|
+
tag_name :google_analytics
|
8
8
|
|
9
|
-
def
|
10
|
-
if
|
11
|
-
|
9
|
+
def display(account_id = nil)
|
10
|
+
if account_id.blank?
|
11
|
+
raise ::Liquid::SyntaxError.new("Syntax Error in 'google_analytics' - Valid syntax: google_analytics <account_id>")
|
12
12
|
else
|
13
|
-
|
13
|
+
ga_snippet(account_id)
|
14
14
|
end
|
15
|
-
|
16
|
-
super
|
17
15
|
end
|
18
16
|
|
19
|
-
|
20
|
-
|
17
|
+
private
|
18
|
+
|
19
|
+
def ga_snippet(account_id)
|
20
|
+
%{
|
21
|
+
<script type="text/javascript">
|
22
|
+
|
23
|
+
var _gaq = _gaq || [];
|
24
|
+
_gaq.push(['_setAccount', '#{account_id}']);
|
25
|
+
_gaq.push(['_trackPageview']);
|
26
|
+
|
27
|
+
(function() \{
|
28
|
+
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
|
29
|
+
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
|
30
|
+
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
|
31
|
+
\})();
|
32
|
+
|
33
|
+
</script>}
|
21
34
|
end
|
35
|
+
|
22
36
|
end
|
23
37
|
|
24
|
-
::Liquid::Template.register_tag('google_analytics', GoogleAnalytics)
|
25
38
|
end
|
26
39
|
end
|
27
40
|
end
|
28
|
-
end
|
41
|
+
end
|