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,21 @@
|
|
1
|
+
module Locomotive::Steam
|
2
|
+
module Adapters
|
3
|
+
module Filesystem
|
4
|
+
module Sanitizers
|
5
|
+
|
6
|
+
class ContentType
|
7
|
+
|
8
|
+
include Adapters::Filesystem::Sanitizer
|
9
|
+
|
10
|
+
def apply_to_entity(entity)
|
11
|
+
super
|
12
|
+
|
13
|
+
entity[:slug] = entity[:slug].to_s
|
14
|
+
end
|
15
|
+
|
16
|
+
end
|
17
|
+
|
18
|
+
end
|
19
|
+
end
|
20
|
+
end
|
21
|
+
end
|
@@ -0,0 +1,160 @@
|
|
1
|
+
module Locomotive::Steam
|
2
|
+
module Adapters
|
3
|
+
module Filesystem
|
4
|
+
module Sanitizers
|
5
|
+
|
6
|
+
class Page
|
7
|
+
|
8
|
+
include Adapters::Filesystem::Sanitizer
|
9
|
+
|
10
|
+
def setup(scope)
|
11
|
+
super.tap do
|
12
|
+
@ids, @parent_ids = {}, {}
|
13
|
+
@content_types = {}
|
14
|
+
@localized = locales.inject({}) { |m, l| m[l] = {}; m }
|
15
|
+
end
|
16
|
+
end
|
17
|
+
|
18
|
+
def apply_to_entity(entity)
|
19
|
+
super
|
20
|
+
|
21
|
+
record_id(entity) # required to get the parent_id
|
22
|
+
|
23
|
+
locales.each do |locale|
|
24
|
+
set_default_redirect_type(entity, locale)
|
25
|
+
modify_if_templatized(entity, locale)
|
26
|
+
end
|
27
|
+
end
|
28
|
+
|
29
|
+
def apply_to_dataset(dataset)
|
30
|
+
sorted_collection(dataset.records.values).each do |page|
|
31
|
+
locales.each do |locale|
|
32
|
+
# the following method needs to be called first
|
33
|
+
set_fullpath_for(page, locale)
|
34
|
+
|
35
|
+
set_parent_id(page)
|
36
|
+
use_default_locale_template_path(page, locale)
|
37
|
+
end
|
38
|
+
|
39
|
+
modify_if_nested_templatized(page)
|
40
|
+
end
|
41
|
+
end
|
42
|
+
|
43
|
+
# when this is called, the @ids hash has been populated completely
|
44
|
+
def set_parent_id(page)
|
45
|
+
return if page.not_found?
|
46
|
+
|
47
|
+
parent_key = parent_fullpath(page)
|
48
|
+
|
49
|
+
page[:parent_ids] = @parent_ids[parent_key] || []
|
50
|
+
page[:parent_id] = @ids[parent_key]
|
51
|
+
|
52
|
+
@parent_ids[page._fullpath] = page.parent_ids + [page._id]
|
53
|
+
end
|
54
|
+
|
55
|
+
# If the page does not have a template in a locale
|
56
|
+
# then use the template of the default locale
|
57
|
+
#
|
58
|
+
def use_default_locale_template_path(page, locale)
|
59
|
+
paths = page.template_path
|
60
|
+
|
61
|
+
if paths[locale] == false
|
62
|
+
paths[locale] = paths[default_locale]
|
63
|
+
end
|
64
|
+
end
|
65
|
+
|
66
|
+
def set_default_redirect_type(page, locale)
|
67
|
+
if page.redirect_url[locale]
|
68
|
+
page.attributes[:redirect_type] ||= 301
|
69
|
+
end
|
70
|
+
end
|
71
|
+
|
72
|
+
def modify_if_nested_templatized(page)
|
73
|
+
if content_type = fetch_content_type(parent_fullpath(page))
|
74
|
+
# not a templatized page but it becomes one because
|
75
|
+
# its parent is one of them
|
76
|
+
_modify_if_templatized(page, content_type)
|
77
|
+
end
|
78
|
+
end
|
79
|
+
|
80
|
+
def set_fullpath_for(page, locale)
|
81
|
+
page._fullpath ||= page.attributes.delete(:_fullpath)
|
82
|
+
|
83
|
+
slug = fullpath = page.slug[locale].try(page.templatized? ? :to_s : :dasherize)
|
84
|
+
|
85
|
+
return if slug.blank?
|
86
|
+
|
87
|
+
if page.depth > 1
|
88
|
+
base = parent_fullpath(page)
|
89
|
+
fullpath = (fetch_localized_fullpath(base, locale) || base) + '/' + slug
|
90
|
+
end
|
91
|
+
|
92
|
+
set_localized_fullpath(page._fullpath, fullpath, locale)
|
93
|
+
page[:fullpath][locale] = fullpath
|
94
|
+
end
|
95
|
+
|
96
|
+
def depth(page)
|
97
|
+
return page.depth if page.depth
|
98
|
+
|
99
|
+
page.depth = page[:_fullpath].split('/').size
|
100
|
+
|
101
|
+
if page.depth == 1 && system_pages?(page)
|
102
|
+
page.depth = 0
|
103
|
+
end
|
104
|
+
|
105
|
+
page.depth
|
106
|
+
end
|
107
|
+
|
108
|
+
def system_pages?(page)
|
109
|
+
%w(index 404).include?(page.slug.values.compact.first)
|
110
|
+
end
|
111
|
+
|
112
|
+
def sorted_collection(collection)
|
113
|
+
collection.sort_by { |page| depth(page) }
|
114
|
+
end
|
115
|
+
|
116
|
+
def parent_fullpath(page)
|
117
|
+
return nil if page._fullpath == 'index'
|
118
|
+
path = page._fullpath.split('/')[0..-2].join('/')
|
119
|
+
path.blank? ? 'index' : path
|
120
|
+
end
|
121
|
+
|
122
|
+
def fetch_content_type(fullpath)
|
123
|
+
@content_types[fullpath]
|
124
|
+
end
|
125
|
+
|
126
|
+
def set_content_type(fullpath, value)
|
127
|
+
@content_types[fullpath] = value
|
128
|
+
end
|
129
|
+
|
130
|
+
def fetch_localized_fullpath(fullpath, locale)
|
131
|
+
@localized[locale][fullpath]
|
132
|
+
end
|
133
|
+
|
134
|
+
def set_localized_fullpath(fullpath, value, locale)
|
135
|
+
@localized[locale][fullpath] = value
|
136
|
+
end
|
137
|
+
|
138
|
+
def record_id(entity)
|
139
|
+
@ids[entity[:_fullpath]] = entity._id
|
140
|
+
end
|
141
|
+
|
142
|
+
def modify_if_templatized(page, locale)
|
143
|
+
if content_type = page[:content_type]
|
144
|
+
_modify_if_templatized(page, content_type)
|
145
|
+
page[:slug][locale] = Locomotive::Steam::WILDCARD
|
146
|
+
set_content_type(page[:_fullpath], content_type)
|
147
|
+
end
|
148
|
+
end
|
149
|
+
|
150
|
+
def _modify_if_templatized(page, content_type)
|
151
|
+
page[:templatized] = true
|
152
|
+
page[:target_klass_name] = "Locomotive::ContentEntry#{content_type}"
|
153
|
+
end
|
154
|
+
|
155
|
+
end
|
156
|
+
|
157
|
+
end
|
158
|
+
end
|
159
|
+
end
|
160
|
+
end
|
@@ -0,0 +1,33 @@
|
|
1
|
+
module Locomotive::Steam
|
2
|
+
module Adapters
|
3
|
+
module Filesystem
|
4
|
+
module Sanitizers
|
5
|
+
|
6
|
+
class Snippet
|
7
|
+
|
8
|
+
include Adapters::Filesystem::Sanitizer
|
9
|
+
|
10
|
+
def apply_to_entity(entity)
|
11
|
+
super
|
12
|
+
|
13
|
+
use_default_template_if_missing_locale(entity)
|
14
|
+
end
|
15
|
+
|
16
|
+
private
|
17
|
+
|
18
|
+
def use_default_template_if_missing_locale(entity)
|
19
|
+
# if there a missing template in one of the locales,
|
20
|
+
# then use the one from the default locale
|
21
|
+
default = entity.template_path[default_locale]
|
22
|
+
locales.each do |locale|
|
23
|
+
next if locale == default_locale
|
24
|
+
entity.template_path[locale] ||= default
|
25
|
+
end
|
26
|
+
end
|
27
|
+
|
28
|
+
end
|
29
|
+
|
30
|
+
end
|
31
|
+
end
|
32
|
+
end
|
33
|
+
end
|
@@ -0,0 +1,38 @@
|
|
1
|
+
module Locomotive::Steam
|
2
|
+
module Adapters
|
3
|
+
module Filesystem
|
4
|
+
|
5
|
+
class SimpleCacheStore
|
6
|
+
|
7
|
+
@@store = {}
|
8
|
+
|
9
|
+
def fetch(name, options = nil, &block)
|
10
|
+
if block_given?
|
11
|
+
read(name) || write(name, yield)
|
12
|
+
else
|
13
|
+
read(name)
|
14
|
+
end
|
15
|
+
end
|
16
|
+
|
17
|
+
def read(name, options = nil)
|
18
|
+
@@store[name]
|
19
|
+
end
|
20
|
+
|
21
|
+
def write(name, value, options = nil)
|
22
|
+
@@store[name] = value
|
23
|
+
end
|
24
|
+
|
25
|
+
def clear
|
26
|
+
@@store.clear
|
27
|
+
end
|
28
|
+
|
29
|
+
#:nocov:
|
30
|
+
def _store
|
31
|
+
@@store
|
32
|
+
end
|
33
|
+
|
34
|
+
end
|
35
|
+
|
36
|
+
end
|
37
|
+
end
|
38
|
+
end
|
@@ -0,0 +1,47 @@
|
|
1
|
+
module Locomotive::Steam
|
2
|
+
module Adapters
|
3
|
+
module Filesystem
|
4
|
+
|
5
|
+
module YAMLLoader
|
6
|
+
|
7
|
+
attr_reader :site_path
|
8
|
+
|
9
|
+
def initialize(site_path)
|
10
|
+
@site_path = site_path
|
11
|
+
end
|
12
|
+
|
13
|
+
def load(scope = nil)
|
14
|
+
@scope = scope
|
15
|
+
end
|
16
|
+
|
17
|
+
def default_locale
|
18
|
+
@scope.default_locale
|
19
|
+
end
|
20
|
+
|
21
|
+
def _load(path, frontmatter = false, &block)
|
22
|
+
if File.exists?(path)
|
23
|
+
yaml = File.open(path).read.force_encoding('utf-8')
|
24
|
+
template = nil
|
25
|
+
|
26
|
+
if frontmatter && match = yaml.match(FRONTMATTER_REGEXP)
|
27
|
+
yaml, template = match[:yaml], match[:template]
|
28
|
+
end
|
29
|
+
|
30
|
+
HashConverter.to_sym(YAML.load(yaml)).tap do |attributes|
|
31
|
+
block.call(attributes, template) if block_given?
|
32
|
+
end
|
33
|
+
else
|
34
|
+
Locomotive::Common::Logger.error "No #{path} file found"
|
35
|
+
{}
|
36
|
+
end
|
37
|
+
end
|
38
|
+
|
39
|
+
def template_extensions
|
40
|
+
@extensions ||= %w(liquid haml)
|
41
|
+
end
|
42
|
+
|
43
|
+
end
|
44
|
+
|
45
|
+
end
|
46
|
+
end
|
47
|
+
end
|
@@ -0,0 +1,87 @@
|
|
1
|
+
module Locomotive
|
2
|
+
module Steam
|
3
|
+
module Adapters
|
4
|
+
module Filesystem
|
5
|
+
module YAMLLoaders
|
6
|
+
|
7
|
+
class ContentEntry
|
8
|
+
|
9
|
+
include Adapters::Filesystem::YAMLLoader
|
10
|
+
|
11
|
+
def load(scope)
|
12
|
+
super
|
13
|
+
load_list
|
14
|
+
end
|
15
|
+
|
16
|
+
private
|
17
|
+
|
18
|
+
def load_list
|
19
|
+
[].tap do |list|
|
20
|
+
each(content_type_slug) do |label, attributes, position|
|
21
|
+
_attributes = { _position: position, _label: label.to_s }.merge(attributes)
|
22
|
+
|
23
|
+
modify_for_selects(_attributes)
|
24
|
+
modify_for_associations(_attributes)
|
25
|
+
|
26
|
+
list << _attributes
|
27
|
+
end
|
28
|
+
end
|
29
|
+
end
|
30
|
+
|
31
|
+
def modify_for_selects(attributes)
|
32
|
+
content_type.selects.each do |field|
|
33
|
+
attributes[:"#{field.name}_id"] = attributes.delete(field.name.to_sym)
|
34
|
+
end
|
35
|
+
end
|
36
|
+
|
37
|
+
def modify_for_associations(attributes)
|
38
|
+
content_type.associations.each do |field|
|
39
|
+
case field.type
|
40
|
+
when :belongs_to
|
41
|
+
modify_belongs_to_association(field, attributes)
|
42
|
+
when :many_to_many
|
43
|
+
modify_many_to_many_association(field, attributes)
|
44
|
+
end
|
45
|
+
end
|
46
|
+
end
|
47
|
+
|
48
|
+
def modify_belongs_to_association(field, attributes)
|
49
|
+
# <name>_id
|
50
|
+
attributes[:"#{field.name}_id"] = attributes.delete(field.name.to_sym)
|
51
|
+
|
52
|
+
# _position_in_<name>
|
53
|
+
attributes[:"position_in_#{field.name}"] = attributes[:_position]
|
54
|
+
end
|
55
|
+
|
56
|
+
def modify_many_to_many_association(field, attributes)
|
57
|
+
attributes[:"#{field.name.to_s.singularize}_ids"] = attributes.delete(field.name.to_sym)
|
58
|
+
end
|
59
|
+
|
60
|
+
def each(slug, &block)
|
61
|
+
position = 0
|
62
|
+
_load(File.join(path, "#{slug}.yml")).each do |element|
|
63
|
+
label, attributes = element.keys.first, element.values.first
|
64
|
+
yield(label, attributes, position)
|
65
|
+
position += 1
|
66
|
+
end
|
67
|
+
end
|
68
|
+
|
69
|
+
def path
|
70
|
+
File.join(site_path, 'data')
|
71
|
+
end
|
72
|
+
|
73
|
+
def content_type
|
74
|
+
@scope.context[:content_type]
|
75
|
+
end
|
76
|
+
|
77
|
+
def content_type_slug
|
78
|
+
content_type.slug
|
79
|
+
end
|
80
|
+
|
81
|
+
end
|
82
|
+
|
83
|
+
end
|
84
|
+
end
|
85
|
+
end
|
86
|
+
end
|
87
|
+
end
|
@@ -0,0 +1,96 @@
|
|
1
|
+
module Locomotive
|
2
|
+
module Steam
|
3
|
+
module Adapters
|
4
|
+
module Filesystem
|
5
|
+
module YAMLLoaders
|
6
|
+
|
7
|
+
class ContentType
|
8
|
+
|
9
|
+
include Adapters::Filesystem::YAMLLoader
|
10
|
+
|
11
|
+
def load(scope)
|
12
|
+
super
|
13
|
+
load_list
|
14
|
+
end
|
15
|
+
|
16
|
+
private
|
17
|
+
|
18
|
+
def load_list
|
19
|
+
[].tap do |array|
|
20
|
+
each_file do |filepath, slug|
|
21
|
+
attributes = _load(filepath)
|
22
|
+
attributes[:entries_custom_fields] = build_fields(attributes.delete(:fields))
|
23
|
+
array << { _id: slug.to_s, slug: slug }.merge(attributes)
|
24
|
+
end
|
25
|
+
end
|
26
|
+
end
|
27
|
+
|
28
|
+
def build_fields(list)
|
29
|
+
list.map do |attributes|
|
30
|
+
build_field(attributes.keys.first, attributes.values.first)
|
31
|
+
end
|
32
|
+
end
|
33
|
+
|
34
|
+
def build_field(name, attributes)
|
35
|
+
attributes.tap do |attributes|
|
36
|
+
attributes[:name] = name.to_s
|
37
|
+
attributes[:type] = attributes[:type].try(:to_s)
|
38
|
+
|
39
|
+
if attributes[:label].blank?
|
40
|
+
attributes[:label] = name.to_s.humanize
|
41
|
+
end
|
42
|
+
|
43
|
+
if select_options = attributes.delete(:select_options)
|
44
|
+
attributes[:select_options] = build_select_options(select_options)
|
45
|
+
end
|
46
|
+
end
|
47
|
+
end
|
48
|
+
|
49
|
+
def build_select_options(options)
|
50
|
+
if options.is_a?(Hash)
|
51
|
+
build_select_options_from_hash(options)
|
52
|
+
else
|
53
|
+
build_select_options_from_array(options)
|
54
|
+
end
|
55
|
+
end
|
56
|
+
|
57
|
+
def build_select_options_from_hash(options)
|
58
|
+
[].tap do |list|
|
59
|
+
options.each do |locale, values|
|
60
|
+
values.each_with_index do |name, position|
|
61
|
+
if (option = list.at(position)).nil?
|
62
|
+
list << { _id: name, name: { locale => name }, position: position }
|
63
|
+
else
|
64
|
+
option[name][locale] = name
|
65
|
+
end
|
66
|
+
end
|
67
|
+
end
|
68
|
+
end
|
69
|
+
end
|
70
|
+
|
71
|
+
def build_select_options_from_array(options)
|
72
|
+
[].tap do |list|
|
73
|
+
options.each_with_index do |name, position|
|
74
|
+
list << { _id: name, name: name, position: position }
|
75
|
+
end
|
76
|
+
end
|
77
|
+
end
|
78
|
+
|
79
|
+
def each_file(&block)
|
80
|
+
Dir.glob(File.join(path, "*.yml")).each do |filepath|
|
81
|
+
slug = File.basename(filepath, '.yml')
|
82
|
+
yield(filepath, slug)
|
83
|
+
end
|
84
|
+
end
|
85
|
+
|
86
|
+
def path
|
87
|
+
File.join(site_path, 'app', 'content_types')
|
88
|
+
end
|
89
|
+
|
90
|
+
end
|
91
|
+
|
92
|
+
end
|
93
|
+
end
|
94
|
+
end
|
95
|
+
end
|
96
|
+
end
|