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
@@ -1,15 +1,9 @@
|
|
1
|
-
require_relative 'middlewares/
|
1
|
+
require_relative 'middlewares/threadsafe'
|
2
|
+
require_relative 'middlewares/helpers'
|
2
3
|
|
3
|
-
|
4
|
-
require_relative 'middlewares/static_assets'
|
5
|
-
require_relative 'middlewares/dynamic_assets'
|
6
|
-
require_relative 'middlewares/logging'
|
7
|
-
require_relative 'middlewares/entry_submission'
|
8
|
-
require_relative 'middlewares/path'
|
9
|
-
require_relative 'middlewares/locale'
|
10
|
-
require_relative 'middlewares/page'
|
11
|
-
require_relative 'middlewares/timezone'
|
12
|
-
require_relative 'middlewares/templatized_page'
|
13
|
-
require_relative 'middlewares/renderer'
|
4
|
+
require_relative_all 'middlewares'
|
14
5
|
|
15
|
-
|
6
|
+
module Locomotive::Steam
|
7
|
+
module Middlewares
|
8
|
+
end
|
9
|
+
end
|
@@ -0,0 +1,25 @@
|
|
1
|
+
module Locomotive::Steam
|
2
|
+
module Middlewares
|
3
|
+
|
4
|
+
class DefaultEnv < Struct.new(:app)
|
5
|
+
|
6
|
+
def call(env)
|
7
|
+
request = Rack::Request.new(env)
|
8
|
+
|
9
|
+
env['steam.request'] = request
|
10
|
+
env['steam.services'] = build_services(request)
|
11
|
+
env['steam.liquid_assigns'] = {}
|
12
|
+
|
13
|
+
app.call(env)
|
14
|
+
end
|
15
|
+
|
16
|
+
private
|
17
|
+
|
18
|
+
def build_services(request)
|
19
|
+
Locomotive::Steam::Services.build_instance(request)
|
20
|
+
end
|
21
|
+
|
22
|
+
end
|
23
|
+
|
24
|
+
end
|
25
|
+
end
|
@@ -3,38 +3,55 @@ require 'coffee_script'
|
|
3
3
|
module Locomotive::Steam
|
4
4
|
module Middlewares
|
5
5
|
|
6
|
-
class DynamicAssets
|
6
|
+
class DynamicAssets
|
7
7
|
|
8
8
|
attr_reader :app, :regexp
|
9
9
|
|
10
|
-
def initialize(app)
|
11
|
-
|
10
|
+
def initialize(app, options)
|
11
|
+
@app = app
|
12
|
+
@regexp = /^\/(javascripts|stylesheets)\/(.*)$/o
|
12
13
|
|
13
|
-
@
|
14
|
-
|
14
|
+
@assets = ::Sprockets::Environment.new(options[:root]).tap do |env|
|
15
|
+
install_yui_compressor(env, options)
|
15
16
|
|
16
|
-
|
17
|
-
|
17
|
+
%w(fonts stylesheets javascripts).each do |name|
|
18
|
+
env.append_path File.join(options[:root], name)
|
19
|
+
end
|
20
|
+
end
|
18
21
|
end
|
19
22
|
|
20
|
-
def
|
23
|
+
def call(env)
|
21
24
|
if env['PATH_INFO'] =~ self.regexp
|
22
25
|
env['PATH_INFO'] = $2
|
26
|
+
@assets.call(env)
|
27
|
+
else
|
28
|
+
app.call(env)
|
29
|
+
end
|
30
|
+
end
|
23
31
|
|
24
|
-
|
32
|
+
private
|
25
33
|
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
34
|
+
def install_yui_compressor(sprockets, options)
|
35
|
+
return unless options[:minify]
|
36
|
+
|
37
|
+
require 'yui/compressor'
|
38
|
+
|
39
|
+
if is_java_installed?
|
40
|
+
# minify javascripts and stylesheets
|
41
|
+
sprockets.js_compressor = YUI::JavaScriptCompressor.new
|
42
|
+
sprockets.css_compressor = YUI::CssCompressor.new
|
32
43
|
else
|
33
|
-
|
44
|
+
message = "[Important] YUICompressor requires java to be installed. The JAVA_HOME variable should also be set.\n"
|
45
|
+
Locomotive::Common::Logger.warn message.red
|
46
|
+
false
|
34
47
|
end
|
35
48
|
end
|
36
49
|
|
50
|
+
def is_java_installed?
|
51
|
+
`which java` != '' && (!ENV['JAVA_HOME'].blank? && File.exists?(ENV['JAVA_HOME']))
|
52
|
+
end
|
53
|
+
|
37
54
|
end
|
38
55
|
|
39
56
|
end
|
40
|
-
end
|
57
|
+
end
|
@@ -1,120 +1,158 @@
|
|
1
1
|
module Locomotive::Steam
|
2
2
|
module Middlewares
|
3
3
|
|
4
|
-
#
|
4
|
+
# Submit a content entry and persist it
|
5
5
|
#
|
6
|
-
class EntrySubmission <
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
6
|
+
class EntrySubmission < ThreadSafe
|
7
|
+
|
8
|
+
include Helpers
|
9
|
+
|
10
|
+
HTTP_REGEXP = /^https?:\/\//o
|
11
|
+
ENTRY_SUBMISSION_REGEXP = /^\/entry_submissions\/(\w+)/o
|
12
|
+
SUBMITTED_TYPE_PARAM = 'submitted_type_slug'
|
13
|
+
SUBMITTED_PARAM = 'submitted_entry_slug'
|
14
|
+
|
15
|
+
def _call
|
16
|
+
# we didn't go through the locale middleware yet,
|
17
|
+
# so set the locale manually. Needed to build a localized
|
18
|
+
# version of the entry + error messages (if present).
|
19
|
+
with_locale do
|
20
|
+
if slug = get_content_type_slug
|
21
|
+
entry = create_entry(slug)
|
22
|
+
navigation_behavior(entry)
|
23
23
|
else
|
24
|
-
|
25
|
-
if self.callback_url =~ /^http:\/\//
|
26
|
-
self.redirect_to self.callback_url
|
27
|
-
else
|
28
|
-
env['PATH_INFO'] = self.callback_url
|
29
|
-
self.liquid_assigns[@content_type.slug.singularize] = @entry
|
30
|
-
app.call(env)
|
31
|
-
end
|
32
|
-
elsif self.json?
|
33
|
-
self.json_response(422)
|
34
|
-
end
|
24
|
+
fetch_entry
|
35
25
|
end
|
26
|
+
end
|
27
|
+
end
|
28
|
+
|
29
|
+
# Render or redirect depending on:
|
30
|
+
# - the status of the content entry (valid or not)
|
31
|
+
# - the presence of a callback or not
|
32
|
+
# - the type of response asked by the browser (html or json)
|
33
|
+
#
|
34
|
+
def navigation_behavior(entry)
|
35
|
+
if entry.errors.empty?
|
36
|
+
navigation_success(entry)
|
36
37
|
else
|
37
|
-
|
38
|
+
navigation_error(entry)
|
39
|
+
end
|
40
|
+
end
|
38
41
|
|
39
|
-
|
42
|
+
def navigation_success(entry)
|
43
|
+
if html?
|
44
|
+
redirect_to success_location(entry_to_query_string(entry))
|
45
|
+
elsif json?
|
46
|
+
json_response(entry)
|
40
47
|
end
|
41
48
|
end
|
42
49
|
|
43
|
-
|
50
|
+
def navigation_error(entry)
|
51
|
+
if html?
|
52
|
+
navigation_html_error(entry)
|
53
|
+
elsif json?
|
54
|
+
json_response(entry, 422)
|
55
|
+
end
|
56
|
+
end
|
44
57
|
|
45
|
-
def
|
46
|
-
|
47
|
-
|
58
|
+
def navigation_html_error(entry)
|
59
|
+
if error_location =~ HTTP_REGEXP
|
60
|
+
redirect_to error_location
|
61
|
+
else
|
62
|
+
env['PATH_INFO'] = error_location
|
63
|
+
store_in_liquid(entry)
|
64
|
+
self.next
|
65
|
+
end
|
48
66
|
end
|
49
67
|
|
50
|
-
|
51
|
-
|
52
|
-
|
68
|
+
private
|
69
|
+
|
70
|
+
def store_in_liquid(entry)
|
71
|
+
liquid_assigns[entry.content_type_slug.singularize] = entry
|
72
|
+
end
|
53
73
|
|
54
|
-
|
74
|
+
def entry_to_query_string(entry)
|
75
|
+
type, slug = entry.content_type_slug, entry._slug
|
76
|
+
"#{SUBMITTED_TYPE_PARAM}=#{type}&#{SUBMITTED_PARAM}=#{slug}"
|
77
|
+
end
|
55
78
|
|
56
|
-
|
57
|
-
|
79
|
+
def with_locale(&block)
|
80
|
+
locale = default_locale || params[:locale]
|
58
81
|
|
59
|
-
|
60
|
-
|
61
|
-
self.liquid_assigns[content_type.slug.singularize] = entry
|
62
|
-
end
|
82
|
+
if request.path_info =~ /^\/(#{site.locales.join('|')})+(\/|$)/
|
83
|
+
locale = $1
|
63
84
|
end
|
64
|
-
end
|
65
85
|
|
66
|
-
|
67
|
-
#
|
68
|
-
# @param [ String ] permalink The permalink (or slug) of the content type
|
69
|
-
#
|
70
|
-
#
|
71
|
-
def process_form(permalink)
|
72
|
-
permalink = permalink.split('.').first
|
86
|
+
services.locale = locale
|
73
87
|
|
74
|
-
|
88
|
+
I18n.with_locale(locale, &block)
|
89
|
+
end
|
75
90
|
|
76
|
-
|
91
|
+
def success_location(query); location(:success, query); end
|
92
|
+
def error_location; location(:error); end
|
77
93
|
|
78
|
-
|
94
|
+
def location(state, query = '')
|
95
|
+
location = params[:"#{state}_callback"] || (entry_submissions_path? ? '/' : request.path_info)
|
79
96
|
|
80
|
-
|
97
|
+
if query.blank?
|
98
|
+
location
|
99
|
+
else
|
100
|
+
location += (location.include?('?') ? '&' : '?') + query
|
101
|
+
end
|
102
|
+
end
|
81
103
|
|
82
|
-
|
83
|
-
|
104
|
+
def entry_submissions_path?
|
105
|
+
!(request.path_info =~ ENTRY_SUBMISSION_REGEXP).nil?
|
84
106
|
end
|
85
107
|
|
86
|
-
|
87
|
-
|
108
|
+
# Get the slug (or permalink) of the content type either from the PATH_INFO variable (old way)
|
109
|
+
# or from the presence of the content_type_slug param (model_form tag).
|
110
|
+
#
|
111
|
+
def get_content_type_slug
|
112
|
+
if request.post? && (request.path_info =~ ENTRY_SUBMISSION_REGEXP || params[:content_type_slug])
|
113
|
+
$1 || params[:content_type_slug]
|
114
|
+
end
|
88
115
|
end
|
89
116
|
|
90
|
-
#
|
117
|
+
# Create a content entry with a minimal validation.
|
91
118
|
#
|
92
|
-
# @param [
|
119
|
+
# @param [ String ] slug The slug (or permalink) of the content type
|
93
120
|
#
|
94
|
-
# @return [ Array ] The rack response depending on the validation status and the requested format
|
95
121
|
#
|
96
|
-
def
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
122
|
+
def create_entry(slug)
|
123
|
+
if entry = services.entry_submission.submit(slug, entry_attributes)
|
124
|
+
entry
|
125
|
+
else
|
126
|
+
raise %{Unknown content type "#{slug}"}
|
101
127
|
end
|
128
|
+
end
|
102
129
|
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
130
|
+
# Get the content entry from the params.
|
131
|
+
#
|
132
|
+
def fetch_entry
|
133
|
+
if (type_slug = params[SUBMITTED_TYPE_PARAM]) && (slug = params[SUBMITTED_PARAM])
|
134
|
+
if entry = services.entry_submission.find(type_slug, slug)
|
135
|
+
store_in_liquid(entry)
|
109
136
|
end
|
110
137
|
end
|
138
|
+
end
|
139
|
+
|
140
|
+
# Build the JSON response
|
141
|
+
#
|
142
|
+
# @param [ Integer ] status The HTTP return code
|
143
|
+
#
|
144
|
+
# @return [ Array ] The rack response depending on the validation status and the requested format
|
145
|
+
#
|
146
|
+
def json_response(entry, status = 200)
|
147
|
+
json = services.entry_submission.to_json(entry)
|
148
|
+
render_response(json, status, 'application/json')
|
149
|
+
end
|
111
150
|
|
112
|
-
|
113
|
-
|
114
|
-
]]
|
151
|
+
def entry_attributes
|
152
|
+
HashConverter.to_sym(params[:entry] || params[:content] || {})
|
115
153
|
end
|
116
154
|
|
117
155
|
end
|
118
156
|
|
119
157
|
end
|
120
|
-
end
|
158
|
+
end
|
@@ -1,10 +1,13 @@
|
|
1
1
|
module Locomotive::Steam
|
2
2
|
module Middlewares
|
3
3
|
|
4
|
-
class Favicon <
|
4
|
+
class Favicon < Struct.new(:app)
|
5
|
+
|
6
|
+
include Helpers
|
5
7
|
|
6
8
|
def call(env)
|
7
9
|
if env['PATH_INFO'] == '/favicon.ico'
|
10
|
+
# Default and empty Favicon rendered
|
8
11
|
[200, { 'Content-Type' => 'image/vnd.microsoft.icon' }, ['']]
|
9
12
|
else
|
10
13
|
app.call(env)
|
@@ -14,4 +17,4 @@ module Locomotive::Steam
|
|
14
17
|
end
|
15
18
|
|
16
19
|
end
|
17
|
-
end
|
20
|
+
end
|
@@ -0,0 +1,44 @@
|
|
1
|
+
module Locomotive::Steam
|
2
|
+
module Middlewares
|
3
|
+
|
4
|
+
module Helpers
|
5
|
+
|
6
|
+
def html?
|
7
|
+
['text/html', 'application/x-www-form-urlencoded'].include?(self.request.media_type) &&
|
8
|
+
!self.request.xhr? &&
|
9
|
+
!self.json?
|
10
|
+
end
|
11
|
+
|
12
|
+
def json?
|
13
|
+
self.request.content_type == 'application/json' || File.extname(self.request.path) == '.json'
|
14
|
+
end
|
15
|
+
|
16
|
+
def render_response(content, code = 200, type = 'text/html')
|
17
|
+
@next_response = [code, { 'Content-Type' => type }, [content]]
|
18
|
+
end
|
19
|
+
|
20
|
+
def redirect_to(location, type = 301)
|
21
|
+
self.log "Redirected to #{location}".blue
|
22
|
+
@next_response = [type, { 'Content-Type' => 'text/html', 'Location' => location }, []]
|
23
|
+
end
|
24
|
+
|
25
|
+
def modify_path(path = nil, &block)
|
26
|
+
path ||= request.path
|
27
|
+
|
28
|
+
segments = path.split('/')
|
29
|
+
yield(segments)
|
30
|
+
path = segments.join('/')
|
31
|
+
|
32
|
+
path = '/' if path.blank?
|
33
|
+
path += "?#{request.query_string}" unless request.query_string.empty?
|
34
|
+
path
|
35
|
+
end
|
36
|
+
|
37
|
+
def log(msg, offset = 2)
|
38
|
+
Locomotive::Common::Logger.info (' ' * offset) + msg
|
39
|
+
end
|
40
|
+
|
41
|
+
end
|
42
|
+
|
43
|
+
end
|
44
|
+
end
|
@@ -2,38 +2,46 @@ module Locomotive::Steam
|
|
2
2
|
module Middlewares
|
3
3
|
|
4
4
|
# Set the locale from the path if possible or use the default one
|
5
|
+
#
|
5
6
|
# Examples:
|
7
|
+
#
|
6
8
|
# /fr/index => locale = :fr
|
7
9
|
# /fr/ => locale = :fr
|
8
10
|
# /index => locale = :en (default one)
|
9
11
|
#
|
10
|
-
|
12
|
+
# The
|
13
|
+
#
|
14
|
+
class Locale < ThreadSafe
|
15
|
+
|
16
|
+
include Helpers
|
11
17
|
|
12
|
-
def _call
|
13
|
-
|
18
|
+
def _call
|
19
|
+
locale = extract_locale
|
14
20
|
|
15
|
-
|
21
|
+
log "Detecting locale #{locale.upcase}"
|
16
22
|
|
17
|
-
|
23
|
+
I18n.with_locale(locale) do
|
24
|
+
self.next
|
25
|
+
end
|
18
26
|
end
|
19
27
|
|
20
28
|
protected
|
21
29
|
|
22
|
-
def
|
23
|
-
|
24
|
-
|
25
|
-
if self.path =~ /^(#{self.site.locales.join('|')})+(\/|$)/
|
26
|
-
locale = $1
|
27
|
-
self.path = self.path.gsub($1 + $2, '')
|
28
|
-
self.path = 'index' if self.path.blank?
|
29
|
-
end
|
30
|
+
def extract_locale
|
31
|
+
_locale = params[:locale] || default_locale
|
32
|
+
_path = request.path_info
|
30
33
|
|
31
|
-
|
34
|
+
if _path =~ /^\/(#{site.locales.join('|')})+(\/|$)/
|
35
|
+
_locale = $1
|
36
|
+
_path = _path.gsub($1 + $2, '')
|
32
37
|
|
33
|
-
|
38
|
+
# let the other middlewares that the locale was
|
39
|
+
# extracted from the path.
|
40
|
+
env['steam.locale_in_path'] = true
|
41
|
+
end
|
34
42
|
|
35
|
-
env['steam.
|
36
|
-
env['steam.
|
43
|
+
env['steam.path'] = _path
|
44
|
+
env['steam.locale'] = services.locale = _locale
|
37
45
|
end
|
38
46
|
|
39
47
|
end
|