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,51 @@
|
|
1
|
+
require_relative_all 'repositories'
|
2
|
+
|
3
|
+
module Locomotive
|
4
|
+
module Steam
|
5
|
+
|
6
|
+
class Repositories < Struct.new(:current_site, :locale, :configuration)
|
7
|
+
|
8
|
+
include Morphine
|
9
|
+
|
10
|
+
register :adapter do
|
11
|
+
build_adapter(configuration.adapter)
|
12
|
+
end
|
13
|
+
|
14
|
+
register :site do
|
15
|
+
SiteRepository.new(adapter, nil, locale)
|
16
|
+
end
|
17
|
+
|
18
|
+
register :page do
|
19
|
+
PageRepository.new(adapter, current_site, locale)
|
20
|
+
end
|
21
|
+
|
22
|
+
register :snippet do
|
23
|
+
SnippetRepository.new(adapter, current_site, locale)
|
24
|
+
end
|
25
|
+
|
26
|
+
register :content_type do
|
27
|
+
ContentTypeRepository.new(adapter, current_site, locale)
|
28
|
+
end
|
29
|
+
|
30
|
+
register :content_entry do
|
31
|
+
ContentEntryRepository.new(adapter, current_site, locale, content_type)
|
32
|
+
end
|
33
|
+
|
34
|
+
register :theme_asset do
|
35
|
+
ThemeAssetRepository.new(adapter, current_site, locale)
|
36
|
+
end
|
37
|
+
|
38
|
+
register :translation do
|
39
|
+
TranslationRepository.new(adapter, current_site, locale)
|
40
|
+
end
|
41
|
+
|
42
|
+
def build_adapter(options)
|
43
|
+
name = ((options || {})[:name] || :filesystem).to_s
|
44
|
+
require_relative "adapters/#{name}"
|
45
|
+
klass = "Locomotive::Steam::#{name.camelize}Adapter".constantize
|
46
|
+
klass.new(options)
|
47
|
+
end
|
48
|
+
|
49
|
+
end
|
50
|
+
end
|
51
|
+
end
|
@@ -0,0 +1,183 @@
|
|
1
|
+
module Locomotive
|
2
|
+
module Steam
|
3
|
+
|
4
|
+
class ContentEntryRepository
|
5
|
+
|
6
|
+
include Models::Repository
|
7
|
+
|
8
|
+
attr_accessor :content_type_repository, :content_type
|
9
|
+
|
10
|
+
def initialize(adapter, site = nil, locale = nil, content_type_repository = nil)
|
11
|
+
@adapter = adapter
|
12
|
+
@scope = Locomotive::Steam::Models::Scope.new(site, locale)
|
13
|
+
@content_type_repository = content_type_repository
|
14
|
+
@local_conditions = {}
|
15
|
+
@memoized_mappers = {}
|
16
|
+
end
|
17
|
+
|
18
|
+
# Entity mapping
|
19
|
+
mapping :content_entries, entity: ContentEntry do
|
20
|
+
localized_attributes :_slug, :seo_title, :meta_description, :meta_keywords
|
21
|
+
|
22
|
+
default_attribute :content_type, -> (repository) { repository.content_type }
|
23
|
+
end
|
24
|
+
|
25
|
+
# this is the starting point of all the next methods
|
26
|
+
def with(type)
|
27
|
+
self.content_type = type # used for creating the scope
|
28
|
+
self.scope.context[:content_type] = type
|
29
|
+
|
30
|
+
@local_conditions[:content_type_id] = type.try(:_id)
|
31
|
+
|
32
|
+
self # chainable
|
33
|
+
end
|
34
|
+
|
35
|
+
def all(conditions = {}, &block)
|
36
|
+
conditions, order_by = conditions_without_order_by(conditions)
|
37
|
+
|
38
|
+
# priority:
|
39
|
+
# 1/ order_by passed in the conditions parameter
|
40
|
+
# 2/ the default order (_position) defined in the content type
|
41
|
+
order_by ||= content_type.order_by
|
42
|
+
|
43
|
+
query {
|
44
|
+
(block_given? ? instance_eval(&block) : where).
|
45
|
+
where(conditions).
|
46
|
+
order_by(order_by)
|
47
|
+
}.all
|
48
|
+
end
|
49
|
+
|
50
|
+
def count(conditions = {})
|
51
|
+
conditions, _ = conditions_without_order_by(conditions)
|
52
|
+
super() { where(conditions) }
|
53
|
+
end
|
54
|
+
|
55
|
+
def find(id)
|
56
|
+
conditions, _ = conditions_without_order_by(_id: id)
|
57
|
+
first { where(conditions) }
|
58
|
+
end
|
59
|
+
|
60
|
+
def exists?(conditions = {})
|
61
|
+
conditions, _ = conditions_without_order_by(conditions)
|
62
|
+
query { where(conditions) }.all.size > 0
|
63
|
+
end
|
64
|
+
|
65
|
+
def by_slug(slug)
|
66
|
+
conditions, _ = conditions_without_order_by(_slug: slug)
|
67
|
+
first { where(conditions) }
|
68
|
+
end
|
69
|
+
|
70
|
+
def value_for(entry, name, conditions = {})
|
71
|
+
return nil if entry.nil?
|
72
|
+
|
73
|
+
if field = content_type.fields_by_name[name]
|
74
|
+
value = entry.send(name)
|
75
|
+
|
76
|
+
if %i(has_many many_to_many).include?(field.type)
|
77
|
+
# a safe copy of the proxy repository is needed here
|
78
|
+
value = value.dup
|
79
|
+
# like this, we do not modify the original local conditions
|
80
|
+
value.local_conditions.merge!(conditions) if conditions
|
81
|
+
end
|
82
|
+
|
83
|
+
value
|
84
|
+
end
|
85
|
+
end
|
86
|
+
|
87
|
+
def next(entry)
|
88
|
+
next_or_previous(entry, 'gt', 'lt')
|
89
|
+
end
|
90
|
+
|
91
|
+
def previous(entry)
|
92
|
+
next_or_previous(entry, 'lt', 'gt')
|
93
|
+
end
|
94
|
+
|
95
|
+
def group_by_select_option(name)
|
96
|
+
return {} if name.nil? || content_type.nil? || content_type.fields_by_name[name].type != :select
|
97
|
+
|
98
|
+
# a big one request to get them grouped by the field
|
99
|
+
_groups = all.group_by { |entry| i18n_value_of(entry, name) }
|
100
|
+
|
101
|
+
groups_to_array(name, _groups).tap do |groups|
|
102
|
+
# entries with a not existing select_option value?
|
103
|
+
unless _groups.blank?
|
104
|
+
groups << { name: nil, entries: _groups.values.flatten }
|
105
|
+
end
|
106
|
+
end
|
107
|
+
end
|
108
|
+
|
109
|
+
def to_liquid
|
110
|
+
Locomotive::Steam::Liquid::Drops::ContentEntryCollection.new(content_type, self)
|
111
|
+
end
|
112
|
+
|
113
|
+
private
|
114
|
+
|
115
|
+
def mapper
|
116
|
+
key = self.content_type._id.to_s
|
117
|
+
|
118
|
+
return @memoized_mappers[key] if @memoized_mappers[key]
|
119
|
+
|
120
|
+
@memoized_mappers[key] = super(false).tap do |mapper|
|
121
|
+
add_localized_fields_to_mapper(mapper)
|
122
|
+
add_associations_to_mapper(mapper)
|
123
|
+
end
|
124
|
+
end
|
125
|
+
|
126
|
+
def conditions_without_order_by(conditions = {})
|
127
|
+
_conditions = prepare_conditions(conditions)
|
128
|
+
order_by = _conditions.delete(:order_by) || _conditions.delete('order_by')
|
129
|
+
[_conditions, order_by]
|
130
|
+
end
|
131
|
+
|
132
|
+
def prepare_conditions(*conditions)
|
133
|
+
super({ _visible: true }, conditions)
|
134
|
+
end
|
135
|
+
|
136
|
+
def add_localized_fields_to_mapper(mapper)
|
137
|
+
unless self.content_type.localized_names.blank?
|
138
|
+
mapper.localized_attributes(*self.content_type.localized_names)
|
139
|
+
end
|
140
|
+
end
|
141
|
+
|
142
|
+
def add_associations_to_mapper(mapper)
|
143
|
+
self.content_type.associations.each do |field|
|
144
|
+
mapper.association(field.type, field.name, self.class, field.association_options, &method(:prepare_repository_for_association))
|
145
|
+
end
|
146
|
+
end
|
147
|
+
|
148
|
+
# This code is executed once when the association proxy object receives a call to any method
|
149
|
+
def prepare_repository_for_association(repository, options)
|
150
|
+
# load the target content type
|
151
|
+
_content_type = content_type_repository.find(options[:target_id])
|
152
|
+
|
153
|
+
# the target repository uses this content type for all the other inner calls
|
154
|
+
repository.with(_content_type)
|
155
|
+
|
156
|
+
# the content type repository is also need by the target repository
|
157
|
+
repository.content_type_repository = content_type_repository
|
158
|
+
end
|
159
|
+
|
160
|
+
def next_or_previous(entry, asc_op, desc_op)
|
161
|
+
return nil if entry.nil?
|
162
|
+
|
163
|
+
with(entry.content_type)
|
164
|
+
|
165
|
+
name, direction = self.content_type.order_by.first
|
166
|
+
op = direction == 'asc' ? asc_op : desc_op
|
167
|
+
|
168
|
+
conditions = prepare_conditions({ k(name, op) => i18n_value_of(entry, name) })
|
169
|
+
|
170
|
+
first { where(conditions) }
|
171
|
+
end
|
172
|
+
|
173
|
+
def groups_to_array(name, groups)
|
174
|
+
content_type_repository.select_options(content_type, name).map do |option|
|
175
|
+
option_name = i18n_value_of(option, :name)
|
176
|
+
{ name: option_name, entries: groups.delete(option_name) || [] }
|
177
|
+
end
|
178
|
+
end
|
179
|
+
|
180
|
+
end
|
181
|
+
|
182
|
+
end
|
183
|
+
end
|
@@ -0,0 +1,50 @@
|
|
1
|
+
module Locomotive
|
2
|
+
module Steam
|
3
|
+
|
4
|
+
class ContentTypeFieldRepository
|
5
|
+
|
6
|
+
include Models::Repository
|
7
|
+
|
8
|
+
attr_accessor :content_type
|
9
|
+
|
10
|
+
# Entity mapping
|
11
|
+
mapping :content_type_fields, entity: ContentTypeField do
|
12
|
+
default_attribute :content_type, -> (repository) { repository.content_type }
|
13
|
+
|
14
|
+
embedded_association :select_options, ContentTypeFieldSelectOptionRepository
|
15
|
+
end
|
16
|
+
|
17
|
+
def selects
|
18
|
+
query { where(type: :select) }.all
|
19
|
+
end
|
20
|
+
|
21
|
+
def associations
|
22
|
+
query { where(k(:type, :in) => %i(belongs_to has_many many_to_many)) }.all
|
23
|
+
end
|
24
|
+
|
25
|
+
def unique
|
26
|
+
query { where(unique: true) }.all.inject({}) do |memo, field|
|
27
|
+
memo[field.name] = field
|
28
|
+
memo
|
29
|
+
end
|
30
|
+
end
|
31
|
+
|
32
|
+
def required
|
33
|
+
query { where(required: true) }.all
|
34
|
+
end
|
35
|
+
|
36
|
+
def localized_names
|
37
|
+
query { where(localized: true) }.all.map(&:name)
|
38
|
+
end
|
39
|
+
|
40
|
+
def select_options(name)
|
41
|
+
if field = first { where(name: name, type: :select) }
|
42
|
+
field.select_options.all
|
43
|
+
else
|
44
|
+
nil
|
45
|
+
end
|
46
|
+
end
|
47
|
+
|
48
|
+
end
|
49
|
+
end
|
50
|
+
end
|
@@ -0,0 +1,23 @@
|
|
1
|
+
module Locomotive
|
2
|
+
module Steam
|
3
|
+
|
4
|
+
class ContentTypeFieldSelectOptionRepository
|
5
|
+
|
6
|
+
include Models::Repository
|
7
|
+
|
8
|
+
attr_accessor :content_type_field
|
9
|
+
|
10
|
+
# Entity mapping
|
11
|
+
mapping :content_type_field_select_options, entity: ContentTypeField::SelectOption do
|
12
|
+
default_attribute :field, -> (repository) { repository.content_type_field }
|
13
|
+
|
14
|
+
localized_attributes :name
|
15
|
+
end
|
16
|
+
|
17
|
+
def all
|
18
|
+
query { order_by(position: :asc) }.all
|
19
|
+
end
|
20
|
+
|
21
|
+
end
|
22
|
+
end
|
23
|
+
end
|
@@ -0,0 +1,38 @@
|
|
1
|
+
module Locomotive
|
2
|
+
module Steam
|
3
|
+
|
4
|
+
class ContentTypeRepository
|
5
|
+
|
6
|
+
include Models::Repository
|
7
|
+
|
8
|
+
# Entity mapping
|
9
|
+
mapping :content_types, entity: ContentType do
|
10
|
+
embedded_association :entries_custom_fields, ContentTypeFieldRepository
|
11
|
+
end
|
12
|
+
|
13
|
+
def by_slug(slug_or_content_type)
|
14
|
+
if slug_or_content_type.is_a?(String)
|
15
|
+
query { where(slug: slug_or_content_type) }.first
|
16
|
+
else
|
17
|
+
slug_or_content_type
|
18
|
+
end
|
19
|
+
end
|
20
|
+
|
21
|
+
def look_for_unique_fields(content_type)
|
22
|
+
return nil if content_type.nil?
|
23
|
+
content_type.fields.unique
|
24
|
+
end
|
25
|
+
|
26
|
+
def fields_for(content_type)
|
27
|
+
return nil if content_type.nil?
|
28
|
+
content_type.fields
|
29
|
+
end
|
30
|
+
|
31
|
+
def select_options(content_type, name)
|
32
|
+
return nil if content_type.nil? || name.nil?
|
33
|
+
content_type.fields.select_options(name.to_s)
|
34
|
+
end
|
35
|
+
|
36
|
+
end
|
37
|
+
end
|
38
|
+
end
|
@@ -0,0 +1,20 @@
|
|
1
|
+
module Locomotive
|
2
|
+
module Steam
|
3
|
+
|
4
|
+
class EditableElementRepository
|
5
|
+
|
6
|
+
include Models::Repository
|
7
|
+
|
8
|
+
attr_accessor :page
|
9
|
+
|
10
|
+
# Entity mapping
|
11
|
+
mapping :editable_elements, entity: EditableElement do
|
12
|
+
localized_attributes :content, :source, :default_content, :default_source_url
|
13
|
+
|
14
|
+
default_attribute :page, -> (repository) { repository.page }
|
15
|
+
end
|
16
|
+
|
17
|
+
end
|
18
|
+
|
19
|
+
end
|
20
|
+
end
|
@@ -0,0 +1,86 @@
|
|
1
|
+
module Locomotive
|
2
|
+
module Steam
|
3
|
+
|
4
|
+
class PageRepository
|
5
|
+
|
6
|
+
include Models::Repository
|
7
|
+
|
8
|
+
# Entity mapping
|
9
|
+
mapping :pages, entity: Page do
|
10
|
+
localized_attributes :title, :slug, :permalink, :source, :raw_template, :template_path, :redirect_url, :fullpath, :seo_title, :meta_description, :meta_keywords
|
11
|
+
|
12
|
+
embedded_association :editable_elements, EditableElementRepository
|
13
|
+
end
|
14
|
+
|
15
|
+
def all(conditions = {})
|
16
|
+
query do
|
17
|
+
where(conditions || {}).
|
18
|
+
order_by(depth: :asc, position: :asc)
|
19
|
+
end.all
|
20
|
+
end
|
21
|
+
|
22
|
+
def published
|
23
|
+
query do
|
24
|
+
where(published: true).
|
25
|
+
order_by(depth: :asc, position: :asc)
|
26
|
+
end.all
|
27
|
+
end
|
28
|
+
|
29
|
+
def by_handle(handle)
|
30
|
+
first { where(handle: handle) }
|
31
|
+
end
|
32
|
+
|
33
|
+
def by_fullpath(path)
|
34
|
+
first { where(fullpath: path) }
|
35
|
+
end
|
36
|
+
|
37
|
+
def matching_fullpath(list)
|
38
|
+
all(k(:fullpath, :in) => list)
|
39
|
+
end
|
40
|
+
|
41
|
+
def template_for(entry, handle = nil)
|
42
|
+
conditions = { templatized: true, target_klass_name: entry.try(:_class_name) }
|
43
|
+
|
44
|
+
conditions[:handle] = handle if handle
|
45
|
+
|
46
|
+
all(conditions).first.tap do |page|
|
47
|
+
page.content_entry = entry if page
|
48
|
+
end
|
49
|
+
end
|
50
|
+
|
51
|
+
def root
|
52
|
+
first { where(fullpath: 'index') }
|
53
|
+
end
|
54
|
+
|
55
|
+
def parent_of(page)
|
56
|
+
return nil if page.nil? || page.index?
|
57
|
+
first { where(_id: page.parent_id) }
|
58
|
+
end
|
59
|
+
|
60
|
+
# Note: Ancestors and self
|
61
|
+
def ancestors_of(page)
|
62
|
+
return [] if page.nil?
|
63
|
+
all(k(:_id, :in) => page.parent_ids + [page._id])
|
64
|
+
end
|
65
|
+
|
66
|
+
def children_of(page)
|
67
|
+
return [] if page.nil?
|
68
|
+
all(parent_id: page._id)
|
69
|
+
end
|
70
|
+
|
71
|
+
def editable_elements_of(page)
|
72
|
+
return nil if page.nil?
|
73
|
+
page.editable_elements
|
74
|
+
end
|
75
|
+
|
76
|
+
def editable_element_for(page, block, slug)
|
77
|
+
return nil if page.nil?
|
78
|
+
page.editable_elements.first do
|
79
|
+
where(block: block, slug: slug)
|
80
|
+
end
|
81
|
+
end
|
82
|
+
|
83
|
+
end
|
84
|
+
|
85
|
+
end
|
86
|
+
end
|