locomotivecms_steam 0.1.2.pre.beta → 1.0.0.pre.alpha
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitignore +3 -0
- data/.travis.yml +8 -1
- data/Gemfile +17 -8
- data/Gemfile.lock +160 -113
- data/LICENSE +1 -1
- data/README.md +36 -15
- data/Rakefile +27 -1
- data/bin/steam.rb +97 -0
- data/config/locales/en.yml +2 -1
- data/config/locales/fr.yml +2 -1
- data/lib/locomotive/steam.rb +28 -19
- data/lib/locomotive/steam/adapters/concerns/key.rb +15 -0
- data/lib/locomotive/steam/adapters/filesystem.rb +124 -0
- data/lib/locomotive/steam/adapters/filesystem/sanitizer.rb +54 -0
- data/lib/locomotive/steam/adapters/filesystem/sanitizers/content_entry.rb +86 -0
- data/lib/locomotive/steam/adapters/filesystem/sanitizers/content_type.rb +21 -0
- data/lib/locomotive/steam/adapters/filesystem/sanitizers/page.rb +160 -0
- data/lib/locomotive/steam/adapters/filesystem/sanitizers/simple.rb +15 -0
- data/lib/locomotive/steam/adapters/filesystem/sanitizers/snippet.rb +33 -0
- data/lib/locomotive/steam/adapters/filesystem/simple_cache_store.rb +38 -0
- data/lib/locomotive/steam/adapters/filesystem/yaml_loader.rb +47 -0
- data/lib/locomotive/steam/adapters/filesystem/yaml_loaders/content_entry.rb +87 -0
- data/lib/locomotive/steam/adapters/filesystem/yaml_loaders/content_type.rb +96 -0
- data/lib/locomotive/steam/adapters/filesystem/yaml_loaders/page.rb +145 -0
- data/lib/locomotive/steam/adapters/filesystem/yaml_loaders/site.rb +25 -0
- data/lib/locomotive/steam/adapters/filesystem/yaml_loaders/snippet.rb +66 -0
- data/lib/locomotive/steam/adapters/filesystem/yaml_loaders/theme_asset.rb +21 -0
- data/lib/locomotive/steam/adapters/filesystem/yaml_loaders/translation.rb +72 -0
- data/lib/locomotive/steam/adapters/memory.rb +55 -0
- data/lib/locomotive/steam/adapters/memory/condition.rb +103 -0
- data/lib/locomotive/steam/adapters/memory/dataset.rb +77 -0
- data/lib/locomotive/steam/adapters/memory/order.rb +60 -0
- data/lib/locomotive/steam/adapters/memory/query.rb +116 -0
- data/lib/locomotive/steam/adapters/mongodb.rb +83 -0
- data/lib/locomotive/steam/adapters/mongodb/dataset.rb +20 -0
- data/lib/locomotive/steam/adapters/mongodb/origin.rb +3 -0
- data/lib/locomotive/steam/adapters/mongodb/query.rb +82 -0
- data/lib/locomotive/steam/configuration.rb +106 -2
- data/lib/locomotive/steam/core_ext.rb +2 -1
- data/lib/locomotive/steam/core_ext/hash.rb +31 -19
- data/lib/locomotive/steam/core_ext/kernel.rb +14 -0
- data/lib/locomotive/steam/core_ext/string.rb +35 -6
- data/lib/locomotive/steam/decorators/i18n_decorator.rb +99 -0
- data/lib/locomotive/steam/decorators/template_decorator.rb +37 -0
- data/lib/locomotive/steam/entities/content_entry.rb +151 -0
- data/lib/locomotive/steam/entities/content_type.rb +44 -6
- data/lib/locomotive/steam/entities/content_type_field.rb +71 -0
- data/lib/locomotive/steam/entities/editable_element.rb +21 -0
- data/lib/locomotive/steam/entities/page.rb +48 -127
- data/lib/locomotive/steam/entities/site.rb +36 -27
- data/lib/locomotive/steam/entities/snippet.rb +20 -0
- data/lib/locomotive/steam/entities/theme_asset.rb +9 -0
- data/lib/locomotive/steam/entities/translation.rb +15 -0
- data/lib/locomotive/steam/initializers.rb +0 -4
- data/lib/locomotive/steam/initializers/dragonfly.rb +51 -11
- data/lib/locomotive/steam/initializers/i18n.rb +6 -3
- data/lib/locomotive/steam/initializers/sprockets.rb +4 -1
- data/lib/locomotive/steam/liquid.rb +4 -7
- data/lib/locomotive/steam/liquid/drops/base.rb +0 -1
- data/lib/locomotive/steam/liquid/drops/content_entry.rb +37 -16
- data/lib/locomotive/steam/liquid/drops/content_entry_collection.rb +77 -0
- data/lib/locomotive/steam/liquid/drops/content_types.rb +5 -102
- data/lib/locomotive/steam/liquid/drops/current_user.rb +23 -0
- data/lib/locomotive/steam/liquid/drops/i18n_base.rb +39 -0
- data/lib/locomotive/steam/liquid/drops/page.rb +77 -11
- data/lib/locomotive/steam/liquid/drops/session_proxy.rb +1 -1
- data/lib/locomotive/steam/liquid/drops/site.rb +14 -8
- data/lib/locomotive/steam/liquid/drops/upload_file.rb +23 -0
- data/lib/locomotive/steam/liquid/errors.rb +3 -9
- data/lib/locomotive/steam/liquid/filters/base.rb +62 -0
- data/lib/locomotive/steam/liquid/filters/date.rb +85 -61
- data/lib/locomotive/steam/liquid/filters/html.rb +30 -115
- data/lib/locomotive/steam/liquid/filters/misc.rb +6 -5
- data/lib/locomotive/steam/liquid/filters/pagination.rb +55 -0
- data/lib/locomotive/steam/liquid/filters/resize.rb +2 -3
- data/lib/locomotive/steam/liquid/filters/text.rb +15 -15
- data/lib/locomotive/steam/liquid/filters/translate.rb +5 -14
- data/lib/locomotive/steam/liquid/patches.rb +29 -23
- data/lib/locomotive/steam/liquid/tags/concerns/i18n_page.rb +36 -0
- data/lib/locomotive/steam/liquid/tags/concerns/path.rb +114 -0
- data/lib/locomotive/steam/liquid/tags/consume.rb +39 -43
- data/lib/locomotive/steam/liquid/tags/csrf.rb +21 -12
- data/lib/locomotive/steam/liquid/tags/editable.rb +1 -3
- data/lib/locomotive/steam/liquid/tags/editable/base.rb +54 -15
- data/lib/locomotive/steam/liquid/tags/editable/control.rb +17 -4
- data/lib/locomotive/steam/liquid/tags/editable/file.rb +34 -2
- data/lib/locomotive/steam/liquid/tags/editable/text.rb +54 -2
- data/lib/locomotive/steam/liquid/tags/extends.rb +45 -8
- data/lib/locomotive/steam/liquid/tags/fetch_page.rb +38 -0
- data/lib/locomotive/steam/liquid/tags/google_analytics.rb +25 -12
- data/lib/locomotive/steam/liquid/tags/hybrid.rb +24 -12
- data/lib/locomotive/steam/liquid/tags/inherited_block.rb +39 -0
- data/lib/locomotive/steam/liquid/tags/inline_editor.rb +14 -4
- data/lib/locomotive/steam/liquid/tags/link_to.rb +16 -27
- data/lib/locomotive/steam/liquid/tags/locale_switcher.rb +45 -56
- data/lib/locomotive/steam/liquid/tags/model_form.rb +72 -0
- data/lib/locomotive/steam/liquid/tags/nav.rb +65 -57
- data/lib/locomotive/steam/liquid/tags/paginate.rb +79 -47
- data/lib/locomotive/steam/liquid/tags/path_to.rb +8 -20
- data/lib/locomotive/steam/liquid/tags/seo.rb +8 -8
- data/lib/locomotive/steam/liquid/tags/session_assign.rb +6 -8
- data/lib/locomotive/steam/liquid/tags/snippet.rb +26 -42
- data/lib/locomotive/steam/liquid/tags/with_scope.rb +44 -26
- data/lib/locomotive/steam/middlewares.rb +7 -13
- data/lib/locomotive/steam/middlewares/default_env.rb +25 -0
- data/lib/locomotive/steam/middlewares/dynamic_assets.rb +34 -17
- data/lib/locomotive/steam/middlewares/entry_submission.rb +117 -79
- data/lib/locomotive/steam/middlewares/favicon.rb +5 -2
- data/lib/locomotive/steam/middlewares/helpers.rb +44 -0
- data/lib/locomotive/steam/middlewares/locale.rb +25 -17
- data/lib/locomotive/steam/middlewares/locale_redirection.rb +62 -0
- data/lib/locomotive/steam/middlewares/logging.rb +7 -3
- data/lib/locomotive/steam/middlewares/page.rb +17 -48
- data/lib/locomotive/steam/middlewares/path.rb +5 -8
- data/lib/locomotive/steam/middlewares/renderer.rb +65 -106
- data/lib/locomotive/steam/middlewares/robots.rb +20 -0
- data/lib/locomotive/steam/middlewares/site.rb +42 -0
- data/lib/locomotive/steam/middlewares/sitemap.rb +94 -0
- data/lib/locomotive/steam/middlewares/stack_proxy.rb +46 -0
- data/lib/locomotive/steam/middlewares/templatized_page.rb +40 -14
- data/lib/locomotive/steam/middlewares/threadsafe.rb +65 -0
- data/lib/locomotive/steam/middlewares/timezone.rb +10 -6
- data/lib/locomotive/steam/models.rb +12 -0
- data/lib/locomotive/steam/models/associations/belongs_to.rb +18 -0
- data/lib/locomotive/steam/models/associations/embedded.rb +43 -0
- data/lib/locomotive/steam/models/associations/has_many.rb +22 -0
- data/lib/locomotive/steam/models/associations/many_to_many.rb +22 -0
- data/lib/locomotive/steam/models/associations/referenced.rb +48 -0
- data/lib/locomotive/steam/models/concerns/validation.rb +58 -0
- data/lib/locomotive/steam/models/entity.rb +40 -0
- data/lib/locomotive/steam/models/i18n_field.rb +42 -0
- data/lib/locomotive/steam/models/mapper.rb +119 -0
- data/lib/locomotive/steam/models/pager.rb +53 -0
- data/lib/locomotive/steam/models/repository.rb +101 -0
- data/lib/locomotive/steam/models/scope.rb +31 -0
- data/lib/locomotive/steam/repositories.rb +51 -0
- data/lib/locomotive/steam/repositories/content_entry_repository.rb +183 -0
- data/lib/locomotive/steam/repositories/content_type_field_repository.rb +50 -0
- data/lib/locomotive/steam/repositories/content_type_field_select_option_repository.rb +23 -0
- data/lib/locomotive/steam/repositories/content_type_repository.rb +38 -0
- data/lib/locomotive/steam/repositories/editable_element_repository.rb +20 -0
- data/lib/locomotive/steam/repositories/page_repository.rb +86 -0
- data/lib/locomotive/steam/repositories/site_repository.rb +29 -0
- data/lib/locomotive/steam/repositories/snippet_repository.rb +19 -0
- data/lib/locomotive/steam/repositories/theme_asset_repository.rb +24 -0
- data/lib/locomotive/steam/repositories/translation_repository.rb +17 -0
- data/lib/locomotive/steam/server.rb +61 -40
- data/lib/locomotive/steam/services.rb +120 -1
- data/lib/locomotive/steam/services/asset_host_service.rb +51 -0
- data/lib/locomotive/steam/services/concerns/decorator.rb +35 -0
- data/lib/locomotive/steam/services/csrf_protection_service.rb +13 -0
- data/lib/locomotive/steam/services/editable_element_service.rb +19 -0
- data/lib/locomotive/steam/services/entry_submission_service.rb +91 -0
- data/lib/locomotive/steam/services/external_api_service.rb +55 -0
- data/lib/locomotive/steam/services/image_resizer_service.rb +49 -0
- data/lib/locomotive/steam/services/liquid_parser_service.rb +23 -0
- data/lib/locomotive/steam/services/markdown_service.rb +17 -0
- data/lib/locomotive/steam/services/no_cache_service.rb +17 -0
- data/lib/locomotive/steam/services/page_finder_service.rb +44 -0
- data/lib/locomotive/steam/services/parent_finder_service.rb +23 -0
- data/lib/locomotive/steam/services/site_finder_service.rb +13 -0
- data/lib/locomotive/steam/services/snippet_finder_service.rb +17 -0
- data/lib/locomotive/steam/services/textile_service.rb +17 -0
- data/lib/locomotive/steam/services/theme_asset_url_service.rb +43 -0
- data/lib/locomotive/steam/services/translator_service.rb +34 -0
- data/lib/locomotive/steam/services/url_builder_service.rb +40 -0
- data/lib/locomotive/steam/version.rb +1 -1
- data/locomotivecms_steam.gemspec +34 -28
- data/script/ci/before_build.sh +4 -0
- data/spec/fixtures/default/app/content_types/bands.yml +3 -1
- data/spec/fixtures/default/app/content_types/events.yml +2 -2
- data/spec/fixtures/default/app/views/pages/about_us.liquid.haml +2 -1
- data/spec/fixtures/default/app/views/pages/archives.liquid.haml +6 -0
- data/spec/fixtures/default/app/views/pages/basic.liquid.haml +1 -0
- data/spec/fixtures/default/app/views/pages/contest.liquid.haml +2 -1
- data/spec/fixtures/default/app/views/pages/events.fr.liquid +4 -0
- data/spec/fixtures/default/app/views/pages/events.liquid.haml +23 -1
- data/spec/fixtures/default/app/views/pages/filtered.liquid.haml +16 -5
- data/spec/fixtures/default/app/views/pages/grunge_bands.liquid.haml +2 -1
- data/spec/fixtures/default/app/views/pages/index.liquid.haml +12 -11
- data/spec/fixtures/default/app/views/pages/music.liquid.haml +1 -1
- data/spec/fixtures/default/app/views/pages/songs.liquid +6 -0
- data/spec/fixtures/default/app/views/pages/songs/song-number-1.liquid.haml +5 -0
- data/spec/fixtures/default/app/views/pages/store.liquid +2 -1
- data/spec/fixtures/default/app/views/pages/tags.liquid +6 -0
- data/spec/fixtures/default/app/views/pages/unlisted_pages.liquid.haml +2 -1
- data/spec/fixtures/default/app/views/snippets/song.fr.liquid.haml +1 -1
- data/spec/fixtures/default/config/deploy.yml +2 -2
- data/spec/fixtures/default/config/site.yml +7 -1
- data/spec/fixtures/default/data/bands.yml +3 -0
- data/spec/fixtures/mongodb/locomotive_accounts.bson +0 -0
- data/spec/fixtures/mongodb/locomotive_accounts.metadata.json +1 -0
- data/spec/fixtures/mongodb/locomotive_content_assets.bson +0 -0
- data/spec/fixtures/mongodb/locomotive_content_assets.metadata.json +1 -0
- data/spec/fixtures/mongodb/locomotive_content_entries.bson +0 -0
- data/spec/fixtures/mongodb/locomotive_content_entries.metadata.json +1 -0
- data/spec/fixtures/mongodb/locomotive_content_types.bson +0 -0
- data/spec/fixtures/mongodb/locomotive_content_types.metadata.json +1 -0
- data/spec/fixtures/mongodb/locomotive_pages.bson +0 -0
- data/spec/fixtures/mongodb/locomotive_pages.metadata.json +1 -0
- data/spec/fixtures/mongodb/locomotive_sites.bson +0 -0
- data/spec/fixtures/mongodb/locomotive_sites.metadata.json +1 -0
- data/spec/fixtures/mongodb/locomotive_snippets.bson +0 -0
- data/spec/fixtures/mongodb/locomotive_snippets.metadata.json +1 -0
- data/spec/fixtures/mongodb/locomotive_theme_assets.bson +0 -0
- data/spec/fixtures/mongodb/locomotive_theme_assets.metadata.json +1 -0
- data/spec/fixtures/mongodb/locomotive_translations.bson +0 -0
- data/spec/fixtures/mongodb/locomotive_translations.metadata.json +1 -0
- data/spec/fixtures/mongodb/sessions.bson +0 -0
- data/spec/fixtures/mongodb/sessions.metadata.json +1 -0
- data/spec/fixtures/mongodb/system.indexes.bson +0 -0
- data/spec/integration/integration_helper.rb +2 -2
- data/spec/integration/liquid/tags/paginate_spec.rb +79 -0
- data/spec/integration/repositories/content_entry_repository_spec.rb +94 -0
- data/spec/integration/repositories/content_type_repository_spec.rb +69 -0
- data/spec/integration/repositories/page_repository_spec.rb +105 -0
- data/spec/integration/repositories/site_repository_spec.rb +45 -0
- data/spec/integration/repositories/snippet_repository_spec.rb +50 -0
- data/spec/integration/repositories/theme_asset_repository_spec.rb +48 -0
- data/spec/integration/repositories/translation_repository_spec.rb +50 -0
- data/spec/integration/server/assets_spec.rb +60 -0
- data/spec/integration/server/basic_spec.rb +100 -100
- data/spec/integration/server/contact_form_spec.rb +96 -25
- data/spec/integration/server/liquid_spec.rb +19 -41
- data/spec/integration/server/nav_spec.rb +49 -0
- data/spec/integration/server/session_spec.rb +33 -0
- data/spec/integration/server/sitemap_spec.rb +34 -0
- data/spec/integration/server/with_scope_spec.rb +28 -2
- data/spec/integration/services/external_api_service_spec.rb +20 -0
- data/spec/locales/locales_spec.rb +7 -7
- data/spec/spec_helper.rb +27 -13
- data/spec/support.rb +5 -1
- data/spec/support/cache_store.rb +3 -0
- data/spec/support/helpers.rb +20 -23
- data/spec/support/liquid.rb +29 -0
- data/spec/support/pry.rb +4 -0
- data/spec/support/time.rb +3 -0
- data/spec/unit/adapters/filesystem/yaml_loaders/content_entry_spec.rb +50 -0
- data/spec/unit/adapters/filesystem/yaml_loaders/content_type_spec.rb +25 -0
- data/spec/unit/adapters/filesystem/yaml_loaders/page_spec.rb +25 -0
- data/spec/unit/adapters/filesystem/yaml_loaders/site_spec.rb +19 -0
- data/spec/unit/adapters/filesystem/yaml_loaders/snippet_spec.rb +26 -0
- data/spec/unit/adapters/filesystem/yaml_loaders/translation_spec.rb +25 -0
- data/spec/unit/adapters/filesystem_adapter_spec.rb +53 -0
- data/spec/unit/adapters/memory/condition_spec.rb +125 -0
- data/spec/unit/adapters/memory/dataset_spec.rb +73 -0
- data/spec/unit/adapters/memory/order_spec.rb +67 -0
- data/spec/unit/adapters/memory/query_spec.rb +85 -0
- data/spec/unit/adapters/memory_adapter_spec.rb +36 -0
- data/spec/unit/adapters/mongodb/query_spec.rb +68 -0
- data/spec/unit/adapters/mongodb_adapter_spec.rb +17 -0
- data/spec/unit/configuration_spec.rb +29 -0
- data/spec/unit/core_ext/string_spec.rb +44 -0
- data/spec/unit/decorators/i18n_decorator_spec.rb +80 -0
- data/spec/unit/entities/content_entry_spec.rb +159 -0
- data/spec/unit/entities/content_type_field_spec.rb +67 -0
- data/spec/unit/entities/content_type_spec.rb +59 -0
- data/spec/unit/entities/page_spec.rb +40 -34
- data/spec/unit/entities/site_spec.rb +56 -5
- data/spec/unit/initializers/dragonfly_spec.rb +31 -0
- data/spec/unit/liquid/drops/content_entry_collection_spec.rb +81 -0
- data/spec/unit/liquid/drops/content_entry_spec.rb +99 -0
- data/spec/unit/liquid/drops/content_types_spec.rb +25 -0
- data/spec/unit/liquid/drops/current_user_spec.rb +45 -0
- data/spec/unit/liquid/drops/page_spec.rb +134 -0
- data/spec/unit/liquid/drops/session_proxy_spec.rb +13 -0
- data/spec/unit/liquid/drops/site_spec.rb +49 -0
- data/spec/unit/liquid/filters/date_spec.rb +160 -0
- data/spec/unit/liquid/filters/html_spec.rb +263 -0
- data/spec/unit/liquid/filters/misc_spec.rb +108 -0
- data/spec/unit/liquid/filters/pagination_spec.rb +42 -0
- data/spec/unit/liquid/filters/resize_spec.rb +36 -0
- data/spec/unit/liquid/filters/text_spec.rb +56 -0
- data/spec/unit/liquid/filters/translate_spec.rb +33 -0
- data/spec/unit/liquid/patches_spec.rb +50 -0
- data/spec/unit/liquid/tags/consume_spec.rb +87 -0
- data/spec/unit/liquid/tags/csrf_spec.rb +47 -0
- data/spec/unit/liquid/tags/editable/control_spec.rb +109 -0
- data/spec/unit/liquid/tags/editable/file_spec.rb +116 -0
- data/spec/unit/liquid/tags/editable/text_spec.rb +139 -0
- data/spec/unit/liquid/tags/extends_spec.rb +38 -0
- data/spec/unit/liquid/tags/fetch_page_spec.rb +39 -0
- data/spec/unit/liquid/tags/google_analytics_spec.rb +16 -0
- data/spec/unit/liquid/tags/inherited_block_spec.rb +33 -0
- data/spec/unit/liquid/tags/link_to_spec.rb +112 -0
- data/spec/unit/liquid/tags/locale_switcher_spec.rb +58 -0
- data/spec/unit/liquid/tags/model_form_spec.rb +35 -0
- data/spec/unit/liquid/tags/nav_spec.rb +184 -111
- data/spec/unit/liquid/tags/paginate_spec.rb +131 -0
- data/spec/unit/liquid/tags/path_to_spec.rb +100 -0
- data/spec/unit/liquid/tags/seo_spec.rb +85 -0
- data/spec/unit/liquid/tags/session_assign_spec.rb +51 -0
- data/spec/unit/liquid/tags/snippet_spec.rb +42 -0
- data/spec/unit/liquid/tags/with_scope_spec.rb +66 -0
- data/spec/unit/middlewares/dynamic_assets_spec.rb +25 -0
- data/spec/unit/middlewares/locale_redirection_spec.rb +105 -0
- data/spec/unit/middlewares/renderer_spec.rb +29 -0
- data/spec/unit/middlewares/stack_proxy_spec.rb +67 -0
- data/spec/unit/models/mapper_spec.rb +75 -0
- data/spec/unit/models/pager_spec.rb +82 -0
- data/spec/unit/models/repository_spec.rb +46 -0
- data/spec/unit/models/scope_spec.rb +27 -0
- data/spec/unit/repositories/content_entry_repository_spec.rb +347 -0
- data/spec/unit/repositories/content_type_repository_spec.rb +126 -0
- data/spec/unit/repositories/page_repository_spec.rb +365 -0
- data/spec/unit/repositories/site_repository_spec.rb +41 -0
- data/spec/unit/repositories/snippet_repository_spec.rb +37 -0
- data/spec/unit/repositories/theme_asset_repository_spec.rb +35 -0
- data/spec/unit/repositories/translation_repository_spec.rb +34 -0
- data/spec/unit/services/asset_host_service_spec.rb +79 -0
- data/spec/unit/services/entry_submission_service_spec.rb +143 -0
- data/spec/unit/services/external_api_service_spec.rb +80 -0
- data/spec/unit/services/image_resizer_service_spec.rb +75 -0
- data/spec/unit/services/markdown_service_spec.rb +36 -0
- data/spec/unit/services/parent_finder_service_spec.rb +41 -0
- data/spec/unit/services/textile_service_spec.rb +34 -0
- data/spec/unit/services/translator_service_spec.rb +65 -0
- data/spec/unit/services/url_builder_service_spec.rb +48 -0
- data/spec/unit/services_spec.rb +25 -0
- metadata +462 -119
- data/example/server.rb +0 -31
- data/lib/locomotive/steam/decorators.rb +0 -1
- data/lib/locomotive/steam/decorators/page_decorator.rb +0 -50
- data/lib/locomotive/steam/exceptions.rb +0 -62
- data/lib/locomotive/steam/liquid/scopeable.rb +0 -149
- data/lib/locomotive/steam/liquid/tags/editable/long_text.rb +0 -15
- data/lib/locomotive/steam/liquid/tags/editable/short_text.rb +0 -20
- data/lib/locomotive/steam/liquid/tags/path_helper.rb +0 -98
- data/lib/locomotive/steam/loaders/yml/pages_loader.rb +0 -193
- data/lib/locomotive/steam/loaders/yml/site_loader.rb +0 -49
- data/lib/locomotive/steam/loaders/yml/utils/localized_tree.rb +0 -33
- data/lib/locomotive/steam/loaders/yml/utils/yaml_front_matters_template.rb +0 -66
- data/lib/locomotive/steam/loaders/yml_loader.rb +0 -33
- data/lib/locomotive/steam/mapper.rb +0 -86
- data/lib/locomotive/steam/middlewares/base.rb +0 -65
- data/lib/locomotive/steam/middlewares/stack.rb +0 -66
- data/lib/locomotive/steam/middlewares/static_assets.rb +0 -25
- data/lib/locomotive/steam/monkey_patches.rb +0 -3
- data/lib/locomotive/steam/monkey_patches/haml.rb +0 -17
- data/lib/locomotive/steam/repositories/content_types_repository.rb +0 -14
- data/lib/locomotive/steam/repositories/pages_repository.rb +0 -23
- data/lib/locomotive/steam/repositories/sites_repository.rb +0 -16
- data/lib/locomotive/steam/services/dragonfly.rb +0 -49
- data/lib/locomotive/steam/services/external_api.rb +0 -47
- data/lib/locomotive/steam/services/markdown.rb +0 -20
- data/lib/locomotive/steam/standalone_server.rb +0 -30
- data/spec/unit/decorators/page_decorator_spec.rb +0 -55
- data/spec/unit/loaders/pages_loader_spec.rb +0 -42
- data/spec/unit/loaders/site_loader_spec.rb +0 -21
- data/spec/unit/loaders/utils/localized_tree_spec.rb +0 -33
- data/spec/unit/loaders/utils/yaml_front_matters_template_spec.rb +0 -39
- data/spec/unit/middlewares/base_spec.rb +0 -20
- data/spec/unit/middlewares/page_spec.rb +0 -51
- data/spec/unit/repositories/pages_spec.rb +0 -11
@@ -0,0 +1,94 @@
|
|
1
|
+
module Locomotive::Steam
|
2
|
+
module Middlewares
|
3
|
+
|
4
|
+
class Sitemap < ThreadSafe
|
5
|
+
|
6
|
+
include Helpers
|
7
|
+
|
8
|
+
def _call
|
9
|
+
if env['PATH_INFO'] == '/sitemap.xml'
|
10
|
+
render_response(build_xml, 200, 'text/plain')
|
11
|
+
end
|
12
|
+
end
|
13
|
+
|
14
|
+
private
|
15
|
+
|
16
|
+
def build_xml
|
17
|
+
<<-EOF
|
18
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
19
|
+
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
|
20
|
+
<url>
|
21
|
+
<loc>#{base_url}</loc>
|
22
|
+
<priority>1.0</priority>
|
23
|
+
</url>
|
24
|
+
#{build_pages_to_xml}
|
25
|
+
</urlset>
|
26
|
+
EOF
|
27
|
+
end
|
28
|
+
|
29
|
+
def build_pages_to_xml
|
30
|
+
repositories.page.published.map do |page|
|
31
|
+
next if page.index? || page.not_found?
|
32
|
+
|
33
|
+
build_page_xml(page)
|
34
|
+
end.flatten.join.strip
|
35
|
+
end
|
36
|
+
|
37
|
+
def build_page_xml(page)
|
38
|
+
_page = Locomotive::Steam::Decorators::I18nDecorator.new(page)
|
39
|
+
|
40
|
+
site.locales.map do |locale|
|
41
|
+
_page.__locale__ = locale
|
42
|
+
|
43
|
+
next if _page.title.blank? # should be translated
|
44
|
+
|
45
|
+
if _page.templatized?
|
46
|
+
build_templatized_page_xml(_page, locale)
|
47
|
+
else
|
48
|
+
page_to_xml(_page, locale)
|
49
|
+
end
|
50
|
+
end
|
51
|
+
end
|
52
|
+
|
53
|
+
def build_templatized_page_xml(page, locale)
|
54
|
+
content_type = repositories.content_type.find(page.content_type_id)
|
55
|
+
|
56
|
+
repositories.content_entry.with(content_type).all.map do |entry|
|
57
|
+
_entry = Locomotive::Steam::Decorators::I18nDecorator.new(entry, locale)
|
58
|
+
|
59
|
+
next if _entry._label.blank? # should be translated
|
60
|
+
|
61
|
+
page.content_entry = _entry
|
62
|
+
|
63
|
+
page_to_xml(page, locale)
|
64
|
+
end
|
65
|
+
end
|
66
|
+
|
67
|
+
def page_to_xml(page, locale)
|
68
|
+
last_modification = (page.content_entry || page).updated_at.to_date
|
69
|
+
|
70
|
+
<<-EOF
|
71
|
+
<url>
|
72
|
+
<loc>#{base_url}#{url_for(page, locale)}</loc>
|
73
|
+
<lastmod>#{last_modification.to_s('%Y-%m-%d')}</lastmod>
|
74
|
+
<priority>0.9</priority>
|
75
|
+
</url>
|
76
|
+
EOF
|
77
|
+
end
|
78
|
+
|
79
|
+
def repositories
|
80
|
+
services.repositories
|
81
|
+
end
|
82
|
+
|
83
|
+
def url_for(page, locale = nil)
|
84
|
+
services.url_builder.url_for(page, locale)
|
85
|
+
end
|
86
|
+
|
87
|
+
def base_url
|
88
|
+
"#{request.scheme}://#{request.host_with_port}"
|
89
|
+
end
|
90
|
+
|
91
|
+
end
|
92
|
+
|
93
|
+
end
|
94
|
+
end
|
@@ -0,0 +1,46 @@
|
|
1
|
+
module Locomotive::Steam::Middlewares
|
2
|
+
|
3
|
+
class StackProxy
|
4
|
+
|
5
|
+
attr_reader :list, :operations
|
6
|
+
|
7
|
+
def initialize(&block)
|
8
|
+
@list = []
|
9
|
+
instance_eval(&block) if block_given?
|
10
|
+
end
|
11
|
+
|
12
|
+
def use(*args, &block)
|
13
|
+
@list << [args, block]
|
14
|
+
end
|
15
|
+
|
16
|
+
def insert_before(index, *args, &block)
|
17
|
+
@list.insert(index_of(index), [args, block])
|
18
|
+
end
|
19
|
+
|
20
|
+
def insert_after(index, *args, &block)
|
21
|
+
@list.insert(index_of(index) + 1, [args, block])
|
22
|
+
end
|
23
|
+
|
24
|
+
def delete(index)
|
25
|
+
@list.delete_at(index_of(index))
|
26
|
+
end
|
27
|
+
|
28
|
+
alias :insert :insert_before
|
29
|
+
|
30
|
+
def inject(builder)
|
31
|
+
@list.each do |args|
|
32
|
+
builder.use(*(args[0]), &args[1])
|
33
|
+
end
|
34
|
+
end
|
35
|
+
|
36
|
+
def index_of(index)
|
37
|
+
if index.is_a?(Integer)
|
38
|
+
index
|
39
|
+
else
|
40
|
+
@list.index { |args| args[0][0] == index }
|
41
|
+
end
|
42
|
+
end
|
43
|
+
|
44
|
+
end
|
45
|
+
|
46
|
+
end
|
@@ -1,32 +1,58 @@
|
|
1
1
|
module Locomotive::Steam
|
2
2
|
module Middlewares
|
3
3
|
|
4
|
-
class TemplatizedPage <
|
4
|
+
class TemplatizedPage < ThreadSafe
|
5
5
|
|
6
|
-
|
7
|
-
super
|
6
|
+
include Helpers
|
8
7
|
|
9
|
-
|
10
|
-
|
8
|
+
def _call
|
9
|
+
if page && page.templatized?
|
10
|
+
set_content_entry!
|
11
11
|
end
|
12
|
-
|
13
|
-
app.call(env)
|
14
12
|
end
|
15
13
|
|
16
14
|
protected
|
17
15
|
|
18
|
-
def set_content_entry!
|
19
|
-
|
16
|
+
def set_content_entry!
|
17
|
+
# extract the slug of the content entry
|
18
|
+
%r(^#{page.fullpath.gsub(Locomotive::Steam::WILDCARD, '([^\/]+)')}$) =~ path
|
19
|
+
|
20
|
+
if entry = fetch_content_entry($1)
|
21
|
+
# the entry will be available in the template under different keys
|
22
|
+
['content_entry', 'entry', entry.content_type.slug.singularize].each do |key|
|
23
|
+
liquid_assigns[key] = entry
|
24
|
+
end
|
25
|
+
|
26
|
+
env['steam.content_entry'] = page.content_entry = entry
|
20
27
|
|
21
|
-
|
28
|
+
# log it
|
29
|
+
log "Found content entry: #{entry._label}"
|
30
|
+
else
|
31
|
+
redirect_to '/404', 302
|
32
|
+
end
|
33
|
+
end
|
22
34
|
|
23
|
-
|
24
|
-
|
35
|
+
def fetch_content_entry(slug)
|
36
|
+
if type = content_type_repository.find(page.content_type_id)
|
37
|
+
decorate(content_entry_repository.with(type).by_slug(slug))
|
25
38
|
else
|
26
|
-
|
39
|
+
nil
|
27
40
|
end
|
28
41
|
end
|
29
42
|
|
43
|
+
def decorate(entry)
|
44
|
+
return nil if entry.nil?
|
45
|
+
Locomotive::Steam::Decorators::I18nDecorator.new(entry, default_locale)
|
46
|
+
end
|
47
|
+
|
48
|
+
def content_type_repository
|
49
|
+
services.repositories.content_type
|
50
|
+
end
|
51
|
+
|
52
|
+
def content_entry_repository
|
53
|
+
services.repositories.content_entry
|
54
|
+
end
|
55
|
+
|
30
56
|
end
|
31
57
|
end
|
32
|
-
end
|
58
|
+
end
|
@@ -0,0 +1,65 @@
|
|
1
|
+
module Locomotive::Steam::Middlewares
|
2
|
+
|
3
|
+
class ThreadSafe < Struct.new(:app)
|
4
|
+
|
5
|
+
attr_accessor :env
|
6
|
+
|
7
|
+
def call(env)
|
8
|
+
threadsafed = dup
|
9
|
+
threadsafed.env = env
|
10
|
+
|
11
|
+
# time = Benchmark.realtime do
|
12
|
+
threadsafed._call # thread-safe purpose
|
13
|
+
# end
|
14
|
+
|
15
|
+
# puts "[Benchmark][#{self.class.name}] Time elapsed #{time*1000} milliseconds"
|
16
|
+
|
17
|
+
threadsafed.next
|
18
|
+
end
|
19
|
+
|
20
|
+
def next
|
21
|
+
# avoid to be called twice
|
22
|
+
@next_response || (@next_response = app.call(env))
|
23
|
+
end
|
24
|
+
|
25
|
+
#= Shortcuts =
|
26
|
+
|
27
|
+
def services
|
28
|
+
@services ||= env.fetch('steam.services')
|
29
|
+
end
|
30
|
+
|
31
|
+
def request
|
32
|
+
@request ||= env.fetch('steam.request')
|
33
|
+
end
|
34
|
+
|
35
|
+
def site
|
36
|
+
@site ||= env.fetch('steam.site')
|
37
|
+
end
|
38
|
+
|
39
|
+
def page
|
40
|
+
@page ||= env.fetch('steam.page')
|
41
|
+
end
|
42
|
+
|
43
|
+
def path
|
44
|
+
@path ||= env.fetch('steam.path')
|
45
|
+
end
|
46
|
+
|
47
|
+
def locale
|
48
|
+
@locale ||= env.fetch('steam.locale')
|
49
|
+
end
|
50
|
+
|
51
|
+
def liquid_assigns
|
52
|
+
@liquid_assigns ||= env.fetch('steam.liquid_assigns')
|
53
|
+
end
|
54
|
+
|
55
|
+
def default_locale
|
56
|
+
site.default_locale
|
57
|
+
end
|
58
|
+
|
59
|
+
def params
|
60
|
+
@params ||= self.request.params.with_indifferent_access
|
61
|
+
end
|
62
|
+
|
63
|
+
end
|
64
|
+
|
65
|
+
end
|
@@ -3,16 +3,20 @@ module Locomotive::Steam
|
|
3
3
|
|
4
4
|
# Set the timezone according to the settings of the site
|
5
5
|
#
|
6
|
-
class Timezone <
|
6
|
+
class Timezone < ThreadSafe
|
7
7
|
|
8
|
-
|
9
|
-
super
|
8
|
+
include Helpers
|
10
9
|
|
11
|
-
|
12
|
-
|
10
|
+
def _call
|
11
|
+
timezone = site.try(:timezone)
|
12
|
+
|
13
|
+
log "Timezone: #{timezone.name}"
|
14
|
+
|
15
|
+
Time.use_zone(timezone) do
|
16
|
+
self.next
|
13
17
|
end
|
14
18
|
end
|
15
19
|
|
16
20
|
end
|
17
21
|
end
|
18
|
-
end
|
22
|
+
end
|
@@ -0,0 +1,12 @@
|
|
1
|
+
require_relative 'models/concerns/validation'
|
2
|
+
require_relative 'models/i18n_field'
|
3
|
+
require_relative 'models/associations/embedded'
|
4
|
+
require_relative 'models/associations/referenced'
|
5
|
+
require_relative 'models/associations/belongs_to'
|
6
|
+
require_relative 'models/associations/has_many'
|
7
|
+
require_relative 'models/associations/many_to_many'
|
8
|
+
require_relative 'models/entity'
|
9
|
+
require_relative 'models/mapper'
|
10
|
+
require_relative 'models/scope'
|
11
|
+
require_relative 'models/repository'
|
12
|
+
require_relative 'models/pager'
|
@@ -0,0 +1,18 @@
|
|
1
|
+
module Locomotive::Steam
|
2
|
+
module Models
|
3
|
+
|
4
|
+
class BelongsToAssociation < ReferencedAssociation
|
5
|
+
|
6
|
+
def __load__
|
7
|
+
name = @options[:association_name]
|
8
|
+
target_id = @entity[:"#{name}_id"]
|
9
|
+
target = @repository.find(target_id)
|
10
|
+
|
11
|
+
# replace the proxy class by the real target entity
|
12
|
+
@entity[name] = target
|
13
|
+
end
|
14
|
+
|
15
|
+
end
|
16
|
+
|
17
|
+
end
|
18
|
+
end
|
@@ -0,0 +1,43 @@
|
|
1
|
+
require 'locomotive/steam/adapters/memory'
|
2
|
+
require 'morphine'
|
3
|
+
|
4
|
+
module Locomotive::Steam
|
5
|
+
module Models
|
6
|
+
|
7
|
+
# Note: represents an embedded collection
|
8
|
+
class EmbeddedAssociation
|
9
|
+
|
10
|
+
include Morphine
|
11
|
+
|
12
|
+
register :adapter do
|
13
|
+
Locomotive::Steam::MemoryAdapter.new(nil)
|
14
|
+
end
|
15
|
+
|
16
|
+
# use the scope from the parent repository
|
17
|
+
# one of the benefits is that if we change the current locale
|
18
|
+
# of the parent repository, that will change the local repository
|
19
|
+
# as well.
|
20
|
+
def initialize(repository_klass, collection, scope, options = {})
|
21
|
+
adapter.collection = collection
|
22
|
+
|
23
|
+
@repository = repository_klass.new(adapter)
|
24
|
+
@repository.scope = scope
|
25
|
+
|
26
|
+
@options = options
|
27
|
+
end
|
28
|
+
|
29
|
+
# In order to keep track of the entity which owns
|
30
|
+
# the association.
|
31
|
+
def __attach__(entity)
|
32
|
+
name = @options[:mapper_name].to_s.singularize.to_sym
|
33
|
+
@repository.send(:"#{name}=", entity)
|
34
|
+
end
|
35
|
+
|
36
|
+
def method_missing(name, *args, &block)
|
37
|
+
@repository.send(name, *args, &block)
|
38
|
+
end
|
39
|
+
|
40
|
+
end
|
41
|
+
|
42
|
+
end
|
43
|
+
end
|
@@ -0,0 +1,22 @@
|
|
1
|
+
module Locomotive::Steam
|
2
|
+
module Models
|
3
|
+
|
4
|
+
class HasManyAssociation < ReferencedAssociation
|
5
|
+
|
6
|
+
def __load__
|
7
|
+
key = :"#{@options[:inverse_of]}_id"
|
8
|
+
|
9
|
+
# all the further queries will be scoped by the "foreign_key"
|
10
|
+
@repository.local_conditions[key] = @entity._id
|
11
|
+
|
12
|
+
# use order_by from options as the default one for further queries
|
13
|
+
@repository.local_conditions[:order_by] = @options[:order_by] unless @options[:order_by].blank?
|
14
|
+
|
15
|
+
# all the further calls (method_missing) will be delegated to @repository
|
16
|
+
@repository
|
17
|
+
end
|
18
|
+
|
19
|
+
end
|
20
|
+
|
21
|
+
end
|
22
|
+
end
|
@@ -0,0 +1,22 @@
|
|
1
|
+
module Locomotive::Steam
|
2
|
+
module Models
|
3
|
+
|
4
|
+
class ManyToManyAssociation < ReferencedAssociation
|
5
|
+
|
6
|
+
def __load__
|
7
|
+
source_key = :"#{@options[:association_name].to_s.singularize}_ids"
|
8
|
+
key = @repository.k(:_id, :in)
|
9
|
+
|
10
|
+
@repository.local_conditions[key] = @entity[source_key]
|
11
|
+
|
12
|
+
# use order_by from options as the default one for further queries
|
13
|
+
@repository.local_conditions[:order_by] = @options[:order_by] unless @options[:order_by].blank?
|
14
|
+
|
15
|
+
# all the further calls (method_missing) will be delegated to @repository
|
16
|
+
@repository
|
17
|
+
end
|
18
|
+
|
19
|
+
end
|
20
|
+
|
21
|
+
end
|
22
|
+
end
|
@@ -0,0 +1,48 @@
|
|
1
|
+
module Locomotive::Steam
|
2
|
+
module Models
|
3
|
+
|
4
|
+
class ReferencedAssociation
|
5
|
+
|
6
|
+
attr_reader :repository
|
7
|
+
|
8
|
+
def initialize(repository_klass, scope, adapter, options = {}, &block)
|
9
|
+
# build a new instance of the target repository
|
10
|
+
@repository = repository_klass.new(adapter)
|
11
|
+
|
12
|
+
# Note: if we change the locale of the parent repository, that won't
|
13
|
+
# reflect in that repository
|
14
|
+
@repository.scope = scope.dup
|
15
|
+
|
16
|
+
# the block will executed when a method of the target will be called
|
17
|
+
@block = block_given? ? block : nil
|
18
|
+
|
19
|
+
@options = options
|
20
|
+
end
|
21
|
+
|
22
|
+
def __attach__(entity)
|
23
|
+
@entity = entity
|
24
|
+
end
|
25
|
+
|
26
|
+
def __load__
|
27
|
+
# needs implementation
|
28
|
+
end
|
29
|
+
|
30
|
+
def __call_block_once__
|
31
|
+
# setup the repository if custom configuration from the
|
32
|
+
# repository for instance.
|
33
|
+
if @block
|
34
|
+
@block.call(@repository, @options)
|
35
|
+
@block = nil # trick to call it only once
|
36
|
+
end
|
37
|
+
end
|
38
|
+
|
39
|
+
def method_missing(name, *args, &block)
|
40
|
+
__call_block_once__
|
41
|
+
|
42
|
+
__load__.try(:send, name, *args, &block)
|
43
|
+
end
|
44
|
+
|
45
|
+
end
|
46
|
+
|
47
|
+
end
|
48
|
+
end
|