hippo-fw 0.9.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.dir-locals.el +8 -0
- data/.eslintrc.js +7 -0
- data/.flowconfig +2 -0
- data/.gitignore +22 -0
- data/.jshintrc +3 -0
- data/.rubocop.yml +9 -0
- data/.ruby-version +1 -0
- data/.travis.yml +24 -0
- data/Gemfile +17 -0
- data/Guardfile +19 -0
- data/LICENSE-MIT.txt +21 -0
- data/README.md +36 -0
- data/Rakefile +39 -0
- data/bin/hippo +5 -0
- data/client/extension.js +0 -0
- data/client/hippo/__mocks__/config.js +17 -0
- data/client/hippo/access/index.js +4 -0
- data/client/hippo/access/login-dialog.jsx +38 -0
- data/client/hippo/access/styles.scss +0 -0
- data/client/hippo/boot.jsx +41 -0
- data/client/hippo/components/asset.jsx +81 -0
- data/client/hippo/components/asset.scss +15 -0
- data/client/hippo/components/calendar/Calendar.jsx +25 -0
- data/client/hippo/components/calendar/index.js +3 -0
- data/client/hippo/components/calendar/styles.scss +3 -0
- data/client/hippo/components/data-list.jsx +105 -0
- data/client/hippo/components/data-table.jsx +243 -0
- data/client/hippo/components/data-table/header-cell.jsx +94 -0
- data/client/hippo/components/data-table/table-styles.scss +34 -0
- data/client/hippo/components/enabled.js.erb +5 -0
- data/client/hippo/components/field-validation.js +7 -0
- data/client/hippo/components/form.jsx +65 -0
- data/client/hippo/components/form/field-prop-type.js +16 -0
- data/client/hippo/components/form/fields.jsx +76 -0
- data/client/hippo/components/form/fields/checkbox-wrapper.jsx +21 -0
- data/client/hippo/components/form/fields/date-wrapper.jsx +49 -0
- data/client/hippo/components/form/fields/form-field.scss +4 -0
- data/client/hippo/components/form/fields/select-wrapper.jsx +31 -0
- data/client/hippo/components/form/fields/text-wrapper.jsx +20 -0
- data/client/hippo/components/form/model.js +95 -0
- data/client/hippo/components/form/validations.js +0 -0
- data/client/hippo/components/form/wrapper.jsx +40 -0
- data/client/hippo/components/grid/config.json +3 -0
- data/client/hippo/components/grid/editors.scss +78 -0
- data/client/hippo/components/grid/index.js +2 -0
- data/client/hippo/components/grid/row-editor.scss +74 -0
- data/client/hippo/components/grid/styles.scss +118 -0
- data/client/hippo/components/icon.jsx +70 -0
- data/client/hippo/components/index.js +3 -0
- data/client/hippo/components/modal/index.js +1 -0
- data/client/hippo/components/modal/styles.scss +12 -0
- data/client/hippo/components/network-activity-overlay.jsx +127 -0
- data/client/hippo/components/network-activity-overlay.scss +52 -0
- data/client/hippo/components/query-builder.jsx +157 -0
- data/client/hippo/components/record-finder.jsx +95 -0
- data/client/hippo/components/record-finder/config.json +3 -0
- data/client/hippo/components/record-finder/query-layer.jsx +74 -0
- data/client/hippo/components/record-finder/record-finder.scss +12 -0
- data/client/hippo/components/request-spinner/index.js +1 -0
- data/client/hippo/components/screen.jsx +34 -0
- data/client/hippo/components/select-field/index.js +2 -0
- data/client/hippo/components/select-field/styles.scss +27 -0
- data/client/hippo/components/shared/AssetsListing.jsx +23 -0
- data/client/hippo/components/shared/Checkbox.jsx +49 -0
- data/client/hippo/components/shared/CountBadge.jsx +13 -0
- data/client/hippo/components/shared/DateTime.jsx +58 -0
- data/client/hippo/components/shared/DisplayValue.jsx +15 -0
- data/client/hippo/components/shared/ErrorDisplay.jsx +37 -0
- data/client/hippo/components/shared/FieldMixin.jsx +254 -0
- data/client/hippo/components/shared/FieldSet.jsx +52 -0
- data/client/hippo/components/shared/FieldWrapper.jsx +94 -0
- data/client/hippo/components/shared/FormGroup.jsx +41 -0
- data/client/hippo/components/shared/GenericField.jsx +7 -0
- data/client/hippo/components/shared/IconButton.jsx +13 -0
- data/client/hippo/components/shared/ImageAsset.jsx +78 -0
- data/client/hippo/components/shared/IndeterminateCheckbox.jsx +31 -0
- data/client/hippo/components/shared/Input.jsx +16 -0
- data/client/hippo/components/shared/InputFieldMixin.jsx +78 -0
- data/client/hippo/components/shared/JobProgress.jsx +46 -0
- data/client/hippo/components/shared/NumberInput.jsx +37 -0
- data/client/hippo/components/shared/PanelHeader.jsx +15 -0
- data/client/hippo/components/shared/RadioField.jsx +33 -0
- data/client/hippo/components/shared/ResizeSensor.jsx +18 -0
- data/client/hippo/components/shared/ScreenWrapper.jsx +17 -0
- data/client/hippo/components/shared/TextArea.jsx +19 -0
- data/client/hippo/components/shared/Throbber.jsx +8 -0
- data/client/hippo/components/shared/ToggleField.jsx +2 -0
- data/client/hippo/components/shared/Tooltip.jsx +23 -0
- data/client/hippo/components/shared/fields.scss +58 -0
- data/client/hippo/components/shared/fieldset.scss +27 -0
- data/client/hippo/components/shared/image-asset.scss +53 -0
- data/client/hippo/components/shared/index.js +5 -0
- data/client/hippo/components/shared/overlay.scss +83 -0
- data/client/hippo/components/shared/resize-sensor.scss +30 -0
- data/client/hippo/components/shared/styles.scss +64 -0
- data/client/hippo/components/shared/throbber.scss +53 -0
- data/client/hippo/components/toolbar/changes-notification.scss +63 -0
- data/client/hippo/components/toolbar/index.js +3 -0
- data/client/hippo/components/toolbar/styles.scss +74 -0
- data/client/hippo/components/warning-notification.jsx +14 -0
- data/client/hippo/config.js +72 -0
- data/client/hippo/extensions/EarlyExtensions.js.erb +3 -0
- data/client/hippo/extensions/LateLoaded.js.erb +4 -0
- data/client/hippo/extensions/base.js +23 -0
- data/client/hippo/extensions/hippo.js +11 -0
- data/client/hippo/extensions/index.js +47 -0
- data/client/hippo/extensions/namespace-available.js.erb +3 -0
- data/client/hippo/fonts/fontawesome-webfont.woff +0 -0
- data/client/hippo/fonts/fontawesome-webfont.woff2 +0 -0
- data/client/hippo/index.js +1 -0
- data/client/hippo/index.scss.erb +31 -0
- data/client/hippo/lib/__mocks__/loader.js +11 -0
- data/client/hippo/lib/__mocks__/request-assets.js +6 -0
- data/client/hippo/lib/all.js +14 -0
- data/client/hippo/lib/bootstrap.js +45 -0
- data/client/hippo/lib/index.js.erb +6 -0
- data/client/hippo/lib/loader.js +67 -0
- data/client/hippo/lib/request-assets.js +38 -0
- data/client/hippo/lib/smooth-scroll.js +68 -0
- data/client/hippo/lib/util.js +101 -0
- data/client/hippo/models/PubSub.js +208 -0
- data/client/hippo/models/__mocks__/sync.js +17 -0
- data/client/hippo/models/asset.js +104 -0
- data/client/hippo/models/base.js +142 -0
- data/client/hippo/models/collection.js +58 -0
- data/client/hippo/models/decorators.js +72 -0
- data/client/hippo/models/index.js +10 -0
- data/client/hippo/models/query.js +116 -0
- data/client/hippo/models/query/array-result.js +188 -0
- data/client/hippo/models/query/clause.js +52 -0
- data/client/hippo/models/query/field.js +63 -0
- data/client/hippo/models/query/info.js +43 -0
- data/client/hippo/models/query/operator.js +21 -0
- data/client/hippo/models/query/result.js +21 -0
- data/client/hippo/models/query/types.js +5 -0
- data/client/hippo/models/sync.js +135 -0
- data/client/hippo/models/system-setting.js +26 -0
- data/client/hippo/react/DefaultComponentNotFound.jsx +23 -0
- data/client/hippo/react/Root.jsx +24 -0
- data/client/hippo/react/index.js +7 -0
- data/client/hippo/react/viewport-root.jsx +44 -0
- data/client/hippo/screens/all.js.erb +3 -0
- data/client/hippo/screens/definition.js +67 -0
- data/client/hippo/screens/group.js +35 -0
- data/client/hippo/screens/index.js +34 -0
- data/client/hippo/screens/instance.js +99 -0
- data/client/hippo/screens/mixins/index.js +0 -0
- data/client/hippo/screens/register.js.erb +14 -0
- data/client/hippo/screens/styles.scss +8 -0
- data/client/hippo/screens/system-settings.jsx +92 -0
- data/client/hippo/screens/system-settings/mailer-config.jsx +53 -0
- data/client/hippo/screens/system-settings/system-settings.scss +8 -0
- data/client/hippo/screens/user-management.jsx +67 -0
- data/client/hippo/screens/user-management/edit-form.jsx +94 -0
- data/client/hippo/screens/user-management/index.scss +7 -0
- data/client/hippo/styles/fonts.scss +23 -0
- data/client/hippo/styles/fonts/_animated.scss +34 -0
- data/client/hippo/styles/fonts/_bordered-pulled.scss +25 -0
- data/client/hippo/styles/fonts/_core.scss +12 -0
- data/client/hippo/styles/fonts/_fixed-width.scss +6 -0
- data/client/hippo/styles/fonts/_icons.scss +789 -0
- data/client/hippo/styles/fonts/_larger.scss +13 -0
- data/client/hippo/styles/fonts/_list.scss +19 -0
- data/client/hippo/styles/fonts/_mixins.scss +60 -0
- data/client/hippo/styles/fonts/_path.scss +10 -0
- data/client/hippo/styles/fonts/_rotated-flipped.scss +20 -0
- data/client/hippo/styles/fonts/_screen-reader.scss +5 -0
- data/client/hippo/styles/fonts/_stacked.scss +20 -0
- data/client/hippo/styles/fonts/_variables.scss +800 -0
- data/client/hippo/styles/fonts/font-awesome.scss +18 -0
- data/client/hippo/styles/fonts/index.scss +2 -0
- data/client/hippo/styles/global.scss +3 -0
- data/client/hippo/styles/global/fancy-header.scss +14 -0
- data/client/hippo/styles/global/mixins.scss +5 -0
- data/client/hippo/styles/global/styles.scss +6 -0
- data/client/hippo/styles/variables.scss +28 -0
- data/client/hippo/testing/index.js +6 -0
- data/client/hippo/testing/matchers.js +14 -0
- data/client/hippo/testing/mocks/fetch.js +54 -0
- data/client/hippo/testing/screens.js +64 -0
- data/client/hippo/testing/utils.js +1 -0
- data/client/hippo/user.js +93 -0
- data/client/hippo/workspace/content.jsx +22 -0
- data/client/hippo/workspace/foo.js +0 -0
- data/client/hippo/workspace/index.jsx +85 -0
- data/client/hippo/workspace/menu-group.jsx +39 -0
- data/client/hippo/workspace/menu-option.jsx +41 -0
- data/client/hippo/workspace/menu.jsx +71 -0
- data/client/hippo/workspace/navbar.jsx +46 -0
- data/client/hippo/workspace/screen.jsx +50 -0
- data/client/hippo/workspace/styles.scss +61 -0
- data/client/hippo/workspace/styles/forms.scss +4 -0
- data/client/hippo/workspace/styles/header.scss +69 -0
- data/client/hippo/workspace/styles/keybindings.scss +6 -0
- data/client/hippo/workspace/styles/layout.scss +230 -0
- data/client/hippo/workspace/styles/screens.scss +15 -0
- data/client/hippo/workspace/styles/tabs.scss +141 -0
- data/client/hippo/workspace/tabs.jsx +60 -0
- data/client/hippo/workspace/viewport.jsx +82 -0
- data/client/images/hippo/ajax-loader.gif +0 -0
- data/client/images/hippo/logo-sm.png +0 -0
- data/coffeelint.json +49 -0
- data/command-reference-files/initial/.babelrc +20 -0
- data/command-reference-files/initial/.eslintrc.js +7 -0
- data/command-reference-files/initial/.gitignore +4 -0
- data/command-reference-files/initial/.rubocop.yml +9 -0
- data/command-reference-files/initial/Gemfile +9 -0
- data/command-reference-files/initial/Guardfile +13 -0
- data/command-reference-files/initial/Rakefile +2 -0
- data/command-reference-files/initial/client/appy-app/components/.gitkeep +0 -0
- data/command-reference-files/initial/client/appy-app/extension.js +32 -0
- data/command-reference-files/initial/client/appy-app/index.js +6 -0
- data/command-reference-files/initial/client/appy-app/models/.gitkeep +0 -0
- data/command-reference-files/initial/client/appy-app/models/base.js +11 -0
- data/command-reference-files/initial/client/appy-app/screens/.gitkeep +0 -0
- data/command-reference-files/initial/client/appy-app/styles.scss +1 -0
- data/command-reference-files/initial/config.ru +7 -0
- data/command-reference-files/initial/config/database.yml +11 -0
- data/command-reference-files/initial/config/initialize.rb +10 -0
- data/command-reference-files/initial/config/jest.config.json +19 -0
- data/command-reference-files/initial/config/jest/babel-transform.js +47 -0
- data/command-reference-files/initial/config/routes.rb +4 -0
- data/command-reference-files/initial/config/screens.rb +10 -0
- data/command-reference-files/initial/config/webpack.config.js +106 -0
- data/command-reference-files/initial/db/.gitkeep +0 -0
- data/command-reference-files/initial/lib/appy-app.rb +15 -0
- data/command-reference-files/initial/lib/appy-app/extension.rb +22 -0
- data/command-reference-files/initial/lib/appy-app/model.rb +11 -0
- data/command-reference-files/initial/lib/appy-app/version.rb +3 -0
- data/command-reference-files/initial/package.json +6 -0
- data/command-reference-files/initial/spec/client/.eslintrc.js +20 -0
- data/command-reference-files/initial/spec/client/setup.js +17 -0
- data/command-reference-files/initial/spec/server/spec_helper.rb +8 -0
- data/command-reference-files/initial/views/index.html +69 -0
- data/command-reference-files/model/client/appy-app/models/test_test.js +12 -0
- data/command-reference-files/model/config/routes.rb +4 -0
- data/command-reference-files/model/db/migrate/20150218032025_create_test_tests.rb +10 -0
- data/command-reference-files/model/lib/appy-app/model.rb +12 -0
- data/command-reference-files/model/lib/appy-app/models/test_test.rb +7 -0
- data/command-reference-files/model/spec/client/models/test_test.spec.js +8 -0
- data/command-reference-files/model/spec/fixtures/appy-app/test_test.yml +11 -0
- data/command-reference-files/model/spec/server/test_test_spec.rb +10 -0
- data/command-reference-files/screen/client/appy-app/extension.js +32 -0
- data/command-reference-files/screen/client/appy-app/screens/ready-set-go.jsx +22 -0
- data/command-reference-files/screen/config/screens.rb +19 -0
- data/command-reference-files/screen/spec/client/screens/ready-set-go.spec.jsx +12 -0
- data/config.ru +5 -0
- data/config/database.yml +9 -0
- data/config/jest.config.json +27 -0
- data/config/jest/babel-transform.js +47 -0
- data/config/jest/style-mock.js +2 -0
- data/config/jest/yaml-transform.js +19 -0
- data/config/routes.rb +28 -0
- data/config/screens.rb +42 -0
- data/config/webpack.config.js +105 -0
- data/db/migrate/01_create_system_settings.rb +10 -0
- data/db/migrate/02_create_assets.rb +13 -0
- data/db/migrate/20140615031600_create_users.rb +12 -0
- data/db/seed.rb +1 -0
- data/docs/command.md +114 -0
- data/docs/model.md +217 -0
- data/docs/react.md +137 -0
- data/docs/todo-example-part-1.md +69 -0
- data/docs/welcome.md +0 -0
- data/hippo-fw.gemspec +79 -0
- data/lib/generators/hippo/migrations/install_generator.rb +42 -0
- data/lib/hippo-fw.rb +1 -0
- data/lib/hippo.rb +34 -0
- data/lib/hippo/access.rb +49 -0
- data/lib/hippo/access/authentication_provider.rb +79 -0
- data/lib/hippo/access/config/database.yml +9 -0
- data/lib/hippo/access/config/routes.rb +20 -0
- data/lib/hippo/access/locked_fields.rb +43 -0
- data/lib/hippo/access/public/files/1nty/7ebo/n7k0/8b2ac0bbd97f401951fe40546f977200.png +0 -0
- data/lib/hippo/access/public/files/6hgp/eiw1/8dua/ba944287e36e101713a9c1ad793353b8.png +0 -0
- data/lib/hippo/access/public/files/94bd/9agc/2ua3/33800e285d7145760650ac88d1c558fb.png +0 -0
- data/lib/hippo/access/public/files/cr1e/vfwc/fvrh/0e7fe6ef12d622bfb93e024883c2f81c.png +0 -0
- data/lib/hippo/access/public/files/kezo/fm8j/u6xl/dfc47658aedd8e546abff63366a7285d.png +0 -0
- data/lib/hippo/access/public/files/n5c4/uovf/jec6/7ee9a3519e2b60430e095160a23f1d77.png +0 -0
- data/lib/hippo/access/role.rb +86 -0
- data/lib/hippo/access/role_collection.rb +88 -0
- data/lib/hippo/access/roles/administrator.rb +32 -0
- data/lib/hippo/access/roles/basic_user.rb +13 -0
- data/lib/hippo/access/roles/support.rb +15 -0
- data/lib/hippo/access/test_fixture_extensions.rb +16 -0
- data/lib/hippo/access/track_modifications.rb +79 -0
- data/lib/hippo/access/version.rb +5 -0
- data/lib/hippo/api.rb +23 -0
- data/lib/hippo/api/cable.rb +57 -0
- data/lib/hippo/api/controller_base.rb +299 -0
- data/lib/hippo/api/default_routes.rb +38 -0
- data/lib/hippo/api/error_formatter.rb +37 -0
- data/lib/hippo/api/formatted_reply.rb +62 -0
- data/lib/hippo/api/generic_controller.rb +35 -0
- data/lib/hippo/api/handlers/asset.rb +38 -0
- data/lib/hippo/api/handlers/print.rb +15 -0
- data/lib/hippo/api/handlers/user_session.rb +42 -0
- data/lib/hippo/api/helper_methods.rb +58 -0
- data/lib/hippo/api/pub_sub.rb +36 -0
- data/lib/hippo/api/request_wrapper.rb +105 -0
- data/lib/hippo/api/root.rb +70 -0
- data/lib/hippo/api/routing.rb +111 -0
- data/lib/hippo/api/sprockets_extension.rb +105 -0
- data/lib/hippo/api/to_json.rb +7 -0
- data/lib/hippo/api/updates.rb +37 -0
- data/lib/hippo/asset.rb +18 -0
- data/lib/hippo/capistrano.rb +30 -0
- data/lib/hippo/cli.rb +50 -0
- data/lib/hippo/command.rb +43 -0
- data/lib/hippo/command/app.rb +90 -0
- data/lib/hippo/command/client_config.rb +69 -0
- data/lib/hippo/command/client_model_update.rb +65 -0
- data/lib/hippo/command/console.rb +23 -0
- data/lib/hippo/command/db.rb +36 -0
- data/lib/hippo/command/db.usage +1 -0
- data/lib/hippo/command/generate.rb +24 -0
- data/lib/hippo/command/generate_component.rb +28 -0
- data/lib/hippo/command/generate_component.usage +11 -0
- data/lib/hippo/command/generate_migration.rb +33 -0
- data/lib/hippo/command/generate_model.rb +91 -0
- data/lib/hippo/command/generate_model.usage +45 -0
- data/lib/hippo/command/generate_screen.rb +40 -0
- data/lib/hippo/command/generate_screen.usage +8 -0
- data/lib/hippo/command/guard.rb +18 -0
- data/lib/hippo/command/jest.rb +40 -0
- data/lib/hippo/command/migration_support.rb +29 -0
- data/lib/hippo/command/model_attribute.rb +193 -0
- data/lib/hippo/command/named_command.rb +33 -0
- data/lib/hippo/command/puma.rb +56 -0
- data/lib/hippo/command/server.rb +19 -0
- data/lib/hippo/command/server.usage +3 -0
- data/lib/hippo/command/update.rb +13 -0
- data/lib/hippo/command/update_model.rb +127 -0
- data/lib/hippo/command/update_model.usage +2 -0
- data/lib/hippo/command/webpack.rb +57 -0
- data/lib/hippo/command/webpack_view.rb +32 -0
- data/lib/hippo/concerns/all.rb +15 -0
- data/lib/hippo/concerns/api_path.rb +21 -0
- data/lib/hippo/concerns/asset_uploader.rb +38 -0
- data/lib/hippo/concerns/association_extensions.rb +94 -0
- data/lib/hippo/concerns/attr_accessor_with_default.rb +68 -0
- data/lib/hippo/concerns/code_identifier.rb +43 -0
- data/lib/hippo/concerns/export_associations.rb +52 -0
- data/lib/hippo/concerns/export_join_tables.rb +39 -0
- data/lib/hippo/concerns/export_methods.rb +104 -0
- data/lib/hippo/concerns/export_scope.rb +64 -0
- data/lib/hippo/concerns/exported_limit_evaluator.rb +17 -0
- data/lib/hippo/concerns/pub_sub.rb +127 -0
- data/lib/hippo/concerns/queries.rb +24 -0
- data/lib/hippo/concerns/random_identifier.rb +37 -0
- data/lib/hippo/concerns/sanitize_fields.rb +32 -0
- data/lib/hippo/concerns/set_attribute_data.rb +125 -0
- data/lib/hippo/concerns/sorting_expressions.rb +34 -0
- data/lib/hippo/configuration.rb +143 -0
- data/lib/hippo/db.rb +57 -0
- data/lib/hippo/db/migrations.rb +32 -0
- data/lib/hippo/environment.rb +22 -0
- data/lib/hippo/extension.rb +112 -0
- data/lib/hippo/extension/definition.rb +90 -0
- data/lib/hippo/guard_tasks.rb +62 -0
- data/lib/hippo/hippo_guard_plugin.rb +80 -0
- data/lib/hippo/job.rb +82 -0
- data/lib/hippo/job/failure_logger.rb +33 -0
- data/lib/hippo/logger.rb +64 -0
- data/lib/hippo/mailer.rb +28 -0
- data/lib/hippo/model.rb +24 -0
- data/lib/hippo/multi_server_boot.rb +26 -0
- data/lib/hippo/numbers.rb +72 -0
- data/lib/hippo/rails_engine.rb +5 -0
- data/lib/hippo/rake_tasks.rb +69 -0
- data/lib/hippo/redis.rb +13 -0
- data/lib/hippo/reloadable_sinatra.rb +24 -0
- data/lib/hippo/reloadable_view.rb +13 -0
- data/lib/hippo/screen.rb +152 -0
- data/lib/hippo/spec_helper.rb +141 -0
- data/lib/hippo/strings.rb +56 -0
- data/lib/hippo/system_settings.rb +72 -0
- data/lib/hippo/templates/base.rb +44 -0
- data/lib/hippo/templates/latex.rb +101 -0
- data/lib/hippo/templates/liquid.rb +28 -0
- data/lib/hippo/user.rb +152 -0
- data/lib/hippo/validators/all.rb +2 -0
- data/lib/hippo/validators/email.rb +17 -0
- data/lib/hippo/validators/set.rb +18 -0
- data/lib/hippo/version.rb +5 -0
- data/lib/hippo/workspace.rb +4 -0
- data/lib/hippo/workspace/config/screens.rb +6 -0
- data/package.json +82 -0
- data/spec/client/.eslintrc.js +20 -0
- data/spec/client/access/login-dialog.spec.jsx +28 -0
- data/spec/client/components/__snapshots__/asset.spec.jsx.snap +48 -0
- data/spec/client/components/__snapshots__/network-activity-overlay.spec.jsx.snap +35 -0
- data/spec/client/components/__snapshots__/query-builder.spec.jsx.snap +82 -0
- data/spec/client/components/asset.spec.jsx +16 -0
- data/spec/client/components/data-list.spec.jsx +36 -0
- data/spec/client/components/data-table.spec.jsx +55 -0
- data/spec/client/components/form.spec.jsx +63 -0
- data/spec/client/components/network-activity-overlay.spec.jsx +30 -0
- data/spec/client/components/query-builder.spec.jsx +45 -0
- data/spec/client/components/record-finder.spec.jsx +45 -0
- data/spec/client/extension/base.spec.js +15 -0
- data/spec/client/lib/util.spec.js +48 -0
- data/spec/client/models/asset.spec.js +50 -0
- data/spec/client/models/base.spec.js +95 -0
- data/spec/client/models/collection.spec.js +51 -0
- data/spec/client/models/query.spec.js +243 -0
- data/spec/client/models/sync.spec.js +42 -0
- data/spec/client/models/system-setting.spec.js +19 -0
- data/spec/client/screens/__snapshots__/system-settings.spec.jsx.snap +364 -0
- data/spec/client/screens/__snapshots__/tabs.spec.jsx.snap +127 -0
- data/spec/client/screens/definition.spec.js +24 -0
- data/spec/client/screens/group.spec.js +33 -0
- data/spec/client/screens/instance.spec.js +61 -0
- data/spec/client/screens/system-settings.spec.jsx +22 -0
- data/spec/client/screens/tabs.spec.jsx +36 -0
- data/spec/client/screens/user-management.spec.jsx +48 -0
- data/spec/client/setup.js +12 -0
- data/spec/client/test-logo.json +41 -0
- data/spec/client/test-models.js +94 -0
- data/spec/client/user.spec.js +19 -0
- data/spec/client/workspace/__snapshots__/menu.spec.jsx.snap +380 -0
- data/spec/client/workspace/menu.spec.jsx +52 -0
- data/spec/factories/user.rb +11 -0
- data/spec/fixtures/logo.png +0 -0
- data/spec/fixtures/system_settings.yml +8 -0
- data/spec/fixtures/test_printer.tex +22 -0
- data/spec/fixtures/user.yml +2 -0
- data/spec/hippo/components/grid/GridSpec.coffee +56 -0
- data/spec/hippo/components/grid/PopoverEditorSpec.coffee +47 -0
- data/spec/hippo/components/grid/RowEditorSpec.coffee +98 -0
- data/spec/hippo/components/select-field/SelectFieldSpec.coffee +106 -0
- data/spec/hippo/components/shared/NetworkActivityOverlaySpec.coffee +34 -0
- data/spec/hippo/helpers/.gitkeep +0 -0
- data/spec/hippo/helpers/hippo-helpers.coffee +5 -0
- data/spec/hippo/helpers/jasmine-matchers.js +1580 -0
- data/spec/hippo/helpers/mock-ajax.js +573 -0
- data/spec/hippo/models/AssociationMapSpec.coffee +85 -0
- data/spec/hippo/models/AssociationProxySpec.coffee +76 -0
- data/spec/hippo/models/BaseSpec.coffee +155 -0
- data/spec/hippo/models/CollectionSpec.coffee +32 -0
- data/spec/hippo/models/EnumMapSpec.coffee +26 -0
- data/spec/hippo/models/PubSubSpec.coffee +71 -0
- data/spec/hippo/models/QuerySpec.coffee +19 -0
- data/spec/hippo/models/SyncSpec.coffee +28 -0
- data/spec/hippo/models/UserSpec.coffee +17 -0
- data/spec/hippo/react/mixins/DataSpec.coffee +74 -0
- data/spec/hippo/screens/DefinitionsSpec.coffee +33 -0
- data/spec/hippo/views/BaseSpec.coffee +147 -0
- data/spec/hippo/views/FormBindingsSpec.coffee +32 -0
- data/spec/server/api/controller_base_spec.rb +101 -0
- data/spec/server/assertions.rb +11 -0
- data/spec/server/asset_spec.rb +42 -0
- data/spec/server/command_spec.rb +73 -0
- data/spec/server/concerns/api_path_spec.rb +20 -0
- data/spec/server/concerns/association_extensions_spec.rb +24 -0
- data/spec/server/concerns/attr_accessor_with_default_spec.rb +63 -0
- data/spec/server/concerns/export_methods_spec.rb +34 -0
- data/spec/server/concerns/export_scope_spec.rb +14 -0
- data/spec/server/concerns/exported_limits_spec.rb +51 -0
- data/spec/server/concerns/pub_sub_spec.rb +132 -0
- data/spec/server/concerns/set_attribute_data_spec.rb +76 -0
- data/spec/server/concerns/sorting_expressions_spec.rb +34 -0
- data/spec/server/concerns/track_modifications_spec.rb +18 -0
- data/spec/server/configuration_spec.rb +26 -0
- data/spec/server/job_spec.rb +54 -0
- data/spec/server/mailer_spec.rb +33 -0
- data/spec/server/numbers_spec.rb +25 -0
- data/spec/server/print/form_spec.rb +29 -0
- data/spec/server/spec_helper.rb +74 -0
- data/spec/server/strings_spec.rb +41 -0
- data/spec/server/system_settings_spec.rb +39 -0
- data/tasks/migrations.rake +22 -0
- data/tasks/publish.rake +8 -0
- data/templates/.babelrc +20 -0
- data/templates/.gitignore +4 -0
- data/templates/Gemfile +9 -0
- data/templates/Guardfile +13 -0
- data/templates/Rakefile +2 -0
- data/templates/client/components/.gitkeep +0 -0
- data/templates/client/components/BaseComponent.coffee +9 -0
- data/templates/client/components/Component.cjsx +4 -0
- data/templates/client/components/template.html +3 -0
- data/templates/client/extension.js +32 -0
- data/templates/client/index.js +6 -0
- data/templates/client/models/base.js +11 -0
- data/templates/client/models/model.js +17 -0
- data/templates/client/screens/screen.jsx +22 -0
- data/templates/client/styles.scss +1 -0
- data/templates/config.ru +7 -0
- data/templates/config/database.yml +11 -0
- data/templates/config/initialize.rb +10 -0
- data/templates/config/jest.config.json +19 -0
- data/templates/config/jest/babel-transform.js +47 -0
- data/templates/config/routes.rb +4 -0
- data/templates/config/screen.rb +9 -0
- data/templates/config/screens.rb +10 -0
- data/templates/config/webpack.config.js +106 -0
- data/templates/db/create_table_migration.rb +19 -0
- data/templates/gitignore +4 -0
- data/templates/js/config-data.js +10 -0
- data/templates/js/jest.config.json +11 -0
- data/templates/js/root-view.html +71 -0
- data/templates/js/screen-definitions.js +22 -0
- data/templates/lib/namespace.rb +15 -0
- data/templates/lib/namespace/base_model.rb +11 -0
- data/templates/lib/namespace/extension.rb +22 -0
- data/templates/lib/namespace/model.rb +7 -0
- data/templates/lib/namespace/version.rb +3 -0
- data/templates/public/.gitkeep +0 -0
- data/templates/spec/client/components/ComponentSpec.coffee +5 -0
- data/templates/spec/client/models/model.spec.js +8 -0
- data/templates/spec/client/screen.spec.jsx +12 -0
- data/templates/spec/client/setup.js +17 -0
- data/templates/spec/fixtures/namespace/model.yml +16 -0
- data/templates/spec/server/model_spec.rb +10 -0
- data/templates/spec/server/spec_helper.rb +8 -0
- data/test.js +7 -0
- data/views/hippo_root_view.erb +68 -0
- data/views/index.html +71 -0
- data/yard_ext/all.rb +9 -0
- data/yard_ext/code_identifier_handler.rb +33 -0
- data/yard_ext/concern_meta_methods.rb +60 -0
- data/yard_ext/config_options.rb +27 -0
- data/yard_ext/exported_scope.rb +4 -0
- data/yard_ext/immutable_handler.rb +17 -0
- data/yard_ext/json_attr_accessor.rb +22 -0
- data/yard_ext/locked_fields_handler.rb +21 -0
- data/yard_ext/templates/default/layout/html/layout.erb +20 -0
- data/yard_ext/templates/default/method_details/html/github_link.erb +1 -0
- data/yard_ext/templates/default/method_details/setup.rb +3 -0
- data/yard_ext/validators.rb +1 -0
- data/yard_ext/visible_id_handler.rb +38 -0
- data/yarn.lock +6562 -0
- metadata +1182 -0
@@ -0,0 +1,69 @@
|
|
1
|
+
---
|
2
|
+
title: TODO MVC Example
|
3
|
+
position_after: command
|
4
|
+
---
|
5
|
+
|
6
|
+
As is required by all new frameworks, this is an example of creating a TODO application using the Hippo framework.
|
7
|
+
|
8
|
+
First install Hippo via Rubygems. `gem install hippo`
|
9
|
+
|
10
|
+
As always when using Hippo, the first thing you'll need to do is generate your application. We will name this app simply as `todo`
|
11
|
+
|
12
|
+
{% highlight bash %}
|
13
|
+
hippo new todo
|
14
|
+
{% endhighlight %}
|
15
|
+
|
16
|
+
This will create a new directory with a skeleton Hippo application. Read more about the directories and what their purposes are at {% doc_link command heading:'hippo new' %}.
|
17
|
+
|
18
|
+
[Our example app at this point](https://github.com/argosity/hippo-todo-demo/tree/c5ee64a5e932055470bf2d13d417f118b89114d6)
|
19
|
+
|
20
|
+
# Setup
|
21
|
+
|
22
|
+
A sample database configuration file is located in `config/database.yml` which will use a postgresql database named todo_dev. For the purposes of this example, we'll just create a new postgresql database that matches the configuration: `createdb todo_dev`
|
23
|
+
|
24
|
+
Fire up the hippo testing server: `hippo serve`. The test server will start the app and you can view it at: `http://localhost:8888/`. You should see a simple "Todo" message. You can also view the Jasmine specs at `http://localhost:8888/spec`
|
25
|
+
|
26
|
+
Next we'll create a data model `hippo generate model task title:string{80} completed:boolean` [commit](https://github.com/argosity/hippo-todo-demo/commit/e22d058d49c482f9be0167068adab1e37be868bc)
|
27
|
+
|
28
|
+
Since a task should default to being non-completed, we'll edit the migration to default that field to `false` and add a validation to the model [commit](https://github.com/argosity/hippo-todo-demo/commit/4fda061c13d399062850173eff7bb616563a82bf)
|
29
|
+
|
30
|
+
Hippo uses the concept of **Screens** to dynamically load a React component and all it's dependencies. In this case, the Todo app will have only one screen which we can create by running: `hippo generate screen main` [commit](https://github.com/argosity/hippo-todo-demo/commit/f8614fd7d2e29987639ed7c6141e35c5e51e035f)
|
31
|
+
|
32
|
+
Looking at the Todo app, it has four distinct areas. A `sidebar`, `header`, `footer` and `listing` components. We can create views for them by executing `hippo generate component <name>`, where '< name >' is the view to create. [commit](https://github.com/argosity/hippo-todo-demo/commit/cdd63af42efada9d3c9a05658337e44141a0500a)
|
33
|
+
|
34
|
+
We'll copy the styles from the [TodoMVC template](https://github.com/tastejs/todomvc/tree/master/template).
|
35
|
+
|
36
|
+
First we take the TodoMVC html template and break it apart into sections and copy them to each view. We're then able to plug each component's into the Screen. [commit](https://github.com/argosity/hippo-todo-demo/commit/cb2651fc3c7bfc0d2f093023056241b93c9b0597)
|
37
|
+
|
38
|
+
Run migration: `hippo db migrate`
|
39
|
+
|
40
|
+
We'll also create a TaskSummary model that is in charge of summarizing the state of the tasks. It will listen to the tasks collection and perform calculations when events occur. [commit](https://github.com/argosity/hippo-todo-demo/commit/61a9cb6a6101816becf7f0aa556dd6506f9ffed4)
|
41
|
+
|
42
|
+
# Data and events
|
43
|
+
|
44
|
+
## Header
|
45
|
+
It's responsible for interaction with the "What needs to be done?" input. When text is present and the "enter" key is pressed, it should save a record and add it to the collection. We're able to do so in [just a few lines of code](https://github.com/argosity/hippo-todo-demo/commit/bbdf8c8a95ddea8285615d4a7898d9054b22c4b4)
|
46
|
+
|
47
|
+
## Listing
|
48
|
+
This component is a bit more complex. It's split into two components, a parent which handles toggling all todo's between being complete and pending, and a collection of task components that model each individual task. [Listing](https://github.com/argosity/hippo-todo-demo/blob/master/client/todo/components/Listing.cjsx)
|
49
|
+
|
50
|
+
Each Task component is responsible for handling it's own editing state and saving value to it's model. [TaskComponent](https://github.com/argosity/hippo-todo-demo/blob/master/client/todo/components/Task.cjsx)
|
51
|
+
|
52
|
+
## Footer
|
53
|
+
The only action this component takes is to delete any tasks that are marked as complete when the "Clear Completed" button is clicked. It also displays quite a few values from our TasksSummary. Lane's data-bindings make these easy to wire up. [Footer](https://github.com/argosity/hippo-todo-demo/blob/master/client/todo/components/Footer.cjsx)
|
54
|
+
|
55
|
+
You might notice that Hippo makes it super easy to batch update or delete a collection. The footer simply calls destroyAll on the "completed" sub-collection provided by the TaskSummary. Since that sub-collection filters the main collection to only contain "completed" tasks, it's safe to just destroy all the model's in one go.
|
56
|
+
|
57
|
+
# Routing
|
58
|
+
|
59
|
+
For a simple app like the this one, it's easiest to just allow the URL change to trigger what the filtered collection is displaying. [Routing](https://github.com/argosity/hippo-todo-demo/blob/master/client/todo/Routes.cjsx)
|
60
|
+
|
61
|
+
# Deploying
|
62
|
+
|
63
|
+
For the example we'll host it on Heroku. Other deployments should be similar to deploying a Rails application.
|
64
|
+
|
65
|
+
Simply commit the source and add a remote per Heroku's instructions: [https://devcenter.heroku.com/articles/git](https://devcenter.heroku.com/articles/git)
|
66
|
+
|
67
|
+
When you `git push heroku`, Heroku will notice that Hippo uses sprockets and will automatically run `rake assets:precompile`, and then run the application using the puma webserver.
|
68
|
+
|
69
|
+
On first deploy and when your db schema has changed, you will have to provision and migrate the database on Heroku by running: `heroku run rake db:migrate`
|
data/docs/welcome.md
ADDED
File without changes
|
data/hippo-fw.gemspec
ADDED
@@ -0,0 +1,79 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'hippo/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
|
8
|
+
spec.name = "hippo-fw"
|
9
|
+
spec.version = Hippo::VERSION
|
10
|
+
spec.authors = ["Nathan Stitt"]
|
11
|
+
spec.email = ["nathan@argosity.com"]
|
12
|
+
|
13
|
+
spec.summary = %q{Hippo is a framework for easily writing single page web applications}
|
14
|
+
spec.description = %q{Hippo is a framework for writing single page web applications. It's a full stack framework that contains both server and client.}
|
15
|
+
|
16
|
+
spec.homepage = "https://github.com/argosity/hippo"
|
17
|
+
|
18
|
+
spec.license = "MIT"
|
19
|
+
|
20
|
+
spec.files = `git ls-files`.split($/)
|
21
|
+
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
22
|
+
spec.test_files = spec.files.grep(%r{^test/})
|
23
|
+
spec.require_paths = ["lib"]
|
24
|
+
|
25
|
+
spec.required_ruby_version = ">= 2.0"
|
26
|
+
|
27
|
+
spec.add_dependency "activejob", "~> 5.0.0"
|
28
|
+
spec.add_dependency "activerecord", "~> 5.0.0"
|
29
|
+
spec.add_dependency "actioncable", "~> 5.0.0"
|
30
|
+
spec.add_dependency "mail", "~> 2.6"
|
31
|
+
spec.add_dependency "liquid", "~> 4.0"
|
32
|
+
spec.add_dependency 'erb_latex', "~> 1.0"
|
33
|
+
spec.add_dependency 'shrine-memory', "~> 0.2"
|
34
|
+
spec.add_dependency 'factory_girl', "~> 4.8"
|
35
|
+
spec.add_dependency 'faker', "~> 1.7"
|
36
|
+
spec.add_dependency 'webmock', "~> 3.0"
|
37
|
+
spec.add_dependency "database_cleaner", "~> 1.3"
|
38
|
+
spec.add_dependency 'vcr', "~> 3.0"
|
39
|
+
spec.add_dependency "sinatra", "~> 2.0.0.rc2"
|
40
|
+
spec.add_dependency "rack-protection", "~> 2.0.0.rc2"
|
41
|
+
spec.add_dependency "rack", "~> 2.0"
|
42
|
+
|
43
|
+
spec.add_dependency "rack-cors", "~> 0.4"
|
44
|
+
spec.add_dependency "rack-test", "~> 0.6"
|
45
|
+
|
46
|
+
spec.add_dependency "bcrypt", "~> 3.1"
|
47
|
+
spec.add_dependency "shrine", "~> 2.4"
|
48
|
+
spec.add_dependency "image_processing", "~> 0.4"
|
49
|
+
|
50
|
+
spec.add_dependency "execjs", "~> 2.6"
|
51
|
+
spec.add_dependency "fastimage", "~> 2.0"
|
52
|
+
spec.add_dependency "guard", "~> 2.13"
|
53
|
+
|
54
|
+
spec.add_dependency "rspec-rails", "~> 3.5"
|
55
|
+
|
56
|
+
spec.add_dependency "guard-jest", "~> 0.1"
|
57
|
+
spec.add_dependency "guard-rspec", "~> 4.7"
|
58
|
+
spec.add_dependency "hashie", "~> 3.3"
|
59
|
+
|
60
|
+
spec.add_dependency "jobba", "~> 1.4"
|
61
|
+
spec.add_dependency "jwt", "~> 1.5"
|
62
|
+
spec.add_dependency "mini_magick", "~> 4.3"
|
63
|
+
|
64
|
+
spec.add_dependency "oj", "~> 2.1"
|
65
|
+
spec.add_dependency "pg", "~> 0.8"
|
66
|
+
spec.add_dependency "rake", "~> 12.0"
|
67
|
+
spec.add_dependency "require_all", "~> 1.3"
|
68
|
+
spec.add_dependency "resque", "~> 1.27"
|
69
|
+
spec.add_dependency "sanitize", "~> 3.0"
|
70
|
+
spec.add_dependency "webpack_driver", "~> 0.2"
|
71
|
+
spec.add_dependency "knitter", "~> 0.2.2"
|
72
|
+
|
73
|
+
spec.add_dependency "thor", "~> 0.19"
|
74
|
+
|
75
|
+
spec.add_development_dependency "bundler", "~> 1.5"
|
76
|
+
spec.add_development_dependency "diffy", "~> 3.0"
|
77
|
+
spec.add_development_dependency "growl", "~> 1.0"
|
78
|
+
spec.add_development_dependency "shrine-memory", "~> 0.2"
|
79
|
+
end
|
@@ -0,0 +1,42 @@
|
|
1
|
+
require 'hippo/db/migrations'
|
2
|
+
|
3
|
+
module Hippo
|
4
|
+
|
5
|
+
module Migrations
|
6
|
+
|
7
|
+
class InstallGenerator < Rails::Generators::Base
|
8
|
+
include Rails::Generators::Migration
|
9
|
+
|
10
|
+
source_root Hippo::DB::Migrations.paths.first
|
11
|
+
|
12
|
+
Hippo::DB::Migrations.paths.slice(1..-1).each do | source_path |
|
13
|
+
source_paths << source_path
|
14
|
+
end
|
15
|
+
|
16
|
+
desc "Install Stockor migrations"
|
17
|
+
def self.next_migration_number(path)
|
18
|
+
unless @prev_migration_nr
|
19
|
+
@prev_migration_nr = Time.now.utc.strftime("%Y%m%d%H%M%S").to_i
|
20
|
+
else
|
21
|
+
@prev_migration_nr += 1
|
22
|
+
end
|
23
|
+
@prev_migration_nr.to_s
|
24
|
+
end
|
25
|
+
|
26
|
+
def copy_migrations
|
27
|
+
Hippo::DB::Migrations.paths.each do | source_path |
|
28
|
+
|
29
|
+
Pathname.glob( source_path.join('*') ).each do | migration |
|
30
|
+
from = File.basename( migration )
|
31
|
+
dest = from.gsub(/^\d+_(.*).rb$/,'\\1.rb')
|
32
|
+
if self.class.migration_exists?("db/migrate", "#{dest}")
|
33
|
+
say_status("skipped", "Migration #{dest} already exists")
|
34
|
+
else
|
35
|
+
migration_template( from, "db/migrate/#{dest}" )
|
36
|
+
end
|
37
|
+
end
|
38
|
+
end
|
39
|
+
end
|
40
|
+
end
|
41
|
+
end
|
42
|
+
end
|
data/lib/hippo-fw.rb
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
require_relative './hippo'
|
data/lib/hippo.rb
ADDED
@@ -0,0 +1,34 @@
|
|
1
|
+
require 'active_record'
|
2
|
+
require 'pathname'
|
3
|
+
|
4
|
+
module Hippo
|
5
|
+
ROOT_PATH = Pathname.new(__FILE__).dirname.join('..')
|
6
|
+
end
|
7
|
+
|
8
|
+
require_relative "hippo/version"
|
9
|
+
require_relative "hippo/environment"
|
10
|
+
require_relative "hippo/configuration"
|
11
|
+
require_relative "hippo/redis"
|
12
|
+
require_relative "hippo/logger"
|
13
|
+
if defined?(::Rails)
|
14
|
+
require_relative "hippo/rails_engine"
|
15
|
+
end
|
16
|
+
require_relative "hippo/db"
|
17
|
+
require_relative "hippo/strings"
|
18
|
+
require_relative "hippo/numbers"
|
19
|
+
require_relative "hippo/concerns/all"
|
20
|
+
require_relative "hippo/validators/all"
|
21
|
+
require_relative "hippo/model"
|
22
|
+
require_relative "hippo/system_settings"
|
23
|
+
require_relative "hippo/asset"
|
24
|
+
require_relative "hippo/extension"
|
25
|
+
require_relative "hippo/screen"
|
26
|
+
require_relative "hippo/job"
|
27
|
+
require_relative "hippo/job/failure_logger"
|
28
|
+
require_relative "hippo/templates/base"
|
29
|
+
require_relative "hippo/templates/latex"
|
30
|
+
require_relative "hippo/templates/liquid"
|
31
|
+
require_relative "hippo/mailer"
|
32
|
+
require_relative 'hippo/user'
|
33
|
+
require_relative "hippo/access"
|
34
|
+
require_relative "hippo/workspace"
|
data/lib/hippo/access.rb
ADDED
@@ -0,0 +1,49 @@
|
|
1
|
+
require_relative 'workspace'
|
2
|
+
|
3
|
+
module Hippo
|
4
|
+
|
5
|
+
module Access
|
6
|
+
|
7
|
+
class << self
|
8
|
+
|
9
|
+
def type_to_client(klass)
|
10
|
+
klass.to_s.sub(/^(\w+).*?(\w+)$/,'\1.Models.\2')
|
11
|
+
end
|
12
|
+
|
13
|
+
def type_to_client_id(klass)
|
14
|
+
( klass.is_a?(Class) ? klass : klass.class ).to_s.demodulize.underscore
|
15
|
+
end
|
16
|
+
|
17
|
+
def for_user( user )
|
18
|
+
{
|
19
|
+
:roles => user.roles.map{ | role |
|
20
|
+
{
|
21
|
+
type: type_to_client_id(role),
|
22
|
+
read: role.read_types.map{ |klass| type_to_client(klass) },
|
23
|
+
write: role.write_types.map{ |klass| type_to_client(klass) },
|
24
|
+
delete: role.delete_types.map{ |klass| type_to_client(klass) }
|
25
|
+
}
|
26
|
+
},
|
27
|
+
:locked_fields => LockedFields.definitions.map{ | klass, locks |
|
28
|
+
{
|
29
|
+
type: type_to_client(klass),
|
30
|
+
locks: locks.each_with_object({}) do |(field, grants), result|
|
31
|
+
result[field] = grants.map do |grant|
|
32
|
+
{ role: type_to_client_id(grant[:role]), only: grant[:only] }
|
33
|
+
end
|
34
|
+
end
|
35
|
+
}
|
36
|
+
}
|
37
|
+
}
|
38
|
+
end
|
39
|
+
|
40
|
+
end
|
41
|
+
end
|
42
|
+
|
43
|
+
end
|
44
|
+
|
45
|
+
require_relative 'access/authentication_provider'
|
46
|
+
require_relative 'access/locked_fields'
|
47
|
+
require_relative 'access/role'
|
48
|
+
require_relative 'access/role_collection'
|
49
|
+
require_relative 'access/track_modifications'
|
@@ -0,0 +1,79 @@
|
|
1
|
+
module Hippo
|
2
|
+
module API
|
3
|
+
class AuthenticationProvider
|
4
|
+
|
5
|
+
def self.user_for_request(request)
|
6
|
+
token = request.params['jwt']
|
7
|
+
token ? User.for_jwt_token(token) : nil
|
8
|
+
end
|
9
|
+
|
10
|
+
attr_reader :request
|
11
|
+
|
12
|
+
def initialize(request)
|
13
|
+
@request=request
|
14
|
+
end
|
15
|
+
|
16
|
+
def current_user
|
17
|
+
@current_user ||= AuthenticationProvider.user_for_request(request)
|
18
|
+
end
|
19
|
+
|
20
|
+
def error_message
|
21
|
+
current_user ? "User not found" : error_message_for_access
|
22
|
+
end
|
23
|
+
|
24
|
+
def error_message_for_access
|
25
|
+
return "Unable to " + case request.request_method
|
26
|
+
when 'GET' then "read"
|
27
|
+
when 'POST','PATCH','PUT' then "write"
|
28
|
+
when 'DELETE' then "delete"
|
29
|
+
else
|
30
|
+
"perform action"
|
31
|
+
end
|
32
|
+
end
|
33
|
+
|
34
|
+
def allowed_access_to?(klass, options = {})
|
35
|
+
return true if options[:public] == true and current_user.nil?
|
36
|
+
return false if current_user.nil?
|
37
|
+
case request.request_method
|
38
|
+
when 'GET'
|
39
|
+
klass.can_read_attributes?(request.params, current_user)
|
40
|
+
when 'POST', 'PATCH', 'PUT'
|
41
|
+
klass.can_write_attributes?(request.params, current_user)
|
42
|
+
when 'DELETE'
|
43
|
+
klass.can_delete_attributes?(request.params, current_user)
|
44
|
+
else
|
45
|
+
false
|
46
|
+
end
|
47
|
+
end
|
48
|
+
|
49
|
+
def wrap_request(req)
|
50
|
+
if current_user
|
51
|
+
::Hippo::User.scoped_to(current_user) do | user |
|
52
|
+
yield
|
53
|
+
end
|
54
|
+
else
|
55
|
+
fail_request(req)
|
56
|
+
end
|
57
|
+
end
|
58
|
+
|
59
|
+
def wrap_model_access(model, req, options = {})
|
60
|
+
if allowed_access_to?(model, options)
|
61
|
+
::Hippo::User.scoped_to(current_user) do | user |
|
62
|
+
yield
|
63
|
+
end
|
64
|
+
else
|
65
|
+
fail_request(req)
|
66
|
+
end
|
67
|
+
end
|
68
|
+
|
69
|
+
def fail_request(req)
|
70
|
+
Hippo.logger.warn request.env['HTTP_X_TESTING_USER']
|
71
|
+
Hippo.logger.warn "Unauthorized access attempted to #{req.url}"
|
72
|
+
req.halt( 401, Oj.dump({
|
73
|
+
success:false, errors: {user: "Access Denied"}, message: "Access Denied"
|
74
|
+
}))
|
75
|
+
end
|
76
|
+
end
|
77
|
+
|
78
|
+
end
|
79
|
+
end
|
@@ -0,0 +1,20 @@
|
|
1
|
+
require_relative '../user'
|
2
|
+
require_relative '../../api/handlers/user_session'
|
3
|
+
|
4
|
+
module Hippo
|
5
|
+
Hippo::API.routes.for_extension 'hippo-access' do
|
6
|
+
|
7
|
+
post "user-sessions.json", &API::Handlers::UserSession.create
|
8
|
+
|
9
|
+
get "user-sessions/test.json", &API::Handlers::UserSession.check
|
10
|
+
|
11
|
+
delete "user-sessions/:id.json" do
|
12
|
+
wrap_reply do
|
13
|
+
{ success: true, message: "Logout succeeded", data: {}, token: '' }
|
14
|
+
end
|
15
|
+
end
|
16
|
+
|
17
|
+
resources User
|
18
|
+
|
19
|
+
end
|
20
|
+
end
|
@@ -0,0 +1,43 @@
|
|
1
|
+
module Hippo
|
2
|
+
module Access
|
3
|
+
|
4
|
+
class LockedFields
|
5
|
+
|
6
|
+
@definitions = Hash.new{ |fields,klass|
|
7
|
+
fields[klass] = Hash.new{ |grants,field| grants[field] = [] }
|
8
|
+
}
|
9
|
+
class << self
|
10
|
+
|
11
|
+
# @param klass [Hippo::Model]
|
12
|
+
# @param field [Symbol]
|
13
|
+
# @param access_type [:read, :write]
|
14
|
+
# @return [Array<Role>] Roles that are allowed to access the field.
|
15
|
+
# An empty array indicates that the field is not locked and the Model
|
16
|
+
# should be used for determining access
|
17
|
+
def roles_needed_for(klass, attribute, access_type)
|
18
|
+
if @definitions.has_key?(klass) && @definitions[klass].has_key?(attribute)
|
19
|
+
@definitions[klass][attribute].each_with_object([]) do | grant, result |
|
20
|
+
result.push(grant[:role]) if grant[:only].nil? || grant[:only] == access_type
|
21
|
+
end
|
22
|
+
else
|
23
|
+
[]
|
24
|
+
end
|
25
|
+
end
|
26
|
+
|
27
|
+
# Lock a given class and attribute to a given role
|
28
|
+
# @param klass [Hippo::Model]
|
29
|
+
# @param field [Symbol]
|
30
|
+
# @param only [:read, :write]
|
31
|
+
def lock(klass, field, role, only=nil)
|
32
|
+
@definitions[klass][field] << { role: role, only: only }
|
33
|
+
end
|
34
|
+
|
35
|
+
def definitions
|
36
|
+
@definitions
|
37
|
+
end
|
38
|
+
end
|
39
|
+
|
40
|
+
end
|
41
|
+
|
42
|
+
end
|
43
|
+
end
|
Binary file
|
Binary file
|
Binary file
|