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,23 +0,0 @@
|
|
1
|
-
module Locomotive
|
2
|
-
module Steam
|
3
|
-
module Repositories
|
4
|
-
class PagesRepository
|
5
|
-
include Repository
|
6
|
-
attr_accessor :current_locale
|
7
|
-
|
8
|
-
def [](path)
|
9
|
-
query(current_locale) do
|
10
|
-
where('fullpath.eq' => path)
|
11
|
-
end.first
|
12
|
-
end
|
13
|
-
|
14
|
-
def matching_paths(paths)
|
15
|
-
query(current_locale) do
|
16
|
-
where('fullpath.in' => paths)
|
17
|
-
order_by('position ASC')
|
18
|
-
end
|
19
|
-
end
|
20
|
-
end
|
21
|
-
end
|
22
|
-
end
|
23
|
-
end
|
@@ -1,49 +0,0 @@
|
|
1
|
-
module Locomotive
|
2
|
-
module Steam
|
3
|
-
module Services
|
4
|
-
class Dragonfly
|
5
|
-
|
6
|
-
attr_reader :path
|
7
|
-
|
8
|
-
def initialize(path = nil)
|
9
|
-
@path = path
|
10
|
-
end
|
11
|
-
|
12
|
-
def enabled?
|
13
|
-
!!self.enabled
|
14
|
-
end
|
15
|
-
|
16
|
-
def resize_url(source, resize_string)
|
17
|
-
image = (case url_or_path = get_url_or_path(source)
|
18
|
-
when '', nil
|
19
|
-
Locomotive::Common::Logger.error "Unable to resize on the fly: #{source.inspect}"
|
20
|
-
nil
|
21
|
-
when /^http:\/\//
|
22
|
-
app.fetch_url(url_or_path)
|
23
|
-
else
|
24
|
-
app.fetch_file(File.join([self.path, 'public', url_or_path].compact))
|
25
|
-
end)
|
26
|
-
|
27
|
-
# apply the conversion if possible
|
28
|
-
image ? image.thumb(resize_string).url : source
|
29
|
-
end
|
30
|
-
|
31
|
-
def self.app
|
32
|
-
::Dragonfly.app
|
33
|
-
end
|
34
|
-
|
35
|
-
protected
|
36
|
-
|
37
|
-
def get_url_or_path(source)
|
38
|
-
case source
|
39
|
-
when String then source.strip
|
40
|
-
when Hash then source['url'] || source[:url]
|
41
|
-
else
|
42
|
-
source.try(:url)
|
43
|
-
end
|
44
|
-
end
|
45
|
-
|
46
|
-
end
|
47
|
-
end
|
48
|
-
end
|
49
|
-
end
|
@@ -1,47 +0,0 @@
|
|
1
|
-
require 'uri'
|
2
|
-
require 'httparty'
|
3
|
-
|
4
|
-
module Locomotive
|
5
|
-
module Steam
|
6
|
-
module Services
|
7
|
-
class ExternalAPI
|
8
|
-
|
9
|
-
include ::HTTParty
|
10
|
-
|
11
|
-
def consume(url, options = {})
|
12
|
-
url = ::HTTParty.normalize_base_uri(url)
|
13
|
-
|
14
|
-
uri = URI.parse(url)
|
15
|
-
options[:base_uri] = "#{uri.scheme}://#{uri.host}"
|
16
|
-
options[:base_uri] += ":#{uri.port}" if uri.port != 80
|
17
|
-
path = uri.request_uri
|
18
|
-
|
19
|
-
options.delete(:format) if options[:format] == 'default'
|
20
|
-
|
21
|
-
username, password = options.delete(:username), options.delete(:password)
|
22
|
-
options[:basic_auth] = { username: username, password: password } if username
|
23
|
-
|
24
|
-
path ||= '/'
|
25
|
-
|
26
|
-
# Locomotive::Common::Logger.debug "[WebService] consuming #{path}, #{options.inspect}"
|
27
|
-
|
28
|
-
response = self.class.get(path, options)
|
29
|
-
|
30
|
-
if response.code == 200
|
31
|
-
_response = response.parsed_response
|
32
|
-
if _response.respond_to?(:underscore_keys)
|
33
|
-
_response.underscore_keys
|
34
|
-
else
|
35
|
-
_response.collect(&:underscore_keys)
|
36
|
-
end
|
37
|
-
else
|
38
|
-
Locomotive::Common::Logger.error "[WebService] consumed #{path}, #{options.inspect}, response = #{response.inspect}"
|
39
|
-
nil
|
40
|
-
end
|
41
|
-
|
42
|
-
end
|
43
|
-
|
44
|
-
end
|
45
|
-
end
|
46
|
-
end
|
47
|
-
end
|
@@ -1,20 +0,0 @@
|
|
1
|
-
require 'kramdown'
|
2
|
-
|
3
|
-
module Locomotive
|
4
|
-
module Steam
|
5
|
-
module Services
|
6
|
-
class Markdown
|
7
|
-
|
8
|
-
def render(text)
|
9
|
-
self.class.parser.render(text)
|
10
|
-
end
|
11
|
-
|
12
|
-
# http://kramdown.gettalong.org/options.html
|
13
|
-
def self.parser
|
14
|
-
@@markdown ||= Kramdown::Document.new(text).to_html
|
15
|
-
end
|
16
|
-
|
17
|
-
end
|
18
|
-
end
|
19
|
-
end
|
20
|
-
end
|
@@ -1,30 +0,0 @@
|
|
1
|
-
require 'rubygems'
|
2
|
-
require 'bundler/setup'
|
3
|
-
|
4
|
-
require_relative 'version'
|
5
|
-
require_relative 'exceptions'
|
6
|
-
require_relative 'server'
|
7
|
-
|
8
|
-
require 'locomotive/models'
|
9
|
-
|
10
|
-
module Locomotive
|
11
|
-
module Steam
|
12
|
-
class StandaloneServer < Server
|
13
|
-
|
14
|
-
def initialize(path)
|
15
|
-
Locomotive::Common::Logger.setup(path, false)
|
16
|
-
|
17
|
-
# get the reader
|
18
|
-
reader = Locomotive::Mounter::Reader::FileSystem.instance
|
19
|
-
reader.run!(path: path)
|
20
|
-
reader
|
21
|
-
|
22
|
-
Bundler.require 'monkey_patches'
|
23
|
-
Bundler.require 'initializers'
|
24
|
-
|
25
|
-
# run the rack app
|
26
|
-
super(reader, serve_assets: true)
|
27
|
-
end
|
28
|
-
end
|
29
|
-
end
|
30
|
-
end
|
@@ -1,55 +0,0 @@
|
|
1
|
-
require 'spec_helper'
|
2
|
-
|
3
|
-
describe 'Locomotive::Steam::Decorators::PageDecorator' do
|
4
|
-
let(:locale) { :en }
|
5
|
-
|
6
|
-
it 'builds an empty decorator' do
|
7
|
-
build_page.should_not be_nil
|
8
|
-
end
|
9
|
-
|
10
|
-
describe '#safe_fullpath' do
|
11
|
-
let(:index_page) { build_page(fullpath: { en: 'index' }) }
|
12
|
-
let(:not_found_page) { build_page(fullpath: { en: '404' }) }
|
13
|
-
let(:about_page) { build_page(fullpath: { en: 'about_me'}, parent: index_page) }
|
14
|
-
let(:products_page) { build_page(fullpath: { en: 'products'}, parent: index_page, templatized: true) }
|
15
|
-
|
16
|
-
context 'not templatized' do
|
17
|
-
context 'index or 404' do
|
18
|
-
it { decorated(index_page).safe_fullpath.should eq 'index' }
|
19
|
-
it { decorated(not_found_page).safe_fullpath.should eq '404' }
|
20
|
-
end
|
21
|
-
|
22
|
-
context 'other' do
|
23
|
-
it { decorated(about_page).safe_fullpath.should eq 'about-me' }
|
24
|
-
end
|
25
|
-
end
|
26
|
-
|
27
|
-
context 'templatized' do
|
28
|
-
subject { decorated build_page(fullpath: { en: 'products' }, parent: index_page, templatized: true) }
|
29
|
-
its(:safe_fullpath) { should eq '*' }
|
30
|
-
end
|
31
|
-
|
32
|
-
context 'templatized with not templatized parent' do
|
33
|
-
subject { decorated build_page(fullpath: { en: 'about_me/contact' }, parent: about_page, templatized: true) }
|
34
|
-
its(:safe_fullpath) { should eq 'about-me/*' }
|
35
|
-
end
|
36
|
-
|
37
|
-
context 'templatized parent' do
|
38
|
-
subject { decorated build_page(fullpath: { en: 'products/detail' }, parent: products_page) }
|
39
|
-
its(:safe_fullpath) { should eq '*/detail' }
|
40
|
-
end
|
41
|
-
end
|
42
|
-
|
43
|
-
def decorated(page)
|
44
|
-
Locomotive::Steam::Decorators::PageDecorator.new(
|
45
|
-
Locomotive::Decorators::I18nDecorator.new(
|
46
|
-
page, locale
|
47
|
-
)
|
48
|
-
)
|
49
|
-
end
|
50
|
-
|
51
|
-
def build_page(attributes = {})
|
52
|
-
Locomotive::Steam::Entities::Page.new(attributes)
|
53
|
-
end
|
54
|
-
|
55
|
-
end
|
@@ -1,42 +0,0 @@
|
|
1
|
-
require 'spec_helper'
|
2
|
-
|
3
|
-
describe Locomotive::Steam::Loader::Yml::PagesLoader do
|
4
|
-
|
5
|
-
|
6
|
-
let(:path) { default_fixture_site_path }
|
7
|
-
let(:loader) { Locomotive::Steam::Loader::Yml::PagesLoader.new path, mapper }
|
8
|
-
subject { loader }
|
9
|
-
before { Locomotive::Models[:pages].current_locale = :en }
|
10
|
-
|
11
|
-
describe '#initialize' do
|
12
|
-
it { should be_kind_of Object }
|
13
|
-
end
|
14
|
-
|
15
|
-
describe '#load!' do
|
16
|
-
before { loader.load! }
|
17
|
-
it 'loads pages in the pages Repository' do
|
18
|
-
Locomotive::Models[:pages].all.size.should > 0
|
19
|
-
end
|
20
|
-
|
21
|
-
it 'creates only one Entity for all locales' do
|
22
|
-
Locomotive::Models[:pages].matching_paths(['index']).all.size.should eq 1
|
23
|
-
end
|
24
|
-
|
25
|
-
context 'records content' do
|
26
|
-
subject { Locomotive::Models[:pages]['index'] }
|
27
|
-
it { subject.title[:en].should eql 'Home page' }
|
28
|
-
it { subject.title[:fr].should eql 'Page d\'accueil' }
|
29
|
-
end
|
30
|
-
|
31
|
-
context 'records template' do
|
32
|
-
subject { Locomotive::Models[:pages]['basic'] }
|
33
|
-
it { subject.template[:en].source.should =~ /<title>{{ page.title }}<\/title>/ }
|
34
|
-
it { subject.template[:en].raw_source.should =~ /%title {{ page.title }}/ }
|
35
|
-
end
|
36
|
-
|
37
|
-
context 'fills in non localized data with default locale values', pending: 'not sure if the right behaviour' do
|
38
|
-
subject { Locomotive::Models[:pages]['basic'] }
|
39
|
-
it { subject.title[:fr].should eql 'Basic page' }
|
40
|
-
end
|
41
|
-
end
|
42
|
-
end
|
@@ -1,21 +0,0 @@
|
|
1
|
-
require 'spec_helper'
|
2
|
-
|
3
|
-
describe Locomotive::Steam::Loader::Yml::SiteLoader do
|
4
|
-
|
5
|
-
let(:path) { default_fixture_site_path }
|
6
|
-
let(:loader) { Locomotive::Steam::Loader::Yml::SiteLoader.new path, mapper }
|
7
|
-
|
8
|
-
before { loader.load! }
|
9
|
-
|
10
|
-
subject { Locomotive::Models[:sites].all.first }
|
11
|
-
|
12
|
-
it { should be_kind_of Locomotive::Steam::Entities::Site }
|
13
|
-
its(:name) { should eql 'Sample website' }
|
14
|
-
its(:domains) { should eql ['example.org', 'sample.example.com', '0.0.0.0'] }
|
15
|
-
context 'localized fields' do
|
16
|
-
it do
|
17
|
-
subject.seo_title[:en].should eq 'A simple LocomotiveCMS website'
|
18
|
-
subject.seo_title[:fr].should eq 'Un simple LocomotiveCMS site web'
|
19
|
-
end
|
20
|
-
end
|
21
|
-
end
|
@@ -1,33 +0,0 @@
|
|
1
|
-
require 'spec_helper'
|
2
|
-
|
3
|
-
describe Locomotive::Steam::Utils::LocalizedTree do
|
4
|
-
|
5
|
-
describe '#to_hash' do
|
6
|
-
let(:tree) { [ 'a.fr.haml', 'a.haml', 'b.xml', 'b.fr.haml', 'z.txt' ] }
|
7
|
-
let(:extensions) { ['haml','xml'] }
|
8
|
-
subject { Locomotive::Steam::Utils::LocalizedTree.new(tree, extensions).to_hash }
|
9
|
-
|
10
|
-
|
11
|
-
it { should be_kind_of Hash }
|
12
|
-
|
13
|
-
it 'has root as key' do
|
14
|
-
subject.keys.should eq ['a', 'b']
|
15
|
-
end
|
16
|
-
|
17
|
-
it { should eql ({
|
18
|
-
'a' => {fr: 'a.fr.haml', default: 'a.haml'},
|
19
|
-
'b' => {default: 'b.xml', fr: 'b.fr.haml'}
|
20
|
-
})
|
21
|
-
}
|
22
|
-
|
23
|
-
context 'multiple extensions' do
|
24
|
-
let(:tree) { [ 'a.fr.haml.xml', 'a.haml', 'b.xml.haml', 'b.fr.haml'] }
|
25
|
-
it { should eql ({
|
26
|
-
'a' => {fr: 'a.fr.haml.xml', default: 'a.haml'},
|
27
|
-
'b' => {default: 'b.xml.haml', fr: 'b.fr.haml'}
|
28
|
-
})
|
29
|
-
}
|
30
|
-
|
31
|
-
end
|
32
|
-
end
|
33
|
-
end
|
@@ -1,39 +0,0 @@
|
|
1
|
-
require 'spec_helper'
|
2
|
-
|
3
|
-
describe Locomotive::Steam::Utils::YAMLFrontMattersTemplate do
|
4
|
-
|
5
|
-
let(:regular_content) do
|
6
|
-
<<YAMLRAW
|
7
|
-
%p Content
|
8
|
-
YAMLRAW
|
9
|
-
end
|
10
|
-
|
11
|
-
let(:attributes_content) do
|
12
|
-
<<YAMLRAW
|
13
|
-
---
|
14
|
-
data: value 1
|
15
|
-
other: value 2
|
16
|
-
---
|
17
|
-
%p Content
|
18
|
-
YAMLRAW
|
19
|
-
end
|
20
|
-
|
21
|
-
subject { Locomotive::Steam::Utils::YAMLFrontMattersTemplate.new('dummy_path.haml') }
|
22
|
-
before { subject.stub(data: content) }
|
23
|
-
|
24
|
-
context 'regular data' do
|
25
|
-
let(:content) { regular_content }
|
26
|
-
its(:source) { should eql "<p>Content</p>\n" }
|
27
|
-
its(:line_offset) { should eql 0 }
|
28
|
-
its(:attributes) { should eql({}) }
|
29
|
-
end
|
30
|
-
|
31
|
-
context 'data with attributes' do
|
32
|
-
let(:content) { attributes_content }
|
33
|
-
its(:source) { should eql "<p>Content</p>\n" }
|
34
|
-
its(:line_offset) { should eql 4 }
|
35
|
-
its(:attributes) { should eql 'data' => 'value 1', 'other' => 'value 2' }
|
36
|
-
end
|
37
|
-
|
38
|
-
|
39
|
-
end
|
@@ -1,20 +0,0 @@
|
|
1
|
-
require 'spec_helper'
|
2
|
-
|
3
|
-
require_relative '../../../lib/locomotive/steam/middlewares/base'
|
4
|
-
|
5
|
-
describe Locomotive::Steam::Middlewares::Base do
|
6
|
-
let(:app) { ->(env) { [200, env, 'app'] }}
|
7
|
-
|
8
|
-
let :middleware do
|
9
|
-
Locomotive::Steam::Middlewares::Base.new(app)
|
10
|
-
end
|
11
|
-
|
12
|
-
specify "return 200" do
|
13
|
-
code, headers, response = middleware.call env_for('http://www.example.com', { 'steam.path' => 'my path' })
|
14
|
-
expect(code).to eq(200)
|
15
|
-
end
|
16
|
-
|
17
|
-
def env_for url, opts={}
|
18
|
-
Rack::MockRequest.env_for(url, opts)
|
19
|
-
end
|
20
|
-
end
|
@@ -1,51 +0,0 @@
|
|
1
|
-
require 'spec_helper'
|
2
|
-
|
3
|
-
require_relative '../../../lib/locomotive/steam/middlewares/base'
|
4
|
-
require_relative '../../../lib/locomotive/steam/middlewares/page'
|
5
|
-
|
6
|
-
describe Locomotive::Steam::Middlewares::Page do
|
7
|
-
let(:app) { ->(env) { [200, env, 'app'] }}
|
8
|
-
|
9
|
-
let :middleware do
|
10
|
-
Locomotive::Steam::Middlewares::Page.new(app)
|
11
|
-
end
|
12
|
-
|
13
|
-
context 'rack testing' do
|
14
|
-
let(:page) do
|
15
|
-
double(title: 'title', fullpath: 'fullpath')
|
16
|
-
end
|
17
|
-
|
18
|
-
before do
|
19
|
-
expect(middleware).to receive(:fetch_page).with('wk') { page }
|
20
|
-
expect(Locomotive::Common::Logger).to receive(:info).with("Found page \"title\" [fullpath]") { nil }
|
21
|
-
end
|
22
|
-
|
23
|
-
subject do
|
24
|
-
middleware.call env_for('http://www.example.com', { 'steam.locale' => 'wk' })
|
25
|
-
end
|
26
|
-
|
27
|
-
specify 'return 200' do
|
28
|
-
code, headers, response = subject
|
29
|
-
expect(code).to eq(200)
|
30
|
-
end
|
31
|
-
|
32
|
-
specify 'set page' do
|
33
|
-
code, headers, response = subject
|
34
|
-
expect(headers['steam.page']).to eq(page)
|
35
|
-
end
|
36
|
-
end
|
37
|
-
|
38
|
-
context 'test in isolation' do
|
39
|
-
describe '#path_combinations' do
|
40
|
-
specify do
|
41
|
-
expect(
|
42
|
-
middleware.send(:path_combinations, 'projects/project-2')
|
43
|
-
).to eq(['projects/project-2', 'projects/*', '*/project-2'])
|
44
|
-
end
|
45
|
-
end
|
46
|
-
end
|
47
|
-
|
48
|
-
def env_for url, opts={}
|
49
|
-
Rack::MockRequest.env_for(url, opts)
|
50
|
-
end
|
51
|
-
end
|