From 27e62640ca36cfc6712085c553c76079d6fb3642 Mon Sep 17 00:00:00 2001 From: omair saleh Date: Fri, 16 Oct 2020 10:12:19 +0800 Subject: [PATCH] Initial commit --- .editorconfig | 15 + .env.example | 48 + .gitattributes | 5 + .gitignore | 13 + .styleci.yml | 13 + README.md | 79 + .../Exceptions/AccessForbiddenException.php | 12 + .../AccessUnauthorisedException.php | 12 + app/Classes/Exceptions/ErrorException.php | 20 + .../InternalServerErrorException.php | 12 + .../Exceptions/MalformedRequestException.php | 11 + .../Exceptions/RequestValidationException.php | 11 + .../Exceptions/ResourceConflictException.php | 12 + .../Exceptions/ResourceNotFoundException.php | 11 + .../Exceptions/ServiceApiException.php | 11 + .../Abstracts/AbstractControllerLogic.php | 87 + .../General/Abstracts/AbstractRule.php | 46 + .../General/Abstracts/AbstractService.php | 42 + .../General/Abstracts/AbstractValidation.php | 49 + .../General/Eloquent/AbstractDeleteRecord.php | 32 + .../General/Eloquent/AbstractFetchRecord.php | 37 + .../General/Eloquent/AbstractGetRecord.php | 70 + .../General/Eloquent/AbstractListRecord.php | 46 + .../General/Eloquent/AbstractUpdateRecord.php | 32 + .../General/Eloquent/ApplyFiltersToQuery.php | 41 + .../General/Eloquent/Filters/Active.php | 20 + .../General/Eloquent/Filters/Email.php | 20 + .../General/Eloquent/Filters/Filter.php | 19 + app/Classes/General/Eloquent/Filters/Id.php | 20 + app/Classes/General/Eloquent/Filters/Name.php | 20 + .../General/Eloquent/Filters/Status.php | 20 + .../General/Eloquent/Filters/Token.php | 20 + .../General/Eloquent/Filters/UserName.php | 22 + .../General/Eloquent/Filters/WithUser.php | 20 + .../General/Eloquent/Filters/importer.php | 24 + .../General/Services/GeneratesInitials.php | 152 ++ app/Classes/General/Wrapper/Hasher.php | 23 + app/Classes/Interfaces/DataTransferObject.php | 9 + .../ControllersLogic/CreateAddressLogic.php | 69 + .../ControllersLogic/DeleteAddressLogic.php | 73 + .../ControllersLogic/FetchAddressLogic.php | 67 + .../ControllersLogic/ListAddressesLogic.php | 66 + .../ControllersLogic/UpdateAddressLogic.php | 78 + .../DataTransferObjects/AddressObject.php | 135 ++ .../Addresses/Services/CreatesAddress.php | 32 + .../Addresses/Services/DeletesAddress.php | 15 + .../Addresses/Services/FetchesAddress.php | 33 + .../Addresses/Services/ListsAddresses.php | 33 + .../Addresses/Services/UpdatesAddress.php | 33 + .../Standards/Rules/CanCreateAddress.php | 57 + .../Standards/Rules/CanDeleteAddress.php | 43 + .../Standards/Rules/CanFetchAddress.php | 43 + .../Standards/Rules/CanListAddresses.php | 43 + .../Standards/Rules/CanUpdateAddress.php | 57 + .../Validators/AddressValidation.php | 54 + app/Classes/Notifications/AbstractEmail.php | 15 + .../Response/ApiResponseObject.php | 79 + app/Console/Kernel.php | 46 + app/Exceptions/Handler.php | 67 + .../Addresses/CreateAddressController.php | 20 + .../Addresses/DeleteAddressController.php | 20 + .../Addresses/FetchAddressController.php | 20 + .../Addresses/ListAddressesController.php | 20 + .../Addresses/UpdateAddressController.php | 20 + app/Http/Controllers/Controller.php | 13 + app/Http/Kernel.php | 76 + app/Http/Middleware/Authenticate.php | 21 + .../Middleware/CheckForMaintenanceMode.php | 17 + app/Http/Middleware/EncryptCookies.php | 17 + .../Middleware/RedirectIfAuthenticated.php | 27 + app/Http/Middleware/TrimStrings.php | 18 + app/Http/Middleware/TrustHosts.php | 20 + app/Http/Middleware/TrustProxies.php | 23 + app/Http/Middleware/ValidateToken.php | 30 + app/Http/Middleware/VerifyCsrfToken.php | 17 + app/Http/Resources/AddressResource.php | 30 + app/Models/AbstractModel.php | 13 + app/Models/Address.php | 40 + app/Models/User.php | 65 + app/Providers/AppServiceProvider.php | 29 + app/Providers/AuthServiceProvider.php | 30 + app/Providers/BroadcastServiceProvider.php | 21 + app/Providers/EventServiceProvider.php | 34 + app/Providers/RouteServiceProvider.php | 80 + artisan | 53 + bootstrap/app.php | 55 + bootstrap/cache/.gitignore | 2 + composer.json | 66 + config/activitylog.php | 52 + config/app.php | 232 ++ config/auth.php | 117 + config/broadcasting.php | 59 + config/cache.php | 104 + config/cors.php | 34 + config/database.php | 147 ++ config/filesystems.php | 85 + config/hashing.php | 52 + config/logging.php | 104 + config/mail.php | 110 + config/queue.php | 89 + config/services.php | 33 + config/session.php | 201 ++ config/view.php | 36 + database/.gitignore | 2 + database/factories/AddressFactory.php | 20 + .../2014_10_12_000000_create_users_table.php | 40 + ..._08_19_000000_create_failed_jobs_table.php | 35 + ...30_022600_create_password_resets_table.php | 37 + ...07_30_023042_create_activity_log_table.php | 42 + ..._create_user_email_verifications_table.php | 38 + ...20_08_04_043647_create_addresses_table.php | 45 + .../2020_09_08_035941_create_jobs_table.php | 36 + database/seeds/AddressesTableSeeder.php | 18 + database/seeds/DatabaseSeeder.php | 17 + gulpfile.js | 101 + package.json | 120 + phpunit.xml | 31 + public/.htaccess | 21 + public/favicon.ico | 0 public/index.php | 60 + public/robots.txt | 2 + public/web.config | 28 + .../fonts/montserrat/Montserrat-Bold.ttf | Bin 0 -> 54864 bytes .../fonts/montserrat/Montserrat-Regular.ttf | Bin 0 -> 54988 bytes .../montserrat/montserrat-bold-webfont.svg | 1462 +++++++++++ .../montserrat/montserrat-regular-webfont.svg | 1317 ++++++++++ resources/assets/images/accounts-graphic.png | Bin 0 -> 72579 bytes .../images/admin-dashboard-illustration.png | Bin 0 -> 98650 bytes resources/assets/images/favicon.png | Bin 0 -> 5174 bytes .../images/favicon/android-icon-144x144.png | Bin 0 -> 14321 bytes .../images/favicon/android-icon-192x192.png | Bin 0 -> 19455 bytes .../images/favicon/android-icon-36x36.png | Bin 0 -> 2461 bytes .../images/favicon/android-icon-48x48.png | Bin 0 -> 3360 bytes .../images/favicon/android-icon-72x72.png | Bin 0 -> 5551 bytes .../images/favicon/android-icon-96x96.png | Bin 0 -> 8062 bytes .../images/favicon/apple-icon-114x114.png | Bin 0 -> 10394 bytes .../images/favicon/apple-icon-120x120.png | Bin 0 -> 11100 bytes .../images/favicon/apple-icon-144x144.png | Bin 0 -> 14321 bytes .../images/favicon/apple-icon-152x152.png | Bin 0 -> 15291 bytes .../images/favicon/apple-icon-180x180.png | Bin 0 -> 19070 bytes .../images/favicon/apple-icon-57x57.png | Bin 0 -> 4135 bytes .../images/favicon/apple-icon-60x60.png | Bin 0 -> 4350 bytes .../images/favicon/apple-icon-72x72.png | Bin 0 -> 5551 bytes .../images/favicon/apple-icon-76x76.png | Bin 0 -> 5921 bytes .../images/favicon/apple-icon-precomposed.png | Bin 0 -> 20029 bytes .../assets/images/favicon/apple-icon.png | Bin 0 -> 20029 bytes .../assets/images/favicon/browserconfig.xml | 2 + .../assets/images/favicon/favicon-16x16.png | Bin 0 -> 1404 bytes .../assets/images/favicon/favicon-32x32.png | Bin 0 -> 2170 bytes .../assets/images/favicon/favicon-96x96.png | Bin 0 -> 8062 bytes resources/assets/images/favicon/favicon.ico | Bin 0 -> 1150 bytes resources/assets/images/favicon/manifest.json | 41 + .../assets/images/favicon/ms-icon-144x144.png | Bin 0 -> 14321 bytes .../assets/images/favicon/ms-icon-150x150.png | Bin 0 -> 15063 bytes .../assets/images/favicon/ms-icon-310x310.png | Bin 0 -> 40812 bytes .../assets/images/favicon/ms-icon-70x70.png | Bin 0 -> 5323 bytes resources/assets/images/guangzhou-map.png | Bin 0 -> 24829 bytes .../assets/images/icons/packing-icon.png | Bin 0 -> 13029 bytes resources/assets/images/icons/pdf.png | Bin 0 -> 7901 bytes .../assets/images/icons/processing-icon.png | Bin 0 -> 7860 bytes resources/assets/images/icons/xlsx.png | Bin 0 -> 64553 bytes resources/assets/images/login_bg.jpg | Bin 0 -> 2997312 bytes resources/assets/images/logo.png | Bin 0 -> 15926 bytes resources/assets/images/logo_white.png | Bin 0 -> 6152 bytes resources/assets/images/maintenance.png | Bin 0 -> 65389 bytes .../assets/images/not-found-illustration.png | Bin 0 -> 29701 bytes resources/assets/images/profile_black.png | Bin 0 -> 17884 bytes resources/assets/images/profile_white.png | Bin 0 -> 17136 bytes .../assets/images/search-illustration.png | Bin 0 -> 54648 bytes resources/assets/images/shipping_bg.jpeg | Bin 0 -> 426713 bytes resources/assets/images/top-banner.jpg | Bin 0 -> 28683 bytes resources/assets/images/user-illustration.png | Bin 0 -> 21201 bytes resources/assets/images/yiwu-map.png | Bin 0 -> 19721 bytes resources/assets/js/pages.js | 2048 ++++++++++++++++ resources/assets/js/route.js | 16 + resources/assets/js/scripts.js | 52 + resources/assets/js/three.r92.min.js | 927 +++++++ resources/assets/js/vanta.birds.min.js | 1 + resources/assets/sass/_color.scss | 543 +++++ resources/assets/sass/_mixins.scss | 903 +++++++ resources/assets/sass/_modules.scss | 96 + resources/assets/sass/_responsive.scss | 1134 +++++++++ resources/assets/sass/_var.scss | 168 ++ resources/assets/sass/main.scss | 40 + resources/assets/sass/modules/_alerts.scss | 93 + resources/assets/sass/modules/_animation.scss | 112 + resources/assets/sass/modules/_buttons.scss | 642 +++++ resources/assets/sass/modules/_calendar.scss | 719 ++++++ resources/assets/sass/modules/_cards.scss | 410 ++++ resources/assets/sass/modules/_charts.scss | 367 +++ resources/assets/sass/modules/_chat.scss | 81 + resources/assets/sass/modules/_email.scss | 150 ++ .../assets/sass/modules/_form_elements.scss | 2142 +++++++++++++++++ resources/assets/sass/modules/_gallery.scss | 255 ++ resources/assets/sass/modules/_layout.scss | 2115 ++++++++++++++++ resources/assets/sass/modules/_list.scss | 210 ++ .../assets/sass/modules/_lock_screen.scss | 92 + resources/assets/sass/modules/_login.scss | 71 + resources/assets/sass/modules/_misc.scss | 718 ++++++ resources/assets/sass/modules/_modals.scss | 286 +++ resources/assets/sass/modules/_nestables.scss | 84 + .../assets/sass/modules/_notifications.scss | 675 ++++++ resources/assets/sass/modules/_print.scss | 32 + .../sass/modules/_progress_indicators.scss | 225 ++ resources/assets/sass/modules/_sliders.scss | 313 +++ resources/assets/sass/modules/_social.scss | 450 ++++ resources/assets/sass/modules/_tables.scss | 416 ++++ .../assets/sass/modules/_tabs_accordian.scss | 764 ++++++ resources/assets/sass/modules/_timeline.scss | 521 ++++ resources/assets/sass/modules/_treeview.scss | 36 + .../assets/sass/modules/_typography.scss | 856 +++++++ .../assets/sass/modules/_vector_map.scss | 144 ++ resources/assets/sass/modules/_view.scss | 116 + resources/assets/sass/modules/_widgets.scss | 472 ++++ resources/assets/sass/modules/_z_index.scss | 24 + resources/assets/vue/app.js | 77 + .../address/elements/AddressComponent.vue | 84 + .../address/forms/AddressFormComponent.vue | 115 + .../general/elements/ListComponent.vue | 102 + .../general/elements/LoadingComponent.vue | 34 + .../general/elements/ModalComponent.vue | 33 + .../general/elements/PaginationComponent.vue | 68 + .../general/elements/SearchComponent.vue | 80 + .../general/elements/TransitionComponent.vue | 58 + .../elements/ValidationErrorComponent.vue | 32 + .../general/forms/ModalFormComponent.vue | 27 + .../general/forms/SelectComponent.vue | 54 + .../forms/ValidationErrorComponent.vue | 32 + .../forms/ValidationWrapperComponent.vue | 26 + resources/assets/vue/mixins/crudMixin.js | 50 + resources/assets/vue/mixins/requestMixin.js | 44 + .../assets/vue/vuex/modules/authentication.js | 29 + .../vue/vuex/modules/createNotification.js | 15 + .../assets/vue/vuex/modules/crudRequest.js | 21 + .../vue/vuex/modules/loadRequestQueue.js | 71 + .../assets/vue/vuex/modules/toggleLoading.js | 26 + .../assets/vue/vuex/modules/toggleSection.js | 29 + resources/assets/vue/vuex/store.js | 21 + resources/lang/en/auth.php | 19 + resources/lang/en/pagination.php | 19 + resources/lang/en/passwords.php | 21 + resources/lang/en/validation.php | 151 ++ resources/views/layouts/base.blade.php | 13 + resources/views/layouts/base_login.blade.php | 66 + resources/views/layouts/base_portal.blade.php | 15 + .../accounts/authentication/login.blade.php | 93 + .../authentication/reset_password.blade.php | 74 + .../views/pages/errors/maintenance.blade.php | 27 + resources/views/partials/footer.blade.php | 11 + resources/views/partials/header.blade.php | 69 + resources/views/partials/menu.blade.php | 74 + resources/views/vendor/head.blade.php | 23 + resources/views/vendor/js.blade.php | 12 + resources/views/welcome.blade.php | 0 routes/account.php | 27 + routes/api.php | 23 + routes/channels.php | 18 + routes/console.php | 19 + routes/crud.php | 16 + routes/web.php | 22 + server.php | 21 + storage/app/.gitignore | 3 + storage/app/public/.gitignore | 2 + storage/framework/.gitignore | 8 + storage/framework/cache/.gitignore | 3 + storage/framework/cache/data/.gitignore | 2 + storage/framework/sessions/.gitignore | 2 + storage/framework/testing/.gitignore | 2 + storage/framework/views/.gitignore | 2 + storage/logs/.gitignore | 2 + tests/CreatesApplication.php | 22 + tests/Feature/ExampleTest.php | 21 + tests/TestCase.php | 10 + tests/Unit/ExampleTest.php | 18 + webpack.mix.js | 14 + 275 files changed, 29752 insertions(+) create mode 100644 .editorconfig create mode 100644 .env.example create mode 100644 .gitattributes create mode 100644 .gitignore create mode 100644 .styleci.yml create mode 100644 README.md create mode 100644 app/Classes/Exceptions/AccessForbiddenException.php create mode 100644 app/Classes/Exceptions/AccessUnauthorisedException.php create mode 100644 app/Classes/Exceptions/ErrorException.php create mode 100644 app/Classes/Exceptions/InternalServerErrorException.php create mode 100644 app/Classes/Exceptions/MalformedRequestException.php create mode 100644 app/Classes/Exceptions/RequestValidationException.php create mode 100644 app/Classes/Exceptions/ResourceConflictException.php create mode 100644 app/Classes/Exceptions/ResourceNotFoundException.php create mode 100644 app/Classes/Exceptions/ServiceApiException.php create mode 100644 app/Classes/General/Abstracts/AbstractControllerLogic.php create mode 100644 app/Classes/General/Abstracts/AbstractRule.php create mode 100644 app/Classes/General/Abstracts/AbstractService.php create mode 100644 app/Classes/General/Abstracts/AbstractValidation.php create mode 100644 app/Classes/General/Eloquent/AbstractDeleteRecord.php create mode 100644 app/Classes/General/Eloquent/AbstractFetchRecord.php create mode 100644 app/Classes/General/Eloquent/AbstractGetRecord.php create mode 100644 app/Classes/General/Eloquent/AbstractListRecord.php create mode 100644 app/Classes/General/Eloquent/AbstractUpdateRecord.php create mode 100644 app/Classes/General/Eloquent/ApplyFiltersToQuery.php create mode 100644 app/Classes/General/Eloquent/Filters/Active.php create mode 100644 app/Classes/General/Eloquent/Filters/Email.php create mode 100644 app/Classes/General/Eloquent/Filters/Filter.php create mode 100644 app/Classes/General/Eloquent/Filters/Id.php create mode 100644 app/Classes/General/Eloquent/Filters/Name.php create mode 100644 app/Classes/General/Eloquent/Filters/Status.php create mode 100644 app/Classes/General/Eloquent/Filters/Token.php create mode 100644 app/Classes/General/Eloquent/Filters/UserName.php create mode 100644 app/Classes/General/Eloquent/Filters/WithUser.php create mode 100644 app/Classes/General/Eloquent/Filters/importer.php create mode 100644 app/Classes/General/Services/GeneratesInitials.php create mode 100644 app/Classes/General/Wrapper/Hasher.php create mode 100644 app/Classes/Interfaces/DataTransferObject.php create mode 100644 app/Classes/Modules/Addresses/ControllersLogic/CreateAddressLogic.php create mode 100644 app/Classes/Modules/Addresses/ControllersLogic/DeleteAddressLogic.php create mode 100644 app/Classes/Modules/Addresses/ControllersLogic/FetchAddressLogic.php create mode 100644 app/Classes/Modules/Addresses/ControllersLogic/ListAddressesLogic.php create mode 100644 app/Classes/Modules/Addresses/ControllersLogic/UpdateAddressLogic.php create mode 100644 app/Classes/Modules/Addresses/DataTransferObjects/AddressObject.php create mode 100644 app/Classes/Modules/Addresses/Services/CreatesAddress.php create mode 100644 app/Classes/Modules/Addresses/Services/DeletesAddress.php create mode 100644 app/Classes/Modules/Addresses/Services/FetchesAddress.php create mode 100644 app/Classes/Modules/Addresses/Services/ListsAddresses.php create mode 100644 app/Classes/Modules/Addresses/Services/UpdatesAddress.php create mode 100644 app/Classes/Modules/Addresses/Standards/Rules/CanCreateAddress.php create mode 100644 app/Classes/Modules/Addresses/Standards/Rules/CanDeleteAddress.php create mode 100644 app/Classes/Modules/Addresses/Standards/Rules/CanFetchAddress.php create mode 100644 app/Classes/Modules/Addresses/Standards/Rules/CanListAddresses.php create mode 100644 app/Classes/Modules/Addresses/Standards/Rules/CanUpdateAddress.php create mode 100644 app/Classes/Modules/Addresses/Standards/Validators/AddressValidation.php create mode 100644 app/Classes/Notifications/AbstractEmail.php create mode 100644 app/Classes/ValueObjects/Response/ApiResponseObject.php create mode 100644 app/Console/Kernel.php create mode 100644 app/Exceptions/Handler.php create mode 100644 app/Http/Controllers/Addresses/CreateAddressController.php create mode 100644 app/Http/Controllers/Addresses/DeleteAddressController.php create mode 100644 app/Http/Controllers/Addresses/FetchAddressController.php create mode 100644 app/Http/Controllers/Addresses/ListAddressesController.php create mode 100644 app/Http/Controllers/Addresses/UpdateAddressController.php create mode 100644 app/Http/Controllers/Controller.php create mode 100644 app/Http/Kernel.php create mode 100644 app/Http/Middleware/Authenticate.php create mode 100644 app/Http/Middleware/CheckForMaintenanceMode.php create mode 100644 app/Http/Middleware/EncryptCookies.php create mode 100644 app/Http/Middleware/RedirectIfAuthenticated.php create mode 100644 app/Http/Middleware/TrimStrings.php create mode 100644 app/Http/Middleware/TrustHosts.php create mode 100644 app/Http/Middleware/TrustProxies.php create mode 100644 app/Http/Middleware/ValidateToken.php create mode 100644 app/Http/Middleware/VerifyCsrfToken.php create mode 100644 app/Http/Resources/AddressResource.php create mode 100644 app/Models/AbstractModel.php create mode 100644 app/Models/Address.php create mode 100644 app/Models/User.php create mode 100644 app/Providers/AppServiceProvider.php create mode 100644 app/Providers/AuthServiceProvider.php create mode 100644 app/Providers/BroadcastServiceProvider.php create mode 100644 app/Providers/EventServiceProvider.php create mode 100644 app/Providers/RouteServiceProvider.php create mode 100644 artisan create mode 100644 bootstrap/app.php create mode 100644 bootstrap/cache/.gitignore create mode 100644 composer.json create mode 100644 config/activitylog.php create mode 100644 config/app.php create mode 100644 config/auth.php create mode 100644 config/broadcasting.php create mode 100644 config/cache.php create mode 100644 config/cors.php create mode 100644 config/database.php create mode 100644 config/filesystems.php create mode 100644 config/hashing.php create mode 100644 config/logging.php create mode 100644 config/mail.php create mode 100644 config/queue.php create mode 100644 config/services.php create mode 100644 config/session.php create mode 100644 config/view.php create mode 100644 database/.gitignore create mode 100644 database/factories/AddressFactory.php create mode 100644 database/migrations/2014_10_12_000000_create_users_table.php create mode 100644 database/migrations/2019_08_19_000000_create_failed_jobs_table.php create mode 100644 database/migrations/2020_07_30_022600_create_password_resets_table.php create mode 100644 database/migrations/2020_07_30_023042_create_activity_log_table.php create mode 100644 database/migrations/2020_08_04_023621_create_user_email_verifications_table.php create mode 100644 database/migrations/2020_08_04_043647_create_addresses_table.php create mode 100644 database/migrations/2020_09_08_035941_create_jobs_table.php create mode 100644 database/seeds/AddressesTableSeeder.php create mode 100644 database/seeds/DatabaseSeeder.php create mode 100644 gulpfile.js create mode 100644 package.json create mode 100644 phpunit.xml create mode 100644 public/.htaccess create mode 100644 public/favicon.ico create mode 100644 public/index.php create mode 100644 public/robots.txt create mode 100644 public/web.config create mode 100644 resources/assets/fonts/montserrat/Montserrat-Bold.ttf create mode 100644 resources/assets/fonts/montserrat/Montserrat-Regular.ttf create mode 100644 resources/assets/fonts/montserrat/montserrat-bold-webfont.svg create mode 100644 resources/assets/fonts/montserrat/montserrat-regular-webfont.svg create mode 100644 resources/assets/images/accounts-graphic.png create mode 100644 resources/assets/images/admin-dashboard-illustration.png create mode 100644 resources/assets/images/favicon.png create mode 100644 resources/assets/images/favicon/android-icon-144x144.png create mode 100644 resources/assets/images/favicon/android-icon-192x192.png create mode 100644 resources/assets/images/favicon/android-icon-36x36.png create mode 100644 resources/assets/images/favicon/android-icon-48x48.png create mode 100644 resources/assets/images/favicon/android-icon-72x72.png create mode 100644 resources/assets/images/favicon/android-icon-96x96.png create mode 100644 resources/assets/images/favicon/apple-icon-114x114.png create mode 100644 resources/assets/images/favicon/apple-icon-120x120.png create mode 100644 resources/assets/images/favicon/apple-icon-144x144.png create mode 100644 resources/assets/images/favicon/apple-icon-152x152.png create mode 100644 resources/assets/images/favicon/apple-icon-180x180.png create mode 100644 resources/assets/images/favicon/apple-icon-57x57.png create mode 100644 resources/assets/images/favicon/apple-icon-60x60.png create mode 100644 resources/assets/images/favicon/apple-icon-72x72.png create mode 100644 resources/assets/images/favicon/apple-icon-76x76.png create mode 100644 resources/assets/images/favicon/apple-icon-precomposed.png create mode 100644 resources/assets/images/favicon/apple-icon.png create mode 100644 resources/assets/images/favicon/browserconfig.xml create mode 100644 resources/assets/images/favicon/favicon-16x16.png create mode 100644 resources/assets/images/favicon/favicon-32x32.png create mode 100644 resources/assets/images/favicon/favicon-96x96.png create mode 100644 resources/assets/images/favicon/favicon.ico create mode 100644 resources/assets/images/favicon/manifest.json create mode 100644 resources/assets/images/favicon/ms-icon-144x144.png create mode 100644 resources/assets/images/favicon/ms-icon-150x150.png create mode 100644 resources/assets/images/favicon/ms-icon-310x310.png create mode 100644 resources/assets/images/favicon/ms-icon-70x70.png create mode 100644 resources/assets/images/guangzhou-map.png create mode 100644 resources/assets/images/icons/packing-icon.png create mode 100644 resources/assets/images/icons/pdf.png create mode 100644 resources/assets/images/icons/processing-icon.png create mode 100644 resources/assets/images/icons/xlsx.png create mode 100644 resources/assets/images/login_bg.jpg create mode 100644 resources/assets/images/logo.png create mode 100644 resources/assets/images/logo_white.png create mode 100644 resources/assets/images/maintenance.png create mode 100644 resources/assets/images/not-found-illustration.png create mode 100644 resources/assets/images/profile_black.png create mode 100644 resources/assets/images/profile_white.png create mode 100644 resources/assets/images/search-illustration.png create mode 100644 resources/assets/images/shipping_bg.jpeg create mode 100644 resources/assets/images/top-banner.jpg create mode 100644 resources/assets/images/user-illustration.png create mode 100644 resources/assets/images/yiwu-map.png create mode 100644 resources/assets/js/pages.js create mode 100644 resources/assets/js/route.js create mode 100644 resources/assets/js/scripts.js create mode 100644 resources/assets/js/three.r92.min.js create mode 100644 resources/assets/js/vanta.birds.min.js create mode 100644 resources/assets/sass/_color.scss create mode 100644 resources/assets/sass/_mixins.scss create mode 100644 resources/assets/sass/_modules.scss create mode 100644 resources/assets/sass/_responsive.scss create mode 100644 resources/assets/sass/_var.scss create mode 100644 resources/assets/sass/main.scss create mode 100644 resources/assets/sass/modules/_alerts.scss create mode 100644 resources/assets/sass/modules/_animation.scss create mode 100644 resources/assets/sass/modules/_buttons.scss create mode 100644 resources/assets/sass/modules/_calendar.scss create mode 100644 resources/assets/sass/modules/_cards.scss create mode 100644 resources/assets/sass/modules/_charts.scss create mode 100644 resources/assets/sass/modules/_chat.scss create mode 100644 resources/assets/sass/modules/_email.scss create mode 100644 resources/assets/sass/modules/_form_elements.scss create mode 100644 resources/assets/sass/modules/_gallery.scss create mode 100644 resources/assets/sass/modules/_layout.scss create mode 100644 resources/assets/sass/modules/_list.scss create mode 100644 resources/assets/sass/modules/_lock_screen.scss create mode 100644 resources/assets/sass/modules/_login.scss create mode 100644 resources/assets/sass/modules/_misc.scss create mode 100644 resources/assets/sass/modules/_modals.scss create mode 100644 resources/assets/sass/modules/_nestables.scss create mode 100644 resources/assets/sass/modules/_notifications.scss create mode 100644 resources/assets/sass/modules/_print.scss create mode 100644 resources/assets/sass/modules/_progress_indicators.scss create mode 100644 resources/assets/sass/modules/_sliders.scss create mode 100644 resources/assets/sass/modules/_social.scss create mode 100644 resources/assets/sass/modules/_tables.scss create mode 100644 resources/assets/sass/modules/_tabs_accordian.scss create mode 100644 resources/assets/sass/modules/_timeline.scss create mode 100644 resources/assets/sass/modules/_treeview.scss create mode 100644 resources/assets/sass/modules/_typography.scss create mode 100644 resources/assets/sass/modules/_vector_map.scss create mode 100644 resources/assets/sass/modules/_view.scss create mode 100644 resources/assets/sass/modules/_widgets.scss create mode 100644 resources/assets/sass/modules/_z_index.scss create mode 100644 resources/assets/vue/app.js create mode 100644 resources/assets/vue/components/address/elements/AddressComponent.vue create mode 100644 resources/assets/vue/components/address/forms/AddressFormComponent.vue create mode 100644 resources/assets/vue/components/general/elements/ListComponent.vue create mode 100644 resources/assets/vue/components/general/elements/LoadingComponent.vue create mode 100644 resources/assets/vue/components/general/elements/ModalComponent.vue create mode 100644 resources/assets/vue/components/general/elements/PaginationComponent.vue create mode 100644 resources/assets/vue/components/general/elements/SearchComponent.vue create mode 100644 resources/assets/vue/components/general/elements/TransitionComponent.vue create mode 100644 resources/assets/vue/components/general/elements/ValidationErrorComponent.vue create mode 100644 resources/assets/vue/components/general/forms/ModalFormComponent.vue create mode 100644 resources/assets/vue/components/general/forms/SelectComponent.vue create mode 100644 resources/assets/vue/components/general/forms/ValidationErrorComponent.vue create mode 100644 resources/assets/vue/components/general/forms/ValidationWrapperComponent.vue create mode 100644 resources/assets/vue/mixins/crudMixin.js create mode 100644 resources/assets/vue/mixins/requestMixin.js create mode 100644 resources/assets/vue/vuex/modules/authentication.js create mode 100644 resources/assets/vue/vuex/modules/createNotification.js create mode 100644 resources/assets/vue/vuex/modules/crudRequest.js create mode 100644 resources/assets/vue/vuex/modules/loadRequestQueue.js create mode 100644 resources/assets/vue/vuex/modules/toggleLoading.js create mode 100644 resources/assets/vue/vuex/modules/toggleSection.js create mode 100644 resources/assets/vue/vuex/store.js create mode 100644 resources/lang/en/auth.php create mode 100644 resources/lang/en/pagination.php create mode 100644 resources/lang/en/passwords.php create mode 100644 resources/lang/en/validation.php create mode 100644 resources/views/layouts/base.blade.php create mode 100644 resources/views/layouts/base_login.blade.php create mode 100644 resources/views/layouts/base_portal.blade.php create mode 100644 resources/views/pages/accounts/authentication/login.blade.php create mode 100644 resources/views/pages/accounts/authentication/reset_password.blade.php create mode 100644 resources/views/pages/errors/maintenance.blade.php create mode 100644 resources/views/partials/footer.blade.php create mode 100644 resources/views/partials/header.blade.php create mode 100644 resources/views/partials/menu.blade.php create mode 100644 resources/views/vendor/head.blade.php create mode 100644 resources/views/vendor/js.blade.php create mode 100644 resources/views/welcome.blade.php create mode 100644 routes/account.php create mode 100644 routes/api.php create mode 100644 routes/channels.php create mode 100644 routes/console.php create mode 100644 routes/crud.php create mode 100644 routes/web.php create mode 100644 server.php create mode 100644 storage/app/.gitignore create mode 100644 storage/app/public/.gitignore create mode 100644 storage/framework/.gitignore create mode 100644 storage/framework/cache/.gitignore create mode 100644 storage/framework/cache/data/.gitignore create mode 100644 storage/framework/sessions/.gitignore create mode 100644 storage/framework/testing/.gitignore create mode 100644 storage/framework/views/.gitignore create mode 100644 storage/logs/.gitignore create mode 100644 tests/CreatesApplication.php create mode 100644 tests/Feature/ExampleTest.php create mode 100644 tests/TestCase.php create mode 100644 tests/Unit/ExampleTest.php create mode 100644 webpack.mix.js diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 00000000..6537ca46 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,15 @@ +root = true + +[*] +charset = utf-8 +end_of_line = lf +insert_final_newline = true +indent_style = space +indent_size = 4 +trim_trailing_whitespace = true + +[*.md] +trim_trailing_whitespace = false + +[*.{yml,yaml}] +indent_size = 2 diff --git a/.env.example b/.env.example new file mode 100644 index 00000000..a0701a99 --- /dev/null +++ b/.env.example @@ -0,0 +1,48 @@ +APP_NAME=Laravel +APP_ENV=local +APP_KEY= +APP_DEBUG=true +APP_URL=http://localhost + +LOG_CHANNEL=stack + +DB_CONNECTION=mysql +DB_HOST=127.0.0.1 +DB_PORT=3306 +DB_DATABASE=laravel +DB_USERNAME=root +DB_PASSWORD= + +BROADCAST_DRIVER=log +CACHE_DRIVER=file +QUEUE_CONNECTION=sync +SESSION_DRIVER=file +SESSION_LIFETIME=120 + +REDIS_HOST=127.0.0.1 +REDIS_PASSWORD=null +REDIS_PORT=6379 + +MAIL_MAILER=smtp +MAIL_HOST=smtp.mailtrap.io +MAIL_PORT=2525 +MAIL_USERNAME=null +MAIL_PASSWORD=null +MAIL_ENCRYPTION=null +MAIL_FROM_ADDRESS=null +MAIL_FROM_NAME="${APP_NAME}" + +AWS_ACCESS_KEY_ID= +AWS_SECRET_ACCESS_KEY= +AWS_DEFAULT_REGION=us-east-1 +AWS_BUCKET= + +PUSHER_APP_ID= +PUSHER_APP_KEY= +PUSHER_APP_SECRET= +PUSHER_APP_CLUSTER=mt1 + +MIX_PUSHER_APP_KEY="${PUSHER_APP_KEY}" +MIX_PUSHER_APP_CLUSTER="${PUSHER_APP_CLUSTER}" + +JWT_SECRET= diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 00000000..967315dd --- /dev/null +++ b/.gitattributes @@ -0,0 +1,5 @@ +* text=auto +*.css linguist-vendored +*.scss linguist-vendored +*.js linguist-vendored +CHANGELOG.md export-ignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 00000000..eec23d5b --- /dev/null +++ b/.gitignore @@ -0,0 +1,13 @@ +/node_modules +/public/hot +/public/storage +/storage/*.key +/vendor +**/.idea/ +.env +.env.backup +.phpunit.result.cache +Homestead.json +Homestead.yaml +npm-debug.log +yarn-error.log diff --git a/.styleci.yml b/.styleci.yml new file mode 100644 index 00000000..1db61d96 --- /dev/null +++ b/.styleci.yml @@ -0,0 +1,13 @@ +php: + preset: laravel + disabled: + - unused_use + finder: + not-name: + - index.php + - server.php +js: + finder: + not-name: + - webpack.mix.js +css: true diff --git a/README.md b/README.md new file mode 100644 index 00000000..3cae01ea --- /dev/null +++ b/README.md @@ -0,0 +1,79 @@ +

+ +

+Build Status +Total Downloads +Latest Stable Version +License +

+ +## About Laravel + +Laravel is a web application framework with expressive, elegant syntax. We believe development must be an enjoyable and creative experience to be truly fulfilling. Laravel takes the pain out of development by easing common tasks used in many web projects, such as: + +- [Simple, fast routing engine](https://laravel.com/docs/routing). +- [Powerful dependency injection container](https://laravel.com/docs/container). +- Multiple back-ends for [session](https://laravel.com/docs/session) and [cache](https://laravel.com/docs/cache) storage. +- Expressive, intuitive [database ORM](https://laravel.com/docs/eloquent). +- Database agnostic [schema migrations](https://laravel.com/docs/migrations). +- [Robust background job processing](https://laravel.com/docs/queues). +- [Real-time event broadcasting](https://laravel.com/docs/broadcasting). + +Laravel is accessible, powerful, and provides tools required for large, robust applications. + +## Learning Laravel + +Laravel has the most extensive and thorough [documentation](https://laravel.com/docs) and video tutorial library of all modern web application frameworks, making it a breeze to get started with the framework. + +If you don't feel like reading, [Laracasts](https://laracasts.com) can help. Laracasts contains over 1500 video tutorials on a range of topics including Laravel, modern PHP, unit testing, and JavaScript. Boost your skills by digging into our comprehensive video library. + +## Laravel Sponsors + +We would like to extend our thanks to the following sponsors for funding Laravel development. If you are interested in becoming a sponsor, please visit the Laravel [Patreon page](https://patreon.com/taylorotwell). + +- **[Vehikl](https://vehikl.com/)** +- **[Tighten Co.](https://tighten.co)** +- **[Kirschbaum Development Group](https://kirschbaumdevelopment.com)** +- **[64 Robots](https://64robots.com)** +- **[Cubet Techno Labs](https://cubettech.com)** +- **[Cyber-Duck](https://cyber-duck.co.uk)** +- **[Many](https://www.many.co.uk)** +- **[Webdock, Fast VPS Hosting](https://www.webdock.io/en)** +- **[DevSquad](https://devsquad.com)** +- [UserInsights](https://userinsights.com) +- [Fragrantica](https://www.fragrantica.com) +- [SOFTonSOFA](https://softonsofa.com/) +- [User10](https://user10.com) +- [Soumettre.fr](https://soumettre.fr/) +- [CodeBrisk](https://codebrisk.com) +- [1Forge](https://1forge.com) +- [TECPRESSO](https://tecpresso.co.jp/) +- [Runtime Converter](http://runtimeconverter.com/) +- [WebL'Agence](https://weblagence.com/) +- [Invoice Ninja](https://www.invoiceninja.com) +- [iMi digital](https://www.imi-digital.de/) +- [Earthlink](https://www.earthlink.ro/) +- [Steadfast Collective](https://steadfastcollective.com/) +- [We Are The Robots Inc.](https://watr.mx/) +- [Understand.io](https://www.understand.io/) +- [Abdel Elrafa](https://abdelelrafa.com) +- [Hyper Host](https://hyper.host) +- [Appoly](https://www.appoly.co.uk) +- [OP.GG](https://op.gg) +- [云软科技](http://www.yunruan.ltd/) + +## Contributing + +Thank you for considering contributing to the Laravel framework! The contribution guide can be found in the [Laravel documentation](https://laravel.com/docs/contributions). + +## Code of Conduct + +In order to ensure that the Laravel community is welcoming to all, please review and abide by the [Code of Conduct](https://laravel.com/docs/contributions#code-of-conduct). + +## Security Vulnerabilities + +If you discover a security vulnerability within Laravel, please send an e-mail to Taylor Otwell via [taylor@laravel.com](mailto:taylor@laravel.com). All security vulnerabilities will be promptly addressed. + +## License + +The Laravel framework is open-sourced software licensed under the [MIT license](https://opensource.org/licenses/MIT). diff --git a/app/Classes/Exceptions/AccessForbiddenException.php b/app/Classes/Exceptions/AccessForbiddenException.php new file mode 100644 index 00000000..8d7e09aa --- /dev/null +++ b/app/Classes/Exceptions/AccessForbiddenException.php @@ -0,0 +1,12 @@ +httpStatusCode = $httpStatusCode; + } +} diff --git a/app/Classes/General/Abstracts/AbstractControllerLogic.php b/app/Classes/General/Abstracts/AbstractControllerLogic.php new file mode 100644 index 00000000..4a0366b2 --- /dev/null +++ b/app/Classes/General/Abstracts/AbstractControllerLogic.php @@ -0,0 +1,87 @@ +notification()['title'] ? $this->notification()['title']: Notifications::UNDEFINED['title']; + } + + /** + * @return string + */ + private function getNotificationMessage():string { + return $this->notification()['message'] ? $this->notification()['message']: Notifications::UNDEFINED['message']; + } + + /** + * @param Request $request + * @return JsonResponse + * @throws ErrorException + */ + abstract protected function logic(Request $request) : JsonResponse; + + /** + * @param Request $request + * @return JsonResponse + */ + public function execute(Request $request) : JsonResponse { + + try { + + return $this->logic($request); + + } catch (ErrorException $exception){ + return (new ApiResponseObject($this->getNotificationTitle().' failed', $exception->getMessage(), $exception->getCode()))->handler(); + + } + } + + /** + * @param array|null $data + * @return JsonResponse + */ + public function response(?array $data = []) : JsonResponse { + + return (new ApiResponseObject($this->getNotificationTitle().' Successful', + $this->getNotificationMessage(), + HttpStatus::OK_WITH_MESSAGE, $data))->handler(); + } + + /** + * @param JsonResource $resource + * @return JsonResponse + */ + public function resourceResponse(JsonResource $resource){ + return $this->response(['data' => $resource]); + } + + /** + * @param ResourceCollection $collection + * @return JsonResponse + */ + public function collectionResponse(ResourceCollection $collection){ + return $this->response(json_decode($collection->response()->getContent(), true)); + } + +} \ No newline at end of file diff --git a/app/Classes/General/Abstracts/AbstractRule.php b/app/Classes/General/Abstracts/AbstractRule.php new file mode 100644 index 00000000..a4506ba2 --- /dev/null +++ b/app/Classes/General/Abstracts/AbstractRule.php @@ -0,0 +1,46 @@ +authorized()){ + throw new AccessForbiddenException('You don\'t have permission to preform this action'); + } + + $this->validators($object); + $this->criteria($object); + + return true; + + } catch(AccessForbiddenException $exception){ + throw new AccessForbiddenException('You don\'t have permission to preform this action'); + } catch(\Exception $exception){ + throw new RequestValidationException($exception->getMessage()); + } + + } + +} \ No newline at end of file diff --git a/app/Classes/General/Abstracts/AbstractService.php b/app/Classes/General/Abstracts/AbstractService.php new file mode 100644 index 00000000..03a2e8cc --- /dev/null +++ b/app/Classes/General/Abstracts/AbstractService.php @@ -0,0 +1,42 @@ +handler($model); + + if($model->save()){ + return $model; + } + + + + } catch (QueryException $exception){ + throw new MalformedRequestException('Unable to update the record due to unexpected error'); + } + + } + + abstract function getModel(Model $model); + abstract function handler(Model $model); + + +} \ No newline at end of file diff --git a/app/Classes/General/Abstracts/AbstractValidation.php b/app/Classes/General/Abstracts/AbstractValidation.php new file mode 100644 index 00000000..11d22935 --- /dev/null +++ b/app/Classes/General/Abstracts/AbstractValidation.php @@ -0,0 +1,49 @@ +validator = $validator; + } + + + abstract protected function data($object): array; + + abstract protected function rules(): array; + + abstract protected function messages(): array; + + + /** + * @param DataTransferObject $object + * @return bool + * @throws RequestValidationException + */ + public function validate(DataTransferObject $object){ + + $validator = $this->validator::make($this->data($object), $this->rules(), $this->messages()); + + if($validator->fails()){ + throw new RequestValidationException($validator->messages()->first()); + } + + return true; + } + +} \ No newline at end of file diff --git a/app/Classes/General/Eloquent/AbstractDeleteRecord.php b/app/Classes/General/Eloquent/AbstractDeleteRecord.php new file mode 100644 index 00000000..76648842 --- /dev/null +++ b/app/Classes/General/Eloquent/AbstractDeleteRecord.php @@ -0,0 +1,32 @@ +delete()){ + return []; + } + + } catch (QueryException|\Exception $exception){ + dd($exception->getMessage()); + throw new MalformedRequestException('Unable to update the record due to unexpected error'); + } + } + + + +} \ No newline at end of file diff --git a/app/Classes/General/Eloquent/AbstractFetchRecord.php b/app/Classes/General/Eloquent/AbstractFetchRecord.php new file mode 100644 index 00000000..1fbd39da --- /dev/null +++ b/app/Classes/General/Eloquent/AbstractFetchRecord.php @@ -0,0 +1,37 @@ +handler($filters); + + } + + + /** + * @param Builder $query + * @return Model + * @throws ResourceNotFoundException + */ + public function getResults(Builder $query): Model { + if(!$query->exists()){ + throw new ResourceNotFoundException('Unable to find any record based on the criteria provided'); + } + + return $query->first(); + } + +} \ No newline at end of file diff --git a/app/Classes/General/Eloquent/AbstractGetRecord.php b/app/Classes/General/Eloquent/AbstractGetRecord.php new file mode 100644 index 00000000..f927d818 --- /dev/null +++ b/app/Classes/General/Eloquent/AbstractGetRecord.php @@ -0,0 +1,70 @@ +filters->except(self::DECORATION_FILTERS); + } + + /** + * @return Collection + */ + public function getDecorationFilters(){ + return $this->filters->only(self::DECORATION_FILTERS); + } + + /** + * @param null|string $json + * @return array + */ + public function deserializeFilters(?string $json): array { + return $json !== null ? collect(json_decode($json))->toArray() : []; + } + + /** + * @return Builder + */ + private function applyFiltersToQuery(): Builder + { + return (new ApplyFiltersToQuery())->execute($this->getRepository(), $this->getQueryFilters()->toArray()); + } + + /** + * @param array $filters + * @return mixed + */ + public function handler(array $filters){ + $this->filters = collect($filters); + return $this->getResults($this->applyFiltersToQuery()); + } + + + /** + * @return Builder + */ + abstract function getRepository(): Builder; + + /** + * @param Builder $query + * @return mixed + */ + abstract function getResults(Builder $query); + +} \ No newline at end of file diff --git a/app/Classes/General/Eloquent/AbstractListRecord.php b/app/Classes/General/Eloquent/AbstractListRecord.php new file mode 100644 index 00000000..c5d2e6e6 --- /dev/null +++ b/app/Classes/General/Eloquent/AbstractListRecord.php @@ -0,0 +1,46 @@ +handler($filters); + + } catch (QueryException $exception){ + throw new MalformedRequestException('Unable to fetch the list of records due to unexpected error'); + } + + } + + /** + * @param Builder $query + * @return mixed + */ + public function getResults(Builder $query) { + $filters = $this->getDecorationFilters(); + + if($filters->has('order_by')){ + $query = $query->orderBy($filters->get('order_by')->column, $filters->get('order_by')->DESC ? 'DESC': 'ASC'); + } + + return $filters->has('per_page') ? $query->paginate($filters->get('per_page')) : $query->get(); + + } + +} \ No newline at end of file diff --git a/app/Classes/General/Eloquent/AbstractUpdateRecord.php b/app/Classes/General/Eloquent/AbstractUpdateRecord.php new file mode 100644 index 00000000..de5730bd --- /dev/null +++ b/app/Classes/General/Eloquent/AbstractUpdateRecord.php @@ -0,0 +1,32 @@ +save()){ + return $model; + } + + } catch (QueryException $exception){ + throw new MalformedRequestException('Unable to update the record due to unexpected error'); + } + } + + + +} \ No newline at end of file diff --git a/app/Classes/General/Eloquent/ApplyFiltersToQuery.php b/app/Classes/General/Eloquent/ApplyFiltersToQuery.php new file mode 100644 index 00000000..7531a2cf --- /dev/null +++ b/app/Classes/General/Eloquent/ApplyFiltersToQuery.php @@ -0,0 +1,41 @@ + $value){ + $decorator = static::createFilterDecorator($filterName); + + if (static::isValidDecorator($decorator)) { + $query = $decorator::apply($query, $value); + } + } + + return $query; + } + + private static function createFilterDecorator($name) + { + return __NAMESPACE__ . '\Filters\\' . Str::studly($name); + } + + private static function isValidDecorator($decorator) + { + return class_exists($decorator); + } + + +} \ No newline at end of file diff --git a/app/Classes/General/Eloquent/Filters/Active.php b/app/Classes/General/Eloquent/Filters/Active.php new file mode 100644 index 00000000..7bc21e5e --- /dev/null +++ b/app/Classes/General/Eloquent/Filters/Active.php @@ -0,0 +1,20 @@ +where('active', $value); + } + +} \ No newline at end of file diff --git a/app/Classes/General/Eloquent/Filters/Email.php b/app/Classes/General/Eloquent/Filters/Email.php new file mode 100644 index 00000000..c02c97f7 --- /dev/null +++ b/app/Classes/General/Eloquent/Filters/Email.php @@ -0,0 +1,20 @@ +where('email', 'LIKE', '%' . $value . '%'); + } + +} \ No newline at end of file diff --git a/app/Classes/General/Eloquent/Filters/Filter.php b/app/Classes/General/Eloquent/Filters/Filter.php new file mode 100644 index 00000000..42810e8b --- /dev/null +++ b/app/Classes/General/Eloquent/Filters/Filter.php @@ -0,0 +1,19 @@ +where('id', $value); + } + +} \ No newline at end of file diff --git a/app/Classes/General/Eloquent/Filters/Name.php b/app/Classes/General/Eloquent/Filters/Name.php new file mode 100644 index 00000000..92d27f01 --- /dev/null +++ b/app/Classes/General/Eloquent/Filters/Name.php @@ -0,0 +1,20 @@ +where('name', 'LIKE', '%' . $value . '%'); + } + +} \ No newline at end of file diff --git a/app/Classes/General/Eloquent/Filters/Status.php b/app/Classes/General/Eloquent/Filters/Status.php new file mode 100644 index 00000000..19b23b9d --- /dev/null +++ b/app/Classes/General/Eloquent/Filters/Status.php @@ -0,0 +1,20 @@ +where('status', $value); + } + +} \ No newline at end of file diff --git a/app/Classes/General/Eloquent/Filters/Token.php b/app/Classes/General/Eloquent/Filters/Token.php new file mode 100644 index 00000000..8093fc61 --- /dev/null +++ b/app/Classes/General/Eloquent/Filters/Token.php @@ -0,0 +1,20 @@ +where('token', $value); + } + +} \ No newline at end of file diff --git a/app/Classes/General/Eloquent/Filters/UserName.php b/app/Classes/General/Eloquent/Filters/UserName.php new file mode 100644 index 00000000..6cf60e7f --- /dev/null +++ b/app/Classes/General/Eloquent/Filters/UserName.php @@ -0,0 +1,22 @@ +where(function($query) use ($value) { + $query->where('first_name', 'LIKE', '%' . $value . '%')->orWhere('last_name', 'LIKE', '%' . $value . '%'); + }); + } + +} \ No newline at end of file diff --git a/app/Classes/General/Eloquent/Filters/WithUser.php b/app/Classes/General/Eloquent/Filters/WithUser.php new file mode 100644 index 00000000..b731c621 --- /dev/null +++ b/app/Classes/General/Eloquent/Filters/WithUser.php @@ -0,0 +1,20 @@ +with('user'); + } +} \ No newline at end of file diff --git a/app/Classes/General/Eloquent/Filters/importer.php b/app/Classes/General/Eloquent/Filters/importer.php new file mode 100644 index 00000000..13eb3311 --- /dev/null +++ b/app/Classes/General/Eloquent/Filters/importer.php @@ -0,0 +1,24 @@ +whereHas('modules', function ($query){ + $query->where('module_type', ModuleTypes::IMPORTER); + }); + + } + +} \ No newline at end of file diff --git a/app/Classes/General/Services/GeneratesInitials.php b/app/Classes/General/Services/GeneratesInitials.php new file mode 100644 index 00000000..05f06efd --- /dev/null +++ b/app/Classes/General/Services/GeneratesInitials.php @@ -0,0 +1,152 @@ +generate($nameOrInitials); + + return $this; + } + + /** + * Set if should keep lettercase on name. + * Setting this to false (default) will uppercase the name. + * + * @param boolean $keepCase + * + * @return GeneratesInitials + */ + public function keepCase($keepCase = true) + { + $this->keepCase = $keepCase; + + return $this; + } + + /** + * Set the length of the generated initials. + * + * @param int $length + * + * @return GeneratesInitials + */ + public function length($length = 2) + { + $this->length = (int) $length; + $this->initials = $this->generateInitials(); + + return $this; + } + + /** + * Generate the initials. + * + * @param null|string $name + * + * @return string + */ + public function generate($name = null) + { + if ($name !== null) { + $this->name = $name; + $this->initials = $this->generateInitials(); + } + + return (string) $this; + } + + /** + * Will return the generated initials. + * + * @return string + */ + public function getInitials() + { + return $this->initials; + } + + /** + * Return the initials. + * + * @return string + */ + public function __toString() + { + return $this->getInitials(); + } + + /** + * Generate a two-letter initial from a name, + * and if no name, assume its already initials. + * For safety, we limit it to two characters, + * in case its a single, but long, name. + * + * @return string + */ + protected function generateInitials() + { + $nameOrInitials = trim($this->name); + + if( !$this->keepCase ) { + $nameOrInitials = mb_strtoupper($nameOrInitials); + } + + $nameOrInitials = trim( trim( $nameOrInitials, '-' ) ); + + $names = explode(' ', $nameOrInitials); + + // Get names with dash (-) between into separate names + $names = array_map( static function ($namePart) { return explode('-', $namePart); }, $names ); + $realNames = []; + + foreach( new \RecursiveIteratorIterator( new \RecursiveArrayIterator($names) ) as $namePart ) { + $realNames[] = $namePart; + } + + $names = $realNames; + + $initials = $nameOrInitials; + $assignedNames = 0; + + if (count($names) > 1) { + $initials = ''; + $start = 0; + + for ($i = 0; $i < $this->length; $i++) { + $index = $i; + + if (($index === ($this->length - 1) && $index > 0) || ($index > (count($names) - 1))) { + $index = count($names) - 1; + } + + if ($assignedNames >= count($names)) { + $start++; + } + + $initials .= mb_substr($names[$index], $start, 1); + $assignedNames++; + } + } + + $initials = mb_substr($initials, 0, $this->length); + + return $initials; + } + +} \ No newline at end of file diff --git a/app/Classes/General/Wrapper/Hasher.php b/app/Classes/General/Wrapper/Hasher.php new file mode 100644 index 00000000..d02b05eb --- /dev/null +++ b/app/Classes/General/Wrapper/Hasher.php @@ -0,0 +1,23 @@ +encode(...$args); + } + public static function decode($enc) + { + if (is_int($enc)) { + return $enc; + } + return app(Hashids::class)->decode($enc)[0]; + } + +} \ No newline at end of file diff --git a/app/Classes/Interfaces/DataTransferObject.php b/app/Classes/Interfaces/DataTransferObject.php new file mode 100644 index 00000000..43b44d7d --- /dev/null +++ b/app/Classes/Interfaces/DataTransferObject.php @@ -0,0 +1,9 @@ + 'Created Address', + 'message' => 'You have successfully created a new Address' + ]; + } + + /** @var CanCreateAddress */ + private $canCreateAddress; + + /** @var CreatesAddress */ + private $createsAddress; + + /** + * CreateAddressControllerLogic constructor. + * @param CanCreateAddress $canCreateAddress + * @param CreatesAddress $createsAddress + */ + public function __construct(CanCreateAddress $canCreateAddress, CreatesAddress $createsAddress) + { + $this->canCreateAddress = $canCreateAddress; + $this->createsAddress = $createsAddress; + } + + + /** + * @param Request $request + * @return JsonResponse + * @throws ErrorException + */ + public function logic(Request $request) : JsonResponse + { + try { + + $object = new AddressObject($request->input('company_id'), $request->input('street_one'), $request->input('street_two'), $request->input('city'), $request->input('state'), $request->input('post_code'), $request->input('country'), $request->input('default'), $request->input('billing')); + + $this->canCreateAddress->passes($object); + + $query = $this->createsAddress->execute($object); + + return $this->resourceResponse(new AddressResource($query)); + + } catch (\Exception $exception){ + throw new ErrorException($exception->getMessage(), $exception->getCode()); + } + + } + +} \ No newline at end of file diff --git a/app/Classes/Modules/Addresses/ControllersLogic/DeleteAddressLogic.php b/app/Classes/Modules/Addresses/ControllersLogic/DeleteAddressLogic.php new file mode 100644 index 00000000..eed4f73d --- /dev/null +++ b/app/Classes/Modules/Addresses/ControllersLogic/DeleteAddressLogic.php @@ -0,0 +1,73 @@ + 'Deleted Address', + 'message' => 'You have successfully deleted a Address' + ]; + } + + + /** @var CanDeleteAddress */ + private $canDeleteAddress; + + /** @var DeletesAddress */ + private $deletesAddress; + + /** @var FetchesAddress */ + private $fetchesAddress; + + /** + * DeleteAddressControllerLogic constructor. + * @param CanDeleteAddress $canDeleteAddress + * @param DeletesAddress $deletesAddress + * @param FetchesAddress $fetchesAddress + */ + public function __construct(CanDeleteAddress $canDeleteAddress, DeletesAddress $deletesAddress, FetchesAddress $fetchesAddress) + { + $this->canDeleteAddress = $canDeleteAddress; + $this->deletesAddress = $deletesAddress; + $this->fetchesAddress = $fetchesAddress; + } + + + /** + * @param Request $request + * @return JsonResponse + * @throws ErrorException + */ + public function logic(Request $request) : JsonResponse + { + try { + + $this->canDeleteAddress->passes(); + + $query = $this->fetchesAddress->execute(['id' => $request->route('id')]); + + $this->deletesAddress->execute($query); + + return $this->response([]); + + } catch (\Exception $exception){ + throw new ErrorException($exception->getMessage(), $exception->getCode()); + } + + } + +} \ No newline at end of file diff --git a/app/Classes/Modules/Addresses/ControllersLogic/FetchAddressLogic.php b/app/Classes/Modules/Addresses/ControllersLogic/FetchAddressLogic.php new file mode 100644 index 00000000..6ca4bc5a --- /dev/null +++ b/app/Classes/Modules/Addresses/ControllersLogic/FetchAddressLogic.php @@ -0,0 +1,67 @@ + 'Retrieved Address', + 'message' => 'You have successfully retrieved a Address' + ]; + } + + /** @var CanFetchAddress */ + private $canFetchAddress; + + /** @var FetchesAddress */ + private $fetchesAddress; + + /** + * FetchAddressControllerLogic constructor. + * @param CanFetchAddress $canFetchAddress + * @param FetchesAddress $fetchesAddress + */ + public function __construct(CanFetchAddress $canFetchAddress, FetchesAddress $fetchesAddress) + { + $this->canFetchAddress = $canFetchAddress; + $this->fetchesAddress = $fetchesAddress; + } + + + /** + * @param Request $request + * @return JsonResponse + * @throws ErrorException + */ + public function logic(Request $request) : JsonResponse + { + try { + + $this->canFetchAddress->passes(); + + $query = $this->fetchesAddress->execute(['id' => $request->route('id')]); + + return $this->resourceResponse(new AddressResource($query)); + + } catch (\Exception $exception){ + throw new ErrorException($exception->getMessage(), $exception->getCode()); + } + + } + +} \ No newline at end of file diff --git a/app/Classes/Modules/Addresses/ControllersLogic/ListAddressesLogic.php b/app/Classes/Modules/Addresses/ControllersLogic/ListAddressesLogic.php new file mode 100644 index 00000000..57e3a2f0 --- /dev/null +++ b/app/Classes/Modules/Addresses/ControllersLogic/ListAddressesLogic.php @@ -0,0 +1,66 @@ + 'Retrieved Addresses', + 'message' => 'You have successfully retrieved a list of Addresses' + ]; + } + + /** @var CanListAddresses */ + private $canListAddresses; + + /** @var ListsAddresses */ + private $listsAddresses; + + /** + * ListAddressesLogic constructor. + * @param CanListAddresses $canListAddresses + * @param ListsAddresses $listsAddresses + */ + public function __construct(CanListAddresses $canListAddresses, ListsAddresses $listsAddresses) + { + $this->canListAddresses = $canListAddresses; + $this->listsAddresses = $listsAddresses; + } + + + /** + * @param Request $request + * @return JsonResponse + * @throws ErrorException + */ + public function logic(Request $request) : JsonResponse + { + try { + + $this->canListAddresses->passes(); + + $query = $this->listsAddresses->execute($this->listsAddresses->deserializeFilters($request->input('filters'))); + + return $this->collectionResponse(AddressResource::collection($query)); + + } catch (\Exception $exception){ + throw new ErrorException($exception->getMessage(), $exception->getCode()); + } + + } + +} \ No newline at end of file diff --git a/app/Classes/Modules/Addresses/ControllersLogic/UpdateAddressLogic.php b/app/Classes/Modules/Addresses/ControllersLogic/UpdateAddressLogic.php new file mode 100644 index 00000000..aa7b4434 --- /dev/null +++ b/app/Classes/Modules/Addresses/ControllersLogic/UpdateAddressLogic.php @@ -0,0 +1,78 @@ + 'Updated Address', + 'message' => 'You have successfully updated the Address' + ]; + } + + /** @var CanUpdateAddress */ + private $canUpdateAddress; + + /** @var UpdatesAddress */ + private $updatesAddress; + + /** @var FetchesAddress */ + private $fetchesAddress; + + /** + * UpdateAddressLogic constructor. + * @param CanUpdateAddress $canUpdateAddress + * @param UpdatesAddress $updatesAddress + * @param FetchesAddress $fetchesAddress + */ + public function __construct(CanUpdateAddress $canUpdateAddress, UpdatesAddress $updatesAddress, FetchesAddress $fetchesAddress) + { + $this->canUpdateAddress = $canUpdateAddress; + $this->updatesAddress = $updatesAddress; + $this->fetchesAddress = $fetchesAddress; + } + + + /** + * @param Request $request + * @return JsonResponse + * @throws ErrorException + */ + public function logic(Request $request) : JsonResponse + { + try { + + $object = new AddressObject($request->input('company_id'), $request->input('street_one'), $request->input('street_two'), $request->input('city'), $request->input('state'), $request->input('post_code'), $request->input('country'), $request->input('default'), $request->input('billing')); + + $this->canUpdateAddress->passes($object); + + $query = $this->fetchesAddress->execute(['id' => $request->route('id')]); + + $query = $this->updatesAddress->execute($query, $object); + + return $this->resourceResponse(new AddressResource($query)); + + + } catch (\Exception $exception){ + throw new ErrorException($exception->getMessage(), $exception->getCode()); + } + + } + +} \ No newline at end of file diff --git a/app/Classes/Modules/Addresses/DataTransferObjects/AddressObject.php b/app/Classes/Modules/Addresses/DataTransferObjects/AddressObject.php new file mode 100644 index 00000000..abacaa67 --- /dev/null +++ b/app/Classes/Modules/Addresses/DataTransferObjects/AddressObject.php @@ -0,0 +1,135 @@ +companyId = $companyId; + $this->streetOne = $streetOne; + $this->streetTwo = $streetTwo; + $this->city = $city; + $this->state = $state; + $this->postCode = $postCode; + $this->country = $country; + $this->default = $default; + $this->billing = $billing; + } + + /** + * @return int + */ + public function getCompanyId(): int + { + return $this->companyId; + } + + /** + * @return string + */ + public function getStreetOne(): string + { + return $this->streetOne; + } + + /** + * @return null|string + */ + public function getStreetTwo(): ?string + { + return $this->streetTwo; + } + + /** + * @return string + */ + public function getCity(): string + { + return $this->city; + } + + /** + * @return string + */ + public function getState(): string + { + return $this->state; + } + + /** + * @return string + */ + public function getPostCode(): string + { + return $this->postCode; + } + + /** + * @return string + */ + public function getCountry(): string + { + return $this->country; + } + + /** + * @return int + */ + public function getDefault(): int + { + return $this->default; + } + + /** + * @return int + */ + public function getBilling(): int + { + return $this->billing; + } + + +} \ No newline at end of file diff --git a/app/Classes/Modules/Addresses/Services/CreatesAddress.php b/app/Classes/Modules/Addresses/Services/CreatesAddress.php new file mode 100644 index 00000000..b5e5b0df --- /dev/null +++ b/app/Classes/Modules/Addresses/Services/CreatesAddress.php @@ -0,0 +1,32 @@ +company_id = $object->getCompanyId(); + $model->street_one = $object->getStreetOne(); + $model->street_two = $object->getStreetTwo(); + $model->city = $object->getCity(); + $model->state = $object->getState(); + $model->post_code = $object->getPostCode(); + $model->country = $object->getCountry(); + $model->default = $object->getDefault(); + $model->billing = $object->getBilling(); + + return $this->handler($model); + + } +} \ No newline at end of file diff --git a/app/Classes/Modules/Addresses/Services/DeletesAddress.php b/app/Classes/Modules/Addresses/Services/DeletesAddress.php new file mode 100644 index 00000000..75cbbca8 --- /dev/null +++ b/app/Classes/Modules/Addresses/Services/DeletesAddress.php @@ -0,0 +1,15 @@ +handler($model); + } +} \ No newline at end of file diff --git a/app/Classes/Modules/Addresses/Services/FetchesAddress.php b/app/Classes/Modules/Addresses/Services/FetchesAddress.php new file mode 100644 index 00000000..a91900b7 --- /dev/null +++ b/app/Classes/Modules/Addresses/Services/FetchesAddress.php @@ -0,0 +1,33 @@ +repository = $repository; + } + + + /** + * @return Builder + */ + public function getRepository(): Builder + { + return $this->repository->newQuery(); + } +} \ No newline at end of file diff --git a/app/Classes/Modules/Addresses/Services/ListsAddresses.php b/app/Classes/Modules/Addresses/Services/ListsAddresses.php new file mode 100644 index 00000000..7a0f1213 --- /dev/null +++ b/app/Classes/Modules/Addresses/Services/ListsAddresses.php @@ -0,0 +1,33 @@ +repository = $repository; + } + + + /** + * @return Builder + */ + function getRepository(): Builder + { + return $this->repository->newQuery(); + } +} \ No newline at end of file diff --git a/app/Classes/Modules/Addresses/Services/UpdatesAddress.php b/app/Classes/Modules/Addresses/Services/UpdatesAddress.php new file mode 100644 index 00000000..76ba4d15 --- /dev/null +++ b/app/Classes/Modules/Addresses/Services/UpdatesAddress.php @@ -0,0 +1,33 @@ +company_id = $object->getCompanyId(); + $model->street_one = $object->getStreetOne(); + $model->street_two = $object->getStreetTwo(); + $model->city = $object->getCity(); + $model->state = $object->getState(); + $model->post_code = $object->getPostCode(); + $model->country = $object->getCountry(); + $model->default = $object->getDefault(); + $model->billing = $object->getBilling(); + + return $this->handler($model); + + } +} \ No newline at end of file diff --git a/app/Classes/Modules/Addresses/Standards/Rules/CanCreateAddress.php b/app/Classes/Modules/Addresses/Standards/Rules/CanCreateAddress.php new file mode 100644 index 00000000..42508b1d --- /dev/null +++ b/app/Classes/Modules/Addresses/Standards/Rules/CanCreateAddress.php @@ -0,0 +1,57 @@ +addressValidation = $addressValidation; + } + + + /** + * @return bool + */ + protected function authorized(): bool + { + // TODO Set Authorization rules + return true; + + } + + /** + * @param AddressObject $object + * @return bool + * @throws \App\Classes\Exceptions\RequestValidationException + */ + protected function validators($object): bool + { + return $this->addressValidation->validate($object); + + } + + + /** + * @param AddressObject $object + * @return bool + */ + protected function criteria($object): bool + { + return true; + } + +} \ No newline at end of file diff --git a/app/Classes/Modules/Addresses/Standards/Rules/CanDeleteAddress.php b/app/Classes/Modules/Addresses/Standards/Rules/CanDeleteAddress.php new file mode 100644 index 00000000..c13a890c --- /dev/null +++ b/app/Classes/Modules/Addresses/Standards/Rules/CanDeleteAddress.php @@ -0,0 +1,43 @@ +addressValidation = $addressValidation; + } + + + /** + * @return bool + */ + protected function authorized(): bool + { + // TODO Set Authorization rules + return true; + + } + + /** + * @param AddressObject $object + * @return bool + * @throws \App\Classes\Exceptions\RequestValidationException + */ + protected function validators($object): bool + { + return $this->addressValidation->validate($object); + + } + + + /** + * @param AddressObject $object + * @return bool + */ + protected function criteria($object): bool + { + return true; + } + +} \ No newline at end of file diff --git a/app/Classes/Modules/Addresses/Standards/Validators/AddressValidation.php b/app/Classes/Modules/Addresses/Standards/Validators/AddressValidation.php new file mode 100644 index 00000000..6d4e873c --- /dev/null +++ b/app/Classes/Modules/Addresses/Standards/Validators/AddressValidation.php @@ -0,0 +1,54 @@ + $object->getCompanyId(), + 'street_one' => $object->getStreetOne(), + 'street_two' => $object->getStreetTwo(), + 'city' => $object->getCity(), + 'state' => $object->getState(), + 'post_code' => $object->getPostCode(), + 'country' => $object->getCountry(), + 'default' => $object->getDefault(), + 'billing' => $object->getBilling() + ]; + } + + /** + * @return array + */ + protected function rules(): array { + return [ + 'company_id' => 'required', + 'street_one' => 'required', + 'city' => 'required', + 'state' => 'required', + 'post_code' => 'required', + 'country' => 'required', + 'default' => 'required', + 'billing' => 'required' + ]; + } + + /** + * @return array + */ + protected function messages(): array { + return []; + } + +} \ No newline at end of file diff --git a/app/Classes/Notifications/AbstractEmail.php b/app/Classes/Notifications/AbstractEmail.php new file mode 100644 index 00000000..83efa01c --- /dev/null +++ b/app/Classes/Notifications/AbstractEmail.php @@ -0,0 +1,15 @@ +title = $title; + $this->message = $message; + $this->statusCode = $statusCode; + $this->data = $data; + + } + + /** + * @return JsonResponse + */ + public function handler(){ + return new JsonResponse(['title' => $this->getTitle(), 'message' => $this->getMessage(), 'payload' => $this->getData()], $this->getStatusCode()); + } + + /** + * @return string + */ + public function getTitle(): string + { + return $this->title; + } + + /** + * @return string + */ + public function getMessage(): string + { + return $this->message; + } + + /** + * @return int + */ + public function getStatusCode(): int + { + return $this->statusCode; + } + + /** + * @return array + */ + public function getData(): array + { + return $this->data; + } +} \ No newline at end of file diff --git a/app/Console/Kernel.php b/app/Console/Kernel.php new file mode 100644 index 00000000..541fd37e --- /dev/null +++ b/app/Console/Kernel.php @@ -0,0 +1,46 @@ +command('inspire')->hourly(); + } + + /** + * Register the commands for the application. + * + * @return void + */ + protected function commands() + { + $this->load(__DIR__.'/Commands'); + + require base_path('routes/console.php'); + } +} diff --git a/app/Exceptions/Handler.php b/app/Exceptions/Handler.php new file mode 100644 index 00000000..8ca61ac2 --- /dev/null +++ b/app/Exceptions/Handler.php @@ -0,0 +1,67 @@ +view('pages.errors.maintenance'); + } + + if ($exception instanceof AuthenticationException) { + return (new ApiResponseObject('Authentication', 'To keep your account secure we need to re-validate your account', HttpStatus::ACCESS_UNAUTHORISED))->handler(); + } + + return parent::render($request, $exception); + } +} diff --git a/app/Http/Controllers/Addresses/CreateAddressController.php b/app/Http/Controllers/Addresses/CreateAddressController.php new file mode 100644 index 00000000..812ff0fe --- /dev/null +++ b/app/Http/Controllers/Addresses/CreateAddressController.php @@ -0,0 +1,20 @@ +execute($request); + } + +} \ No newline at end of file diff --git a/app/Http/Controllers/Addresses/DeleteAddressController.php b/app/Http/Controllers/Addresses/DeleteAddressController.php new file mode 100644 index 00000000..dc0fc6b1 --- /dev/null +++ b/app/Http/Controllers/Addresses/DeleteAddressController.php @@ -0,0 +1,20 @@ +execute($request); + } + +} \ No newline at end of file diff --git a/app/Http/Controllers/Addresses/FetchAddressController.php b/app/Http/Controllers/Addresses/FetchAddressController.php new file mode 100644 index 00000000..3691100d --- /dev/null +++ b/app/Http/Controllers/Addresses/FetchAddressController.php @@ -0,0 +1,20 @@ +execute($request); + } + +} \ No newline at end of file diff --git a/app/Http/Controllers/Addresses/ListAddressesController.php b/app/Http/Controllers/Addresses/ListAddressesController.php new file mode 100644 index 00000000..75ae20a4 --- /dev/null +++ b/app/Http/Controllers/Addresses/ListAddressesController.php @@ -0,0 +1,20 @@ +execute($request); + } + +} \ No newline at end of file diff --git a/app/Http/Controllers/Addresses/UpdateAddressController.php b/app/Http/Controllers/Addresses/UpdateAddressController.php new file mode 100644 index 00000000..78ca4136 --- /dev/null +++ b/app/Http/Controllers/Addresses/UpdateAddressController.php @@ -0,0 +1,20 @@ +execute($request); + } + +} \ No newline at end of file diff --git a/app/Http/Controllers/Controller.php b/app/Http/Controllers/Controller.php new file mode 100644 index 00000000..a0a2a8a3 --- /dev/null +++ b/app/Http/Controllers/Controller.php @@ -0,0 +1,13 @@ + [ + EncryptCookies::class, + \Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse::class, + \Illuminate\Session\Middleware\StartSession::class, + // \Illuminate\Session\Middleware\AuthenticateSession::class, + \Illuminate\View\Middleware\ShareErrorsFromSession::class, + VerifyCsrfToken::class, + \Illuminate\Routing\Middleware\SubstituteBindings::class, + ], + + 'api' => [ + 'throttle:60,1', + \Illuminate\Routing\Middleware\SubstituteBindings::class, + ], + ]; + + /** + * The application's route middleware. + * + * These middleware may be assigned to groups or used individually. + * + * @var array + */ + protected $routeMiddleware = [ + 'auth' => Authenticate::class, + 'auth.basic' => \Illuminate\Auth\Middleware\AuthenticateWithBasicAuth::class, + 'bindings' => \Illuminate\Routing\Middleware\SubstituteBindings::class, + 'cache.headers' => \Illuminate\Http\Middleware\SetCacheHeaders::class, + 'can' => \Illuminate\Auth\Middleware\Authorize::class, + 'guest' => RedirectIfAuthenticated::class, + 'password.confirm' => \Illuminate\Auth\Middleware\RequirePassword::class, + 'signed' => \Illuminate\Routing\Middleware\ValidateSignature::class, + 'throttle' => \Illuminate\Routing\Middleware\ThrottleRequests::class, + 'verified' => \Illuminate\Auth\Middleware\EnsureEmailIsVerified::class, + 'valid.token' => ValidateToken::class + ]; +} diff --git a/app/Http/Middleware/Authenticate.php b/app/Http/Middleware/Authenticate.php new file mode 100644 index 00000000..704089a7 --- /dev/null +++ b/app/Http/Middleware/Authenticate.php @@ -0,0 +1,21 @@ +expectsJson()) { + return route('login'); + } + } +} diff --git a/app/Http/Middleware/CheckForMaintenanceMode.php b/app/Http/Middleware/CheckForMaintenanceMode.php new file mode 100644 index 00000000..35b9824b --- /dev/null +++ b/app/Http/Middleware/CheckForMaintenanceMode.php @@ -0,0 +1,17 @@ +check()) { + return redirect(RouteServiceProvider::HOME); + } + + return $next($request); + } +} diff --git a/app/Http/Middleware/TrimStrings.php b/app/Http/Middleware/TrimStrings.php new file mode 100644 index 00000000..5a50e7b5 --- /dev/null +++ b/app/Http/Middleware/TrimStrings.php @@ -0,0 +1,18 @@ +allSubdomainsOfApplicationUrl(), + ]; + } +} diff --git a/app/Http/Middleware/TrustProxies.php b/app/Http/Middleware/TrustProxies.php new file mode 100644 index 00000000..14befceb --- /dev/null +++ b/app/Http/Middleware/TrustProxies.php @@ -0,0 +1,23 @@ +authenticate(); + } catch (Exception $exception) { + return (new ApiResponseObject('Authentication', 'To keep your account secure we need to re-validate your account', HttpStatus::ACCESS_UNAUTHORISED))->handler(); + } + + return $next($request); + } +} diff --git a/app/Http/Middleware/VerifyCsrfToken.php b/app/Http/Middleware/VerifyCsrfToken.php new file mode 100644 index 00000000..0c13b854 --- /dev/null +++ b/app/Http/Middleware/VerifyCsrfToken.php @@ -0,0 +1,17 @@ + $this->id, + 'company_id' => $this->company_id, + 'street_one' => $this->street_one, + 'street_two' => $this->street_two, + 'city' => $this->city, + 'state' => $this->state, + 'post_code' => $this->post_code, + 'country' => $this->country, + 'default' => (int) $this->default, + 'billing' => (int) $this->billing + ]; + } +} diff --git a/app/Models/AbstractModel.php b/app/Models/AbstractModel.php new file mode 100644 index 00000000..7a7c9c06 --- /dev/null +++ b/app/Models/AbstractModel.php @@ -0,0 +1,13 @@ +hasOne(Company::class, 'company_id', 'id'); + } + +} diff --git a/app/Models/User.php b/app/Models/User.php new file mode 100644 index 00000000..1c239c56 --- /dev/null +++ b/app/Models/User.php @@ -0,0 +1,65 @@ +getKey(); + } + + /** + * Return a key value array, containing any custom claims to be added to the JWT. + * + * @return array + */ + public function getJWTCustomClaims() + { + return []; + } + + public function emailVerification(): HasMany { + return $this->hasMany(UserEmailVerification::class, 'email', 'email'); + } + + /** + * @return HasMany + */ + public function passwordReset(): HasMany { + return $this->hasMany(PasswordReset::class, 'user_id', 'id'); + } + + public function employers(): belongsToMany { + return $this->belongsToMany(CompanyModule::class, (new CompanyEmployee())->getTable(), 'user_id', 'module_id'); + } + + public function tweets(): hasMany { + return $this->hasMany(Order::class, 'user_id', 'id'); + } + +} diff --git a/app/Providers/AppServiceProvider.php b/app/Providers/AppServiceProvider.php new file mode 100644 index 00000000..8802ed7a --- /dev/null +++ b/app/Providers/AppServiceProvider.php @@ -0,0 +1,29 @@ + 'App\Policies\ModelPolicy', + ]; + + /** + * Register any authentication / authorization services. + * + * @return void + */ + public function boot() + { + $this->registerPolicies(); + + // + } +} diff --git a/app/Providers/BroadcastServiceProvider.php b/app/Providers/BroadcastServiceProvider.php new file mode 100644 index 00000000..395c518b --- /dev/null +++ b/app/Providers/BroadcastServiceProvider.php @@ -0,0 +1,21 @@ + [ + SendEmailVerificationNotification::class, + ], + ]; + + /** + * Register any events for your application. + * + * @return void + */ + public function boot() + { + parent::boot(); + + // + } +} diff --git a/app/Providers/RouteServiceProvider.php b/app/Providers/RouteServiceProvider.php new file mode 100644 index 00000000..540d17b4 --- /dev/null +++ b/app/Providers/RouteServiceProvider.php @@ -0,0 +1,80 @@ +mapApiRoutes(); + + $this->mapWebRoutes(); + + // + } + + /** + * Define the "web" routes for the application. + * + * These routes all receive session state, CSRF protection, etc. + * + * @return void + */ + protected function mapWebRoutes() + { + Route::middleware('web') + ->namespace($this->namespace) + ->group(base_path('routes/web.php')); + } + + /** + * Define the "api" routes for the application. + * + * These routes are typically stateless. + * + * @return void + */ + protected function mapApiRoutes() + { + Route::prefix('api') + ->middleware('api') + ->namespace($this->namespace) + ->group(base_path('routes/api.php')); + } +} diff --git a/artisan b/artisan new file mode 100644 index 00000000..5c23e2e2 --- /dev/null +++ b/artisan @@ -0,0 +1,53 @@ +#!/usr/bin/env php +make(Illuminate\Contracts\Console\Kernel::class); + +$status = $kernel->handle( + $input = new Symfony\Component\Console\Input\ArgvInput, + new Symfony\Component\Console\Output\ConsoleOutput +); + +/* +|-------------------------------------------------------------------------- +| Shutdown The Application +|-------------------------------------------------------------------------- +| +| Once Artisan has finished running, we will fire off the shutdown events +| so that any final work may be done by the application before we shut +| down the process. This is the last thing to happen to the request. +| +*/ + +$kernel->terminate($input, $status); + +exit($status); diff --git a/bootstrap/app.php b/bootstrap/app.php new file mode 100644 index 00000000..037e17df --- /dev/null +++ b/bootstrap/app.php @@ -0,0 +1,55 @@ +singleton( + Illuminate\Contracts\Http\Kernel::class, + App\Http\Kernel::class +); + +$app->singleton( + Illuminate\Contracts\Console\Kernel::class, + App\Console\Kernel::class +); + +$app->singleton( + Illuminate\Contracts\Debug\ExceptionHandler::class, + App\Exceptions\Handler::class +); + +/* +|-------------------------------------------------------------------------- +| Return The Application +|-------------------------------------------------------------------------- +| +| This script returns the application instance. The instance is given to +| the calling script so we can separate the building of the instances +| from the actual running of the application and sending responses. +| +*/ + +return $app; diff --git a/bootstrap/cache/.gitignore b/bootstrap/cache/.gitignore new file mode 100644 index 00000000..d6b7ef32 --- /dev/null +++ b/bootstrap/cache/.gitignore @@ -0,0 +1,2 @@ +* +!.gitignore diff --git a/composer.json b/composer.json new file mode 100644 index 00000000..f28aa35c --- /dev/null +++ b/composer.json @@ -0,0 +1,66 @@ +{ + "name": "laravel/laravel", + "type": "project", + "description": "The Laravel Framework.", + "keywords": [ + "framework", + "laravel" + ], + "license": "MIT", + "require": { + "php": "^7.2.5", + "ext-json": "^1.6", + "fideloper/proxy": "^4.2", + "fruitcake/laravel-cors": "^1.0", + "guzzlehttp/guzzle": "^6.3", + "laravel/framework": "^7.0", + "laravel/tinker": "^2.0", + "spatie/laravel-activitylog": "^3.14", + "tymon/jwt-auth": "^1.0" + }, + "require-dev": { + "facade/ignition": "^2.0", + "fzaninotto/faker": "^1.9.1", + "mockery/mockery": "^1.3.1", + "nunomaduro/collision": "^4.1", + "phpunit/phpunit": "^8.5" + }, + "config": { + "optimize-autoloader": true, + "preferred-install": "dist", + "sort-packages": true + }, + "extra": { + "laravel": { + "dont-discover": [] + } + }, + "autoload": { + "psr-4": { + "App\\": "app/" + }, + "classmap": [ + "database/seeds", + "database/factories" + ] + }, + "autoload-dev": { + "psr-4": { + "Tests\\": "tests/" + } + }, + "minimum-stability": "dev", + "prefer-stable": true, + "scripts": { + "post-autoload-dump": [ + "Illuminate\\Foundation\\ComposerScripts::postAutoloadDump", + "@php artisan package:discover --ansi" + ], + "post-root-package-install": [ + "@php -r \"file_exists('.env') || copy('.env.example', '.env');\"" + ], + "post-create-project-cmd": [ + "@php artisan key:generate --ansi" + ] + } +} diff --git a/config/activitylog.php b/config/activitylog.php new file mode 100644 index 00000000..a6558ecb --- /dev/null +++ b/config/activitylog.php @@ -0,0 +1,52 @@ + env('ACTIVITY_LOGGER_ENABLED', true), + + /* + * When the clean-command is executed, all recording activities older than + * the number of days specified here will be deleted. + */ + 'delete_records_older_than_days' => 365, + + /* + * If no log name is passed to the activity() helper + * we use this default log name. + */ + 'default_log_name' => 'default', + + /* + * You can specify an auth driver here that gets user models. + * If this is null we'll use the default Laravel auth driver. + */ + 'default_auth_driver' => null, + + /* + * If set to true, the subject returns soft deleted models. + */ + 'subject_returns_soft_deleted_models' => false, + + /* + * This model will be used to log activity. + * It should be implements the Spatie\Activitylog\Contracts\Activity interface + * and extend Illuminate\Database\Eloquent\Model. + */ + 'activity_model' => \Spatie\Activitylog\Models\Activity::class, + + /* + * This is the name of the table that will be created by the migration and + * used by the Activity model shipped with this package. + */ + 'table_name' => 'activity_log', + + /* + * This is the database connection that will be used by the migration and + * the Activity model shipped with this package. In case it's not set + * Laravel database.default will be used instead. + */ + 'database_connection' => env('ACTIVITY_LOGGER_DB_CONNECTION'), +]; diff --git a/config/app.php b/config/app.php new file mode 100644 index 00000000..8409e00e --- /dev/null +++ b/config/app.php @@ -0,0 +1,232 @@ + env('APP_NAME', 'Laravel'), + + /* + |-------------------------------------------------------------------------- + | Application Environment + |-------------------------------------------------------------------------- + | + | This value determines the "environment" your application is currently + | running in. This may determine how you prefer to configure various + | services the application utilizes. Set this in your ".env" file. + | + */ + + 'env' => env('APP_ENV', 'production'), + + /* + |-------------------------------------------------------------------------- + | Application Debug Mode + |-------------------------------------------------------------------------- + | + | When your application is in debug mode, detailed error messages with + | stack traces will be shown on every error that occurs within your + | application. If disabled, a simple generic error page is shown. + | + */ + + 'debug' => (bool) env('APP_DEBUG', false), + + /* + |-------------------------------------------------------------------------- + | Application URL + |-------------------------------------------------------------------------- + | + | This URL is used by the console to properly generate URLs when using + | the Artisan command line tool. You should set this to the root of + | your application so that it is used when running Artisan tasks. + | + */ + + 'url' => env('APP_URL', 'http://localhost'), + + 'asset_url' => env('ASSET_URL', null), + + /* + |-------------------------------------------------------------------------- + | Application Timezone + |-------------------------------------------------------------------------- + | + | Here you may specify the default timezone for your application, which + | will be used by the PHP date and date-time functions. We have gone + | ahead and set this to a sensible default for you out of the box. + | + */ + + 'timezone' => 'UTC', + + /* + |-------------------------------------------------------------------------- + | Application Locale Configuration + |-------------------------------------------------------------------------- + | + | The application locale determines the default locale that will be used + | by the translation service provider. You are free to set this value + | to any of the locales which will be supported by the application. + | + */ + + 'locale' => 'en', + + /* + |-------------------------------------------------------------------------- + | Application Fallback Locale + |-------------------------------------------------------------------------- + | + | The fallback locale determines the locale to use when the current one + | is not available. You may change the value to correspond to any of + | the language folders that are provided through your application. + | + */ + + 'fallback_locale' => 'en', + + /* + |-------------------------------------------------------------------------- + | Faker Locale + |-------------------------------------------------------------------------- + | + | This locale will be used by the Faker PHP library when generating fake + | data for your database seeds. For example, this will be used to get + | localized telephone numbers, street address information and more. + | + */ + + 'faker_locale' => 'en_US', + + /* + |-------------------------------------------------------------------------- + | Encryption Key + |-------------------------------------------------------------------------- + | + | This key is used by the Illuminate encrypter service and should be set + | to a random, 32 character string, otherwise these encrypted strings + | will not be safe. Please do this before deploying an application! + | + */ + + 'key' => env('APP_KEY'), + + 'cipher' => 'AES-256-CBC', + + /* + |-------------------------------------------------------------------------- + | Autoloaded Service Providers + |-------------------------------------------------------------------------- + | + | The service providers listed here will be automatically loaded on the + | request to your application. Feel free to add your own services to + | this array to grant expanded functionality to your applications. + | + */ + + 'providers' => [ + + /* + * Laravel Framework Service Providers... + */ + Illuminate\Auth\AuthServiceProvider::class, + Illuminate\Broadcasting\BroadcastServiceProvider::class, + Illuminate\Bus\BusServiceProvider::class, + Illuminate\Cache\CacheServiceProvider::class, + Illuminate\Foundation\Providers\ConsoleSupportServiceProvider::class, + Illuminate\Cookie\CookieServiceProvider::class, + Illuminate\Database\DatabaseServiceProvider::class, + Illuminate\Encryption\EncryptionServiceProvider::class, + Illuminate\Filesystem\FilesystemServiceProvider::class, + Illuminate\Foundation\Providers\FoundationServiceProvider::class, + Illuminate\Hashing\HashServiceProvider::class, + Illuminate\Mail\MailServiceProvider::class, + Illuminate\Notifications\NotificationServiceProvider::class, + Illuminate\Pagination\PaginationServiceProvider::class, + Illuminate\Pipeline\PipelineServiceProvider::class, + Illuminate\Queue\QueueServiceProvider::class, + Illuminate\Redis\RedisServiceProvider::class, + Illuminate\Auth\Passwords\PasswordResetServiceProvider::class, + Illuminate\Session\SessionServiceProvider::class, + Illuminate\Translation\TranslationServiceProvider::class, + Illuminate\Validation\ValidationServiceProvider::class, + Illuminate\View\ViewServiceProvider::class, + + /* + * Package Service Providers... + */ + + /* + * Application Service Providers... + */ + App\Providers\AppServiceProvider::class, + App\Providers\AuthServiceProvider::class, + // App\Providers\BroadcastServiceProvider::class, + App\Providers\EventServiceProvider::class, + App\Providers\RouteServiceProvider::class, + + ], + + /* + |-------------------------------------------------------------------------- + | Class Aliases + |-------------------------------------------------------------------------- + | + | This array of class aliases will be registered when this application + | is started. However, feel free to register as many as you wish as + | the aliases are "lazy" loaded so they don't hinder performance. + | + */ + + 'aliases' => [ + + 'App' => Illuminate\Support\Facades\App::class, + 'Arr' => Illuminate\Support\Arr::class, + 'Artisan' => Illuminate\Support\Facades\Artisan::class, + 'Auth' => Illuminate\Support\Facades\Auth::class, + 'Blade' => Illuminate\Support\Facades\Blade::class, + 'Broadcast' => Illuminate\Support\Facades\Broadcast::class, + 'Bus' => Illuminate\Support\Facades\Bus::class, + 'Cache' => Illuminate\Support\Facades\Cache::class, + 'Config' => Illuminate\Support\Facades\Config::class, + 'Cookie' => Illuminate\Support\Facades\Cookie::class, + 'Crypt' => Illuminate\Support\Facades\Crypt::class, + 'DB' => Illuminate\Support\Facades\DB::class, + 'Eloquent' => Illuminate\Database\Eloquent\Model::class, + 'Event' => Illuminate\Support\Facades\Event::class, + 'File' => Illuminate\Support\Facades\File::class, + 'Gate' => Illuminate\Support\Facades\Gate::class, + 'Hash' => Illuminate\Support\Facades\Hash::class, + 'Http' => Illuminate\Support\Facades\Http::class, + 'Lang' => Illuminate\Support\Facades\Lang::class, + 'Log' => Illuminate\Support\Facades\Log::class, + 'Mail' => Illuminate\Support\Facades\Mail::class, + 'Notification' => Illuminate\Support\Facades\Notification::class, + 'Password' => Illuminate\Support\Facades\Password::class, + 'Queue' => Illuminate\Support\Facades\Queue::class, + 'Redirect' => Illuminate\Support\Facades\Redirect::class, + 'Redis' => Illuminate\Support\Facades\Redis::class, + 'Request' => Illuminate\Support\Facades\Request::class, + 'Response' => Illuminate\Support\Facades\Response::class, + 'Route' => Illuminate\Support\Facades\Route::class, + 'Schema' => Illuminate\Support\Facades\Schema::class, + 'Session' => Illuminate\Support\Facades\Session::class, + 'Storage' => Illuminate\Support\Facades\Storage::class, + 'Str' => Illuminate\Support\Str::class, + 'URL' => Illuminate\Support\Facades\URL::class, + 'Validator' => Illuminate\Support\Facades\Validator::class, + 'View' => Illuminate\Support\Facades\View::class, + + ], + +]; diff --git a/config/auth.php b/config/auth.php new file mode 100644 index 00000000..9a2c2632 --- /dev/null +++ b/config/auth.php @@ -0,0 +1,117 @@ + [ + 'guard' => 'api', + 'passwords' => 'users', + ], + + /* + |-------------------------------------------------------------------------- + | Authentication Guards + |-------------------------------------------------------------------------- + | + | Next, you may define every authentication guard for your application. + | Of course, a great default configuration has been defined for you + | here which uses session storage and the Eloquent user provider. + | + | All authentication drivers have a user provider. This defines how the + | users are actually retrieved out of your database or other storage + | mechanisms used by this application to persist your user's data. + | + | Supported: "session", "token" + | + */ + + 'guards' => [ + 'web' => [ + 'driver' => 'session', + 'provider' => 'users', + ], + + 'api' => [ + 'driver' => 'jwt', + 'provider' => 'users', + 'hash' => false, + ], + ], + + /* + |-------------------------------------------------------------------------- + | User Providers + |-------------------------------------------------------------------------- + | + | All authentication drivers have a user provider. This defines how the + | users are actually retrieved out of your database or other storage + | mechanisms used by this application to persist your user's data. + | + | If you have multiple user tables or models you may configure multiple + | sources which represent each model / table. These sources may then + | be assigned to any extra authentication guards you have defined. + | + | Supported: "database", "eloquent" + | + */ + + 'providers' => [ + 'users' => [ + 'driver' => 'eloquent', + 'model' => App\Models\User::class, + ], + + // 'users' => [ + // 'driver' => 'database', + // 'table' => 'users', + // ], + ], + + /* + |-------------------------------------------------------------------------- + | Resetting Passwords + |-------------------------------------------------------------------------- + | + | You may specify multiple password reset configurations if you have more + | than one user table or model in the application and you want to have + | separate password reset settings based on the specific user types. + | + | The expire time is the number of minutes that the reset token should be + | considered valid. This security feature keeps tokens short-lived so + | they have less time to be guessed. You may change this as needed. + | + */ + + 'passwords' => [ + 'users' => [ + 'provider' => 'users', + 'table' => 'password_resets', + 'expire' => 1440, + 'throttle' => 60, + ], + ], + + /* + |-------------------------------------------------------------------------- + | Password Confirmation Timeout + |-------------------------------------------------------------------------- + | + | Here you may define the amount of seconds before a password confirmation + | times out and the user is prompted to re-enter their password via the + | confirmation screen. By default, the timeout lasts for three hours. + | + */ + + 'password_timeout' => 10800, + +]; diff --git a/config/broadcasting.php b/config/broadcasting.php new file mode 100644 index 00000000..3bba1103 --- /dev/null +++ b/config/broadcasting.php @@ -0,0 +1,59 @@ + env('BROADCAST_DRIVER', 'null'), + + /* + |-------------------------------------------------------------------------- + | Broadcast Connections + |-------------------------------------------------------------------------- + | + | Here you may define all of the broadcast connections that will be used + | to broadcast events to other systems or over websockets. Samples of + | each available type of connection are provided inside this array. + | + */ + + 'connections' => [ + + 'pusher' => [ + 'driver' => 'pusher', + 'key' => env('PUSHER_APP_KEY'), + 'secret' => env('PUSHER_APP_SECRET'), + 'app_id' => env('PUSHER_APP_ID'), + 'options' => [ + 'cluster' => env('PUSHER_APP_CLUSTER'), + 'useTLS' => true, + ], + ], + + 'redis' => [ + 'driver' => 'redis', + 'connection' => 'default', + ], + + 'log' => [ + 'driver' => 'log', + ], + + 'null' => [ + 'driver' => 'null', + ], + + ], + +]; diff --git a/config/cache.php b/config/cache.php new file mode 100644 index 00000000..4f41fdf9 --- /dev/null +++ b/config/cache.php @@ -0,0 +1,104 @@ + env('CACHE_DRIVER', 'file'), + + /* + |-------------------------------------------------------------------------- + | Cache Stores + |-------------------------------------------------------------------------- + | + | Here you may define all of the cache "stores" for your application as + | well as their drivers. You may even define multiple stores for the + | same cache driver to group types of items stored in your caches. + | + */ + + 'stores' => [ + + 'apc' => [ + 'driver' => 'apc', + ], + + 'array' => [ + 'driver' => 'array', + 'serialize' => false, + ], + + 'database' => [ + 'driver' => 'database', + 'table' => 'cache', + 'connection' => null, + ], + + 'file' => [ + 'driver' => 'file', + 'path' => storage_path('framework/cache/data'), + ], + + 'memcached' => [ + 'driver' => 'memcached', + 'persistent_id' => env('MEMCACHED_PERSISTENT_ID'), + 'sasl' => [ + env('MEMCACHED_USERNAME'), + env('MEMCACHED_PASSWORD'), + ], + 'options' => [ + // Memcached::OPT_CONNECT_TIMEOUT => 2000, + ], + 'servers' => [ + [ + 'host' => env('MEMCACHED_HOST', '127.0.0.1'), + 'port' => env('MEMCACHED_PORT', 11211), + 'weight' => 100, + ], + ], + ], + + 'redis' => [ + 'driver' => 'redis', + 'connection' => 'cache', + ], + + 'dynamodb' => [ + 'driver' => 'dynamodb', + 'key' => env('AWS_ACCESS_KEY_ID'), + 'secret' => env('AWS_SECRET_ACCESS_KEY'), + 'region' => env('AWS_DEFAULT_REGION', 'us-east-1'), + 'table' => env('DYNAMODB_CACHE_TABLE', 'cache'), + 'endpoint' => env('DYNAMODB_ENDPOINT'), + ], + + ], + + /* + |-------------------------------------------------------------------------- + | Cache Key Prefix + |-------------------------------------------------------------------------- + | + | When utilizing a RAM based store such as APC or Memcached, there might + | be other applications utilizing the same cache. So, we'll specify a + | value to get prefixed to all our keys so we can avoid collisions. + | + */ + + 'prefix' => env('CACHE_PREFIX', Str::slug(env('APP_NAME', 'laravel'), '_').'_cache'), + +]; diff --git a/config/cors.php b/config/cors.php new file mode 100644 index 00000000..558369dc --- /dev/null +++ b/config/cors.php @@ -0,0 +1,34 @@ + ['api/*'], + + 'allowed_methods' => ['*'], + + 'allowed_origins' => ['*'], + + 'allowed_origins_patterns' => [], + + 'allowed_headers' => ['*'], + + 'exposed_headers' => [], + + 'max_age' => 0, + + 'supports_credentials' => false, + +]; diff --git a/config/database.php b/config/database.php new file mode 100644 index 00000000..b42d9b30 --- /dev/null +++ b/config/database.php @@ -0,0 +1,147 @@ + env('DB_CONNECTION', 'mysql'), + + /* + |-------------------------------------------------------------------------- + | Database Connections + |-------------------------------------------------------------------------- + | + | Here are each of the database connections setup for your application. + | Of course, examples of configuring each database platform that is + | supported by Laravel is shown below to make development simple. + | + | + | All database work in Laravel is done through the PHP PDO facilities + | so make sure you have the driver for your particular database of + | choice installed on your machine before you begin development. + | + */ + + 'connections' => [ + + 'sqlite' => [ + 'driver' => 'sqlite', + 'url' => env('DATABASE_URL'), + 'database' => env('DB_DATABASE', database_path('database.sqlite')), + 'prefix' => '', + 'foreign_key_constraints' => env('DB_FOREIGN_KEYS', true), + ], + + 'mysql' => [ + 'driver' => 'mysql', + 'url' => env('DATABASE_URL'), + 'host' => env('DB_HOST', '127.0.0.1'), + 'port' => env('DB_PORT', '3306'), + 'database' => env('DB_DATABASE', 'forge'), + 'username' => env('DB_USERNAME', 'forge'), + 'password' => env('DB_PASSWORD', ''), + 'unix_socket' => env('DB_SOCKET', ''), + 'charset' => 'utf8mb4', + 'collation' => 'utf8mb4_unicode_ci', + 'prefix' => '', + 'prefix_indexes' => true, + 'strict' => true, + 'engine' => null, + 'options' => extension_loaded('pdo_mysql') ? array_filter([ + PDO::MYSQL_ATTR_SSL_CA => env('MYSQL_ATTR_SSL_CA'), + ]) : [], + ], + + 'pgsql' => [ + 'driver' => 'pgsql', + 'url' => env('DATABASE_URL'), + 'host' => env('DB_HOST', '127.0.0.1'), + 'port' => env('DB_PORT', '5432'), + 'database' => env('DB_DATABASE', 'forge'), + 'username' => env('DB_USERNAME', 'forge'), + 'password' => env('DB_PASSWORD', ''), + 'charset' => 'utf8', + 'prefix' => '', + 'prefix_indexes' => true, + 'schema' => 'public', + 'sslmode' => 'prefer', + ], + + 'sqlsrv' => [ + 'driver' => 'sqlsrv', + 'url' => env('DATABASE_URL'), + 'host' => env('DB_HOST', 'localhost'), + 'port' => env('DB_PORT', '1433'), + 'database' => env('DB_DATABASE', 'forge'), + 'username' => env('DB_USERNAME', 'forge'), + 'password' => env('DB_PASSWORD', ''), + 'charset' => 'utf8', + 'prefix' => '', + 'prefix_indexes' => true, + ], + + ], + + /* + |-------------------------------------------------------------------------- + | Migration Repository Table + |-------------------------------------------------------------------------- + | + | This table keeps track of all the migrations that have already run for + | your application. Using this information, we can determine which of + | the migrations on disk haven't actually been run in the database. + | + */ + + 'migrations' => 'migrations', + + /* + |-------------------------------------------------------------------------- + | Redis Databases + |-------------------------------------------------------------------------- + | + | Redis is an open source, fast, and advanced key-value store that also + | provides a richer body of commands than a typical key-value system + | such as APC or Memcached. Laravel makes it easy to dig right in. + | + */ + + 'redis' => [ + + 'client' => env('REDIS_CLIENT', 'phpredis'), + + 'options' => [ + 'cluster' => env('REDIS_CLUSTER', 'redis'), + 'prefix' => env('REDIS_PREFIX', Str::slug(env('APP_NAME', 'laravel'), '_').'_database_'), + ], + + 'default' => [ + 'url' => env('REDIS_URL'), + 'host' => env('REDIS_HOST', '127.0.0.1'), + 'password' => env('REDIS_PASSWORD', null), + 'port' => env('REDIS_PORT', '6379'), + 'database' => env('REDIS_DB', '0'), + ], + + 'cache' => [ + 'url' => env('REDIS_URL'), + 'host' => env('REDIS_HOST', '127.0.0.1'), + 'password' => env('REDIS_PASSWORD', null), + 'port' => env('REDIS_PORT', '6379'), + 'database' => env('REDIS_CACHE_DB', '1'), + ], + + ], + +]; diff --git a/config/filesystems.php b/config/filesystems.php new file mode 100644 index 00000000..94c81126 --- /dev/null +++ b/config/filesystems.php @@ -0,0 +1,85 @@ + env('FILESYSTEM_DRIVER', 'local'), + + /* + |-------------------------------------------------------------------------- + | Default Cloud Filesystem Disk + |-------------------------------------------------------------------------- + | + | Many applications store files both locally and in the cloud. For this + | reason, you may specify a default "cloud" driver here. This driver + | will be bound as the Cloud disk implementation in the container. + | + */ + + 'cloud' => env('FILESYSTEM_CLOUD', 's3'), + + /* + |-------------------------------------------------------------------------- + | Filesystem Disks + |-------------------------------------------------------------------------- + | + | Here you may configure as many filesystem "disks" as you wish, and you + | may even configure multiple disks of the same driver. Defaults have + | been setup for each driver as an example of the required options. + | + | Supported Drivers: "local", "ftp", "sftp", "s3" + | + */ + + 'disks' => [ + + 'local' => [ + 'driver' => 'local', + 'root' => storage_path('app'), + ], + + 'public' => [ + 'driver' => 'local', + 'root' => storage_path('app/public'), + 'url' => env('APP_URL').'/storage', + 'visibility' => 'public', + ], + + 's3' => [ + 'driver' => 's3', + 'key' => env('AWS_ACCESS_KEY_ID'), + 'secret' => env('AWS_SECRET_ACCESS_KEY'), + 'region' => env('AWS_DEFAULT_REGION'), + 'bucket' => env('AWS_BUCKET'), + 'url' => env('AWS_URL'), + 'endpoint' => env('AWS_ENDPOINT'), + ], + + ], + + /* + |-------------------------------------------------------------------------- + | Symbolic Links + |-------------------------------------------------------------------------- + | + | Here you may configure the symbolic links that will be created when the + | `storage:link` Artisan command is executed. The array keys should be + | the locations of the links and the values should be their targets. + | + */ + + 'links' => [ + public_path('storage') => storage_path('app/public'), + ], + +]; diff --git a/config/hashing.php b/config/hashing.php new file mode 100644 index 00000000..84257708 --- /dev/null +++ b/config/hashing.php @@ -0,0 +1,52 @@ + 'bcrypt', + + /* + |-------------------------------------------------------------------------- + | Bcrypt Options + |-------------------------------------------------------------------------- + | + | Here you may specify the configuration options that should be used when + | passwords are hashed using the Bcrypt algorithm. This will allow you + | to control the amount of time it takes to hash the given password. + | + */ + + 'bcrypt' => [ + 'rounds' => env('BCRYPT_ROUNDS', 10), + ], + + /* + |-------------------------------------------------------------------------- + | Argon Options + |-------------------------------------------------------------------------- + | + | Here you may specify the configuration options that should be used when + | passwords are hashed using the Argon algorithm. These will allow you + | to control the amount of time it takes to hash the given password. + | + */ + + 'argon' => [ + 'memory' => 1024, + 'threads' => 2, + 'time' => 2, + ], + +]; diff --git a/config/logging.php b/config/logging.php new file mode 100644 index 00000000..088c204e --- /dev/null +++ b/config/logging.php @@ -0,0 +1,104 @@ + env('LOG_CHANNEL', 'stack'), + + /* + |-------------------------------------------------------------------------- + | Log Channels + |-------------------------------------------------------------------------- + | + | Here you may configure the log channels for your application. Out of + | the box, Laravel uses the Monolog PHP logging library. This gives + | you a variety of powerful log handlers / formatters to utilize. + | + | Available Drivers: "single", "daily", "slack", "syslog", + | "errorlog", "monolog", + | "custom", "stack" + | + */ + + 'channels' => [ + 'stack' => [ + 'driver' => 'stack', + 'channels' => ['single'], + 'ignore_exceptions' => false, + ], + + 'single' => [ + 'driver' => 'single', + 'path' => storage_path('logs/laravel.log'), + 'level' => 'debug', + ], + + 'daily' => [ + 'driver' => 'daily', + 'path' => storage_path('logs/laravel.log'), + 'level' => 'debug', + 'days' => 14, + ], + + 'slack' => [ + 'driver' => 'slack', + 'url' => env('LOG_SLACK_WEBHOOK_URL'), + 'username' => 'Laravel Log', + 'emoji' => ':boom:', + 'level' => 'critical', + ], + + 'papertrail' => [ + 'driver' => 'monolog', + 'level' => 'debug', + 'handler' => SyslogUdpHandler::class, + 'handler_with' => [ + 'host' => env('PAPERTRAIL_URL'), + 'port' => env('PAPERTRAIL_PORT'), + ], + ], + + 'stderr' => [ + 'driver' => 'monolog', + 'handler' => StreamHandler::class, + 'formatter' => env('LOG_STDERR_FORMATTER'), + 'with' => [ + 'stream' => 'php://stderr', + ], + ], + + 'syslog' => [ + 'driver' => 'syslog', + 'level' => 'debug', + ], + + 'errorlog' => [ + 'driver' => 'errorlog', + 'level' => 'debug', + ], + + 'null' => [ + 'driver' => 'monolog', + 'handler' => NullHandler::class, + ], + + 'emergency' => [ + 'path' => storage_path('logs/laravel.log'), + ], + ], + +]; diff --git a/config/mail.php b/config/mail.php new file mode 100644 index 00000000..54299aab --- /dev/null +++ b/config/mail.php @@ -0,0 +1,110 @@ + env('MAIL_MAILER', 'smtp'), + + /* + |-------------------------------------------------------------------------- + | Mailer Configurations + |-------------------------------------------------------------------------- + | + | Here you may configure all of the mailers used by your application plus + | their respective settings. Several examples have been configured for + | you and you are free to add your own as your application requires. + | + | Laravel supports a variety of mail "transport" drivers to be used while + | sending an e-mail. You will specify which one you are using for your + | mailers below. You are free to add additional mailers as required. + | + | Supported: "smtp", "sendmail", "mailgun", "ses", + | "postmark", "log", "array" + | + */ + + 'mailers' => [ + 'smtp' => [ + 'transport' => 'smtp', + 'host' => env('MAIL_HOST', 'smtp.mailgun.org'), + 'port' => env('MAIL_PORT', 587), + 'encryption' => env('MAIL_ENCRYPTION', 'tls'), + 'username' => env('MAIL_USERNAME'), + 'password' => env('MAIL_PASSWORD'), + 'timeout' => null, + 'auth_mode' => null, + ], + + 'ses' => [ + 'transport' => 'ses', + ], + + 'mailgun' => [ + 'transport' => 'mailgun', + ], + + 'postmark' => [ + 'transport' => 'postmark', + ], + + 'sendmail' => [ + 'transport' => 'sendmail', + 'path' => '/usr/sbin/sendmail -bs', + ], + + 'log' => [ + 'transport' => 'log', + 'channel' => env('MAIL_LOG_CHANNEL'), + ], + + 'array' => [ + 'transport' => 'array', + ], + ], + + /* + |-------------------------------------------------------------------------- + | Global "From" Address + |-------------------------------------------------------------------------- + | + | You may wish for all e-mails sent by your application to be sent from + | the same address. Here, you may specify a name and address that is + | used globally for all e-mails that are sent by your application. + | + */ + + 'from' => [ + 'address' => env('MAIL_FROM_ADDRESS', 'hello@example.com'), + 'name' => env('MAIL_FROM_NAME', 'Example'), + ], + + /* + |-------------------------------------------------------------------------- + | Markdown Mail Settings + |-------------------------------------------------------------------------- + | + | If you are using Markdown based email rendering, you may configure your + | theme and component paths here, allowing you to customize the design + | of the emails. Or, you may simply stick with the Laravel defaults! + | + */ + + 'markdown' => [ + 'theme' => 'default', + + 'paths' => [ + resource_path('views/vendor/mail'), + ], + ], + +]; diff --git a/config/queue.php b/config/queue.php new file mode 100644 index 00000000..00b76d65 --- /dev/null +++ b/config/queue.php @@ -0,0 +1,89 @@ + env('QUEUE_CONNECTION', 'sync'), + + /* + |-------------------------------------------------------------------------- + | Queue Connections + |-------------------------------------------------------------------------- + | + | Here you may configure the connection information for each server that + | is used by your application. A default configuration has been added + | for each back-end shipped with Laravel. You are free to add more. + | + | Drivers: "sync", "database", "beanstalkd", "sqs", "redis", "null" + | + */ + + 'connections' => [ + + 'sync' => [ + 'driver' => 'sync', + ], + + 'database' => [ + 'driver' => 'database', + 'table' => 'jobs', + 'queue' => 'default', + 'retry_after' => 90, + ], + + 'beanstalkd' => [ + 'driver' => 'beanstalkd', + 'host' => 'localhost', + 'queue' => 'default', + 'retry_after' => 90, + 'block_for' => 0, + ], + + 'sqs' => [ + 'driver' => 'sqs', + 'key' => env('AWS_ACCESS_KEY_ID'), + 'secret' => env('AWS_SECRET_ACCESS_KEY'), + 'prefix' => env('SQS_PREFIX', 'https://sqs.us-east-1.amazonaws.com/your-account-id'), + 'queue' => env('SQS_QUEUE', 'your-queue-name'), + 'suffix' => env('SQS_SUFFIX'), + 'region' => env('AWS_DEFAULT_REGION', 'us-east-1'), + ], + + 'redis' => [ + 'driver' => 'redis', + 'connection' => 'default', + 'queue' => env('REDIS_QUEUE', 'default'), + 'retry_after' => 90, + 'block_for' => null, + ], + + ], + + /* + |-------------------------------------------------------------------------- + | Failed Queue Jobs + |-------------------------------------------------------------------------- + | + | These options configure the behavior of failed queue job logging so you + | can control which database and table are used to store the jobs that + | have failed. You may change them to any database / table you wish. + | + */ + + 'failed' => [ + 'driver' => env('QUEUE_FAILED_DRIVER', 'database'), + 'database' => env('DB_CONNECTION', 'mysql'), + 'table' => 'failed_jobs', + ], + +]; diff --git a/config/services.php b/config/services.php new file mode 100644 index 00000000..2a1d616c --- /dev/null +++ b/config/services.php @@ -0,0 +1,33 @@ + [ + 'domain' => env('MAILGUN_DOMAIN'), + 'secret' => env('MAILGUN_SECRET'), + 'endpoint' => env('MAILGUN_ENDPOINT', 'api.mailgun.net'), + ], + + 'postmark' => [ + 'token' => env('POSTMARK_TOKEN'), + ], + + 'ses' => [ + 'key' => env('AWS_ACCESS_KEY_ID'), + 'secret' => env('AWS_SECRET_ACCESS_KEY'), + 'region' => env('AWS_DEFAULT_REGION', 'us-east-1'), + ], + +]; diff --git a/config/session.php b/config/session.php new file mode 100644 index 00000000..4e0f66cd --- /dev/null +++ b/config/session.php @@ -0,0 +1,201 @@ + env('SESSION_DRIVER', 'file'), + + /* + |-------------------------------------------------------------------------- + | Session Lifetime + |-------------------------------------------------------------------------- + | + | Here you may specify the number of minutes that you wish the session + | to be allowed to remain idle before it expires. If you want them + | to immediately expire on the browser closing, set that option. + | + */ + + 'lifetime' => env('SESSION_LIFETIME', 120), + + 'expire_on_close' => false, + + /* + |-------------------------------------------------------------------------- + | Session Encryption + |-------------------------------------------------------------------------- + | + | This option allows you to easily specify that all of your session data + | should be encrypted before it is stored. All encryption will be run + | automatically by Laravel and you can use the Session like normal. + | + */ + + 'encrypt' => false, + + /* + |-------------------------------------------------------------------------- + | Session File Location + |-------------------------------------------------------------------------- + | + | When using the native session driver, we need a location where session + | files may be stored. A default has been set for you but a different + | location may be specified. This is only needed for file sessions. + | + */ + + 'files' => storage_path('framework/sessions'), + + /* + |-------------------------------------------------------------------------- + | Session Database Connection + |-------------------------------------------------------------------------- + | + | When using the "database" or "redis" session drivers, you may specify a + | connection that should be used to manage these sessions. This should + | correspond to a connection in your database configuration options. + | + */ + + 'connection' => env('SESSION_CONNECTION', null), + + /* + |-------------------------------------------------------------------------- + | Session Database Table + |-------------------------------------------------------------------------- + | + | When using the "database" session driver, you may specify the table we + | should use to manage the sessions. Of course, a sensible default is + | provided for you; however, you are free to change this as needed. + | + */ + + 'table' => 'sessions', + + /* + |-------------------------------------------------------------------------- + | Session Cache Store + |-------------------------------------------------------------------------- + | + | While using one of the framework's cache driven session backends you may + | list a cache store that should be used for these sessions. This value + | must match with one of the application's configured cache "stores". + | + | Affects: "apc", "dynamodb", "memcached", "redis" + | + */ + + 'store' => env('SESSION_STORE', null), + + /* + |-------------------------------------------------------------------------- + | Session Sweeping Lottery + |-------------------------------------------------------------------------- + | + | Some session drivers must manually sweep their storage location to get + | rid of old sessions from storage. Here are the chances that it will + | happen on a given request. By default, the odds are 2 out of 100. + | + */ + + 'lottery' => [2, 100], + + /* + |-------------------------------------------------------------------------- + | Session Cookie Name + |-------------------------------------------------------------------------- + | + | Here you may change the name of the cookie used to identify a session + | instance by ID. The name specified here will get used every time a + | new session cookie is created by the framework for every driver. + | + */ + + 'cookie' => env( + 'SESSION_COOKIE', + Str::slug(env('APP_NAME', 'laravel'), '_').'_session' + ), + + /* + |-------------------------------------------------------------------------- + | Session Cookie Path + |-------------------------------------------------------------------------- + | + | The session cookie path determines the path for which the cookie will + | be regarded as available. Typically, this will be the root path of + | your application but you are free to change this when necessary. + | + */ + + 'path' => '/', + + /* + |-------------------------------------------------------------------------- + | Session Cookie Domain + |-------------------------------------------------------------------------- + | + | Here you may change the domain of the cookie used to identify a session + | in your application. This will determine which domains the cookie is + | available to in your application. A sensible default has been set. + | + */ + + 'domain' => env('SESSION_DOMAIN', null), + + /* + |-------------------------------------------------------------------------- + | HTTPS Only Cookies + |-------------------------------------------------------------------------- + | + | By setting this option to true, session cookies will only be sent back + | to the server if the browser has a HTTPS connection. This will keep + | the cookie from being sent to you if it can not be done securely. + | + */ + + 'secure' => env('SESSION_SECURE_COOKIE'), + + /* + |-------------------------------------------------------------------------- + | HTTP Access Only + |-------------------------------------------------------------------------- + | + | Setting this value to true will prevent JavaScript from accessing the + | value of the cookie and the cookie will only be accessible through + | the HTTP protocol. You are free to modify this option if needed. + | + */ + + 'http_only' => true, + + /* + |-------------------------------------------------------------------------- + | Same-Site Cookies + |-------------------------------------------------------------------------- + | + | This option determines how your cookies behave when cross-site requests + | take place, and can be used to mitigate CSRF attacks. By default, we + | will set this value to "lax" since this is a secure default value. + | + | Supported: "lax", "strict", "none", null + | + */ + + 'same_site' => 'lax', + +]; diff --git a/config/view.php b/config/view.php new file mode 100644 index 00000000..22b8a18d --- /dev/null +++ b/config/view.php @@ -0,0 +1,36 @@ + [ + resource_path('views'), + ], + + /* + |-------------------------------------------------------------------------- + | Compiled View Path + |-------------------------------------------------------------------------- + | + | This option determines where all the compiled Blade templates will be + | stored for your application. Typically, this is within the storage + | directory. However, as usual, you are free to change this value. + | + */ + + 'compiled' => env( + 'VIEW_COMPILED_PATH', + realpath(storage_path('framework/views')) + ), + +]; diff --git a/database/.gitignore b/database/.gitignore new file mode 100644 index 00000000..97fc9767 --- /dev/null +++ b/database/.gitignore @@ -0,0 +1,2 @@ +*.sqlite +*.sqlite-journal diff --git a/database/factories/AddressFactory.php b/database/factories/AddressFactory.php new file mode 100644 index 00000000..6f3569c4 --- /dev/null +++ b/database/factories/AddressFactory.php @@ -0,0 +1,20 @@ +define(App\Models\Address::class, function (Faker $faker) { + + return [ + 'company_id' => $faker->numberBetween(1, 30), + 'street_one' => $faker->streetAddress, + 'street_two' => $faker->streetAddress, + 'city' => $faker->city, + 'state' => $faker->state, + 'post_code' => $faker->postcode, + 'country' => $faker->country, + 'default' => 1, + 'billing' => 1 + ]; +}); diff --git a/database/migrations/2014_10_12_000000_create_users_table.php b/database/migrations/2014_10_12_000000_create_users_table.php new file mode 100644 index 00000000..167a6a78 --- /dev/null +++ b/database/migrations/2014_10_12_000000_create_users_table.php @@ -0,0 +1,40 @@ +id(); + $table->string('name'); + $table->string('email')->unique(); + $table->timestamp('email_verified_at')->nullable(); + $table->string('password'); + $table->smallInteger('role_id')->default(Roles::USER); + $table->boolean('active')->default(true); + $table->rememberToken(); + $table->softDeletes(); + $table->timestamps(); + }); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + Schema::dropIfExists('users'); + } +} diff --git a/database/migrations/2019_08_19_000000_create_failed_jobs_table.php b/database/migrations/2019_08_19_000000_create_failed_jobs_table.php new file mode 100644 index 00000000..9bddee36 --- /dev/null +++ b/database/migrations/2019_08_19_000000_create_failed_jobs_table.php @@ -0,0 +1,35 @@ +id(); + $table->text('connection'); + $table->text('queue'); + $table->longText('payload'); + $table->longText('exception'); + $table->timestamp('failed_at')->useCurrent(); + }); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + Schema::dropIfExists('failed_jobs'); + } +} diff --git a/database/migrations/2020_07_30_022600_create_password_resets_table.php b/database/migrations/2020_07_30_022600_create_password_resets_table.php new file mode 100644 index 00000000..f465e56d --- /dev/null +++ b/database/migrations/2020_07_30_022600_create_password_resets_table.php @@ -0,0 +1,37 @@ +id(); + $table->bigInteger('user_id')->unsigned(); + $table->string('token'); + $table->boolean('is_expired')->default(true); + $table->boolean('is_complete')->default(false); + $table->timestamps(); + + $table->foreign('user_id')->references('id')->on('users'); + }); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + Schema::dropIfExists('password_resets'); + } +} diff --git a/database/migrations/2020_07_30_023042_create_activity_log_table.php b/database/migrations/2020_07_30_023042_create_activity_log_table.php new file mode 100644 index 00000000..107cf045 --- /dev/null +++ b/database/migrations/2020_07_30_023042_create_activity_log_table.php @@ -0,0 +1,42 @@ +id(); + $table->string('log_name')->nullable(); + $table->text('description'); + $table->unsignedBigInteger('subject_id')->nullable(); + $table->string('subject_type')->nullable(); + $table->unsignedBigInteger('causer_id')->nullable(); + $table->string('causer_type')->nullable(); + $table->text('properties')->nullable(); + $table->timestamps(); + + $table->index('log_name'); + $table->index(['subject_id', 'subject_type'], 'subject'); + $table->index(['causer_id', 'causer_type'], 'causer'); + }); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + Schema::dropIfExists('activity_log'); + } +} diff --git a/database/migrations/2020_08_04_023621_create_user_email_verifications_table.php b/database/migrations/2020_08_04_023621_create_user_email_verifications_table.php new file mode 100644 index 00000000..2f4b78e4 --- /dev/null +++ b/database/migrations/2020_08_04_023621_create_user_email_verifications_table.php @@ -0,0 +1,38 @@ +id(); + $table->string('email', 100); + $table->string('token', 32); + $table->boolean('is_complete')->default(false); + $table->boolean('is_active'); + $table->boolean('is_sent')->default(false); + $table->timestamps(); + + $table->foreign('email')->references('email')->on('users'); + }); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + Schema::dropIfExists('user_email_verifications'); + } +} diff --git a/database/migrations/2020_08_04_043647_create_addresses_table.php b/database/migrations/2020_08_04_043647_create_addresses_table.php new file mode 100644 index 00000000..5de29ab5 --- /dev/null +++ b/database/migrations/2020_08_04_043647_create_addresses_table.php @@ -0,0 +1,45 @@ +id(); + $table->foreignId('company_id'); + $table->string('street_one'); + $table->string('street_two')->nullable(); + $table->string('city'); + $table->string('state'); + $table->string('post_code'); + $table->string('country'); + $table->integer('default'); + $table->integer('billing'); + + $table->timestamps(); + $table->softDeletes(); + + $table->foreign('company_id')->references('id')->on('companies'); + }); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + Schema::drop('addresses'); + } +} diff --git a/database/migrations/2020_09_08_035941_create_jobs_table.php b/database/migrations/2020_09_08_035941_create_jobs_table.php new file mode 100644 index 00000000..1be9e8a8 --- /dev/null +++ b/database/migrations/2020_09_08_035941_create_jobs_table.php @@ -0,0 +1,36 @@ +bigIncrements('id'); + $table->string('queue')->index(); + $table->longText('payload'); + $table->unsignedTinyInteger('attempts'); + $table->unsignedInteger('reserved_at')->nullable(); + $table->unsignedInteger('available_at'); + $table->unsignedInteger('created_at'); + }); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + Schema::dropIfExists('jobs'); + } +} diff --git a/database/seeds/AddressesTableSeeder.php b/database/seeds/AddressesTableSeeder.php new file mode 100644 index 00000000..2cefe328 --- /dev/null +++ b/database/seeds/AddressesTableSeeder.php @@ -0,0 +1,18 @@ +environment('local')) + factory(App\Models\Address::class, 30)->create(); + + } +} diff --git a/database/seeds/DatabaseSeeder.php b/database/seeds/DatabaseSeeder.php new file mode 100644 index 00000000..2a197ad8 --- /dev/null +++ b/database/seeds/DatabaseSeeder.php @@ -0,0 +1,17 @@ +call(UsersTableSeeder::class); + $this->call(CompaniesTableSeeder::class); + } +} diff --git a/gulpfile.js b/gulpfile.js new file mode 100644 index 00000000..7f1221bf --- /dev/null +++ b/gulpfile.js @@ -0,0 +1,101 @@ +const pkg = require('./package.json'); +const gulp = require('gulp'); +const del = require('del'); +const plugins = require('gulp-load-plugins')({pattern: ['*'], scope: ['devDependencies']}); +let uglifyEs = require('gulp-uglify-es').default; + +const onError = (error) => { + console.log(error); +}; + +const sassOptions = {style: 'compressed'}; + +// compile vendor dependencies +gulp.task('vendorJs', () => { + plugins.fancyLog('Compiling vendor JS dependencies'); + return gulp.src(pkg.globs.vendorJs) + .pipe(plugins.plumber({errorHandler: onError})) + .pipe(plugins.print()) + .pipe(plugins.concat('vendor.js')) + .pipe(plugins.uglify()) + .pipe(gulp.dest(pkg.paths.build.js)); +}); + +gulp.task('vendorCss', () => { + plugins.fancyLog('Compiling vendor CSS dependencies'); + return gulp.src(pkg.globs.vendorCss) + .pipe(plugins.plumber({errorHandler: onError})) + .pipe(plugins.print()) + .pipe(plugins.concatCss('vendor.css')) + .pipe(plugins.cleanCss()) + .pipe(plugins.replace('../../../font-awesome/', './')) + .pipe(plugins.replace('../../jquery-ui-dist/', '')) + .pipe(gulp.dest(pkg.paths.build.css)); +}); + +gulp.task('vendorFonts', () => { + plugins.fancyLog('Copying vendor fonts for dependencies'); + return gulp.src(pkg.globs.vendorFonts) + .pipe(plugins.plumber({errorHandler: onError})) + .pipe(plugins.print()) + .pipe(gulp.dest(pkg.paths.build.fonts)); +}); + +gulp.task('vendorImages', () => { + plugins.fancyLog('Copying vendor images for dependencies'); + return gulp.src(pkg.globs.vendorImages) + .pipe(plugins.plumber({errorHandler: onError})) + .pipe(plugins.print()) + .pipe(gulp.dest(pkg.paths.build.images)); +}); + +// compile source scss +gulp.task('sourceCss', () => { + plugins.fancyLog('Compiling source CSS files'); + return gulp.src(pkg.globs.sourceCss) + .pipe(plugins.plumber({errorHandler: onError})) + .pipe(plugins.print()) + .pipe(plugins.sass(sassOptions).on('error', plugins.sass.logError)) + .pipe(plugins.autoprefixer()) + .pipe(plugins.concatCss('site.css')) + .pipe(gulp.dest(pkg.paths.build.css)); +}); + +gulp.task('sourceJs', () => { + plugins.fancyLog('Compiling source JS dependencies'); + return gulp.src(pkg.globs.sourceJs) + .pipe(plugins.plumber({errorHandler: onError})) + .pipe(plugins.print()) + .pipe(plugins.concat('site.js')) + .pipe(uglifyEs()) + .pipe(gulp.dest(pkg.paths.build.js)); +}); + +gulp.task('sourceImages', () => { + plugins.fancyLog('Compiling source image files'); + return gulp.src(pkg.globs.sourceImages) + .pipe(plugins.plumber({errorHandler: onError})) + .pipe(plugins.print()) + .pipe(gulp.dest(pkg.paths.build.images)); +}); +gulp.task('sourceFonts', () => { + plugins.fancyLog('Compiling source font files'); + return gulp.src(pkg.globs.sourceFonts) + .pipe(plugins.plumber({errorHandler: onError})) + .pipe(plugins.print()) + .pipe(gulp.dest(pkg.paths.build.fonts)); +}); +gulp.task('clean', () => { + return del([pkg.paths.build.css + '/*', pkg.paths.build.js + '/*', !pkg.paths.build.js + '/app.js', pkg.paths.build.images + '/*', pkg.paths.build.fonts + '/*']); +}); + +gulp.task('vendor', ['vendorJs', 'vendorCss', 'vendorFonts', 'vendorImages']); +gulp.task('source', ['sourceCss', 'sourceImages', 'sourceJs', 'sourceFonts']); +gulp.task('build', ['clean', 'vendor', 'source']); + +gulp.task('watch', () => { + gulp.watch(pkg.globs.sourceCss, ['sourceCss']); + gulp.watch(pkg.globs.sourceImages, ['sourceImages']); + gulp.watch(pkg.globs.sourceJs, ['sourceJs']); + gulp.watch(pkg.globs.sourceJs, ['sourceFonts']); +}); \ No newline at end of file diff --git a/package.json b/package.json new file mode 100644 index 00000000..af09d038 --- /dev/null +++ b/package.json @@ -0,0 +1,120 @@ +{ + "private": true, + "scripts": { + "dev": "npm run development", + "development": "cross-env NODE_ENV=development node_modules/webpack/bin/webpack.js --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js", + "watch": "npm run development -- --watch", + "watch-poll": "npm run watch -- --watch-poll", + "hot": "cross-env NODE_ENV=development node_modules/webpack-dev-server/bin/webpack-dev-server.js --inline --hot --config=node_modules/laravel-mix/setup/webpack.config.js", + "prod": "npm run production", + "production": "cross-env NODE_ENV=production node_modules/webpack/bin/webpack.js --no-progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js" + }, + "dependencies": { + "animate.css": "^3.7.2", + "bootstrap": "^4.0.0", + "bootstrap-datepicker": "^1.7.1", + "chart.js": "^2.8.0", + "epic-spinners": "^1.1.0", + "font-awesome": "^4.7.0", + "intro.js": "^2.9.3", + "jquery": "^3.2", + "jquery-validation": "^1.17.0", + "jquery.scrollbar": "^0.2.11", + "noty": "^3.2.0-beta", + "perfect-scrollbar": "^1.5.0", + "popper.js": "^1.12", + "sass-loader": "7.*", + "select2": "^4.0.6-rc.1", + "vue": "^2.6.10", + "vue-avatar": "^2.1.8", + "vue-template-compiler": "^2.6.10", + "vuelidate": "^0.7.4", + "vuex": "^3.1.1" + }, + "devDependencies": { + "axios": "^0.19", + "cross-env": "^5.1", + "del": "^3.0.0", + "fancy-log": "^1.3.0", + "gulp": "^3.9.1", + "gulp-autoprefixer": "^4.0.0", + "gulp-clean-css": "^3.7.0", + "gulp-concat": "^2.6.1", + "gulp-concat-css": "^2.3.0", + "gulp-copy": "^1.0.1", + "gulp-livereload": "^3.8.1", + "gulp-load-plugins": "^1.5.0", + "gulp-newer": "^1.3.0", + "gulp-plumber": "^1.1.0", + "gulp-print": "^2.0.1", + "gulp-rename": "^1.2.2", + "gulp-replace": "^0.6.1", + "gulp-sass": "^3.1.0", + "gulp-streamify": "^1.0.2", + "gulp-uglify": "^3.0.0", + "gulp-uglify-es": "^1.0.4", + "laravel-mix": "^4.0.7", + "lodash": "^4.17.13", + "resolve-url-loader": "^2.3.1" + }, + "paths": { + "build": { + "css": "./public/css/", + "js": "./public/js/", + "images": "./public/images/", + "fonts": "./public/fonts/", + "main": "./public/" + } + }, + "globs": { + "vendorJs": [ + "./node_modules/jquery/dist/jquery.min.js", + "./node_modules/popper.js/dist/umd/popper.min.js", + "./node_modules/bootstrap/dist/js/bootstrap.min.js", + "./node_modules/jquery.scrollbar/jquery.scrollbar.min.js", + "./node_modules/jquery-validation/dist/jquery.validate.js", + "./node_modules/select2/dist/js/select2.full.min.js", + "./node_modules/bootstrap-datepicker/dist/js/bootstrap-datepicker.js", + "./node_modules/chart.js/dist/Chart.js", + "./node_modules/noty/lib/noty.js", + "./node_modules/intro.js/intro.js", + "./node_modules/vue/dist/vue.min.js" + ], + "vendorCss": [ + "./node_modules/font-awesome/css/font-awesome.min.css", + "./node_modules/jquery.scrollbar/jquery.scrollbar.css", + "./node_modules/select2/dist/css/select2.min.css", + "./node_modules/bootstrap-datepicker/dist/css/bootstrap-datepicker3.css", + "./node_modules/noty/lib/noty.css", + "./node_modules/noty/lib/themes/*.css", + "./node_modules/animate.css/animate.css", + "./node_modules/chart.js/dist/Chart.css", + "./node_modules/intro.js/introjs.css", + "./node_modules/bootstrap/dist/css/bootstrap.min.css" + ], + "vendorFonts": [ + "./node_modules/font-awesome/fonts/**/*" + ], + "vendorImages": [ + "./node_modules/jquery-ui-dist/images/**/*.png", + "./node_modules/datatables.net-dt/images/**/*.png" + ], + "sourceCss": [ + "./resources/assets/sass/**/*.scss", + "./resources/assets/css/**/*.css" + ], + "sourceImages": [ + "./resources/assets/images/**/*" + ], + "sourceJs": [ + "./resources/assets/js/pages*.js", + "./resources/assets/js/three.r92.min.js", + "./resources/assets/js/vanta.birds.min.js", + "./resources/assets/js/validation.js", + "./resources/assets/js/scripts.js" + ], + "sourceFonts": [ + "./resources/assets/fonts/**/*" + ] + } +} diff --git a/phpunit.xml b/phpunit.xml new file mode 100644 index 00000000..964ff0c5 --- /dev/null +++ b/phpunit.xml @@ -0,0 +1,31 @@ + + + + + ./tests/Unit + + + ./tests/Feature + + + + + ./app + + + + + + + + + + + + + + diff --git a/public/.htaccess b/public/.htaccess new file mode 100644 index 00000000..3aec5e27 --- /dev/null +++ b/public/.htaccess @@ -0,0 +1,21 @@ + + + Options -MultiViews -Indexes + + + RewriteEngine On + + # Handle Authorization Header + RewriteCond %{HTTP:Authorization} . + RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}] + + # Redirect Trailing Slashes If Not A Folder... + RewriteCond %{REQUEST_FILENAME} !-d + RewriteCond %{REQUEST_URI} (.+)/$ + RewriteRule ^ %1 [L,R=301] + + # Send Requests To Front Controller... + RewriteCond %{REQUEST_FILENAME} !-d + RewriteCond %{REQUEST_FILENAME} !-f + RewriteRule ^ index.php [L] + diff --git a/public/favicon.ico b/public/favicon.ico new file mode 100644 index 00000000..e69de29b diff --git a/public/index.php b/public/index.php new file mode 100644 index 00000000..4584cbcd --- /dev/null +++ b/public/index.php @@ -0,0 +1,60 @@ + + */ + +define('LARAVEL_START', microtime(true)); + +/* +|-------------------------------------------------------------------------- +| Register The Auto Loader +|-------------------------------------------------------------------------- +| +| Composer provides a convenient, automatically generated class loader for +| our application. We just need to utilize it! We'll simply require it +| into the script here so that we don't have to worry about manual +| loading any of our classes later on. It feels great to relax. +| +*/ + +require __DIR__.'/../vendor/autoload.php'; + +/* +|-------------------------------------------------------------------------- +| Turn On The Lights +|-------------------------------------------------------------------------- +| +| We need to illuminate PHP development, so let us turn on the lights. +| This bootstraps the framework and gets it ready for use, then it +| will load up this application so that we can run it and send +| the responses back to the browser and delight our users. +| +*/ + +$app = require_once __DIR__.'/../bootstrap/app.php'; + +/* +|-------------------------------------------------------------------------- +| Run The Application +|-------------------------------------------------------------------------- +| +| Once we have the application, we can handle the incoming request +| through the kernel, and send the associated response back to +| the client's browser allowing them to enjoy the creative +| and wonderful application we have prepared for them. +| +*/ + +$kernel = $app->make(Illuminate\Contracts\Http\Kernel::class); + +$response = $kernel->handle( + $request = Illuminate\Http\Request::capture() +); + +$response->send(); + +$kernel->terminate($request, $response); diff --git a/public/robots.txt b/public/robots.txt new file mode 100644 index 00000000..eb053628 --- /dev/null +++ b/public/robots.txt @@ -0,0 +1,2 @@ +User-agent: * +Disallow: diff --git a/public/web.config b/public/web.config new file mode 100644 index 00000000..d3711d7c --- /dev/null +++ b/public/web.config @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/resources/assets/fonts/montserrat/Montserrat-Bold.ttf b/resources/assets/fonts/montserrat/Montserrat-Bold.ttf new file mode 100644 index 0000000000000000000000000000000000000000..b4c25f449814d8fb5b64d211ed2f20a03462c9a5 GIT binary patch literal 54864 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 literal 0 HcmV?d00001 diff --git a/resources/assets/fonts/montserrat/Montserrat-Regular.ttf b/resources/assets/fonts/montserrat/Montserrat-Regular.ttf new file mode 100644 index 0000000000000000000000000000000000000000..7648363a038d248cec56001e848e7af2cbecc1c3 GIT binary patch literal 54988 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

mK*R{6<>ay*~p#|lF zqjEud%VYvVxFh{55fgHG};{G`xoSVASS9@P_$dg&m2y z1gFuVSC>TIEJ<{uL$4{Bh77T=Orts8lrgHsrI#Row_+CyV1&CYTz0ey7aEB{<0f<# z=%D8%HB#P>7sb})1mpLSKIR+uD-HI#Y}=yxw)w&|dYBmzrh2*jHs(B&7%sOM z8^BJ+VW6LJ81OL;1G^Z<3t%_nFtCSl7}(1=4D4f^jR07})R7Yv z+@aUcqfW3#p-w7@QEyWaqlO$8a2GT(GxC(^)}U_6>pI3mjgv6Rez6A=5OE5fvN5fm zoS`Vs1Ep@% z8Pj0XOac3zv|^3e>^?bwITQjhOZHu|5e)Fg6+a>7KBJpIk1?Z34NjQJ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resources/assets/fonts/montserrat/montserrat-regular-webfont.svg b/resources/assets/fonts/montserrat/montserrat-regular-webfont.svg new file mode 100644 index 00000000..66cffa36 --- /dev/null +++ b/resources/assets/fonts/montserrat/montserrat-regular-webfont.svg @@ -0,0 +1,1317 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resources/assets/images/accounts-graphic.png b/resources/assets/images/accounts-graphic.png new file mode 100644 index 0000000000000000000000000000000000000000..d7fc0bed3858ee79c2ed6b59b942621ab081bd25 GIT binary patch literal 72579 zcmZs?XH=70)GZurpr~|FP(xij*-UWhm5}G2t1nD(F z1p=W80YV7nd*Gb+yLY_fI>s3~&X1kF*IsL`IpGG0 z`9G9pg288{BWSO=xjRs2&vt2h_kb*i_9x$NkbqcLL2;C5rYy$>AJ?tQnN~aN!Pe;2 z(}T|lDnm+8Zm9>_Zo9#b;4+Z`fwYxL*t=jDLQK!23@%O>o?bi26t#M zqOn7!`^IHZ2pb0R3V}k;2AuYP1+V$vzI^^8l$Qm!>wF?RJ@4Q$b;ZDIg=UvPv|N~I zSgH@*A?3+I!*Jx$mGbMLce$74_By4E{A>laue?Y=yW3?YDuO^k9{J^--@+4x9Lh|2~!LJcMo?4j<(+$%!_2m~1*_uNdU zMCJhqBv1P8Nd!EkrRT89l<%s9ivP!A4-jaoAKnV(LA7gGG`&K`45h>2YVv1;x!|?& zl8e1-D~KCOH0NWYsRAO26@~a6O?mZ$A`N?1@}<<)Xa=81k|9b~Me!+z{YAJ;?Qm9_ z&`QtBr~Gw!+2GB}oFh*V=*k07qyVjS@!w(vtg=Rg3kBhgk6y-YDpYJ;@X$-T0 zXs>PmNnD#_qqA-VE3^ERgLiCBPI4wVJ@EH&*SDa_$Fl$KKmU3tn?URlWu!~K;0C$| zDQYP!6kzkMU8P@A(NT7^q4Ju!mD$p6{+8kbYfA3AwYHB;yO5-iJJMK(B2Ok@n$C;= z;l;IU+l!}gyrLcchtf(ptqg7c4HDNP^}g`gm4kw>5)Q=BRmry>+Qw*8^9q%Z;6i!h zCEx_K+N|Wo{THP`uD^SpbL-A;!YT*EG@Cm^St1F-JlZg8(=Ul-LCMJPJ&?zTj-qAn zx8HppfM{q;sVE#{zjAQ{)V*-c4QLcA=3b!#lxbLl`(rFCvv$V`cVy!28jpjHiWy?R zAa1LS+_7N0)v_&W6?*jsA}oJ3vN%jX2lncSW&8HUCQh%i=OjuL)og>k^hCv6-0 zlM+p7mLIUvMAQ|~uSAB=pj>NCo91B}i9T39#tu7P{>JG5{t!_@XoEXJ>0B4A+?##F z@|20u>FwBj9f(;r?pJ&*CUk1ShXX~iXyfp<0GxSLWMJ>=+)ATj)Pn~(ZcB9gyS`p# z7N>t(rbPjXQNIdUx_1jN136ERJA8TuKL)(%0<~TxxH2wat zt!!r_{%ONa$wG8zPx=Y-8<}jYEx&(#b@8o-?_m7K>b{7sKEnzT-T;**dXcSPm4#_T z(eYuKFW5vzDjx-PloYyqtp}4_+7>wA;yp``P^pC5`fr1KhJ;RD3`PhM`VKbsZn{gD z1>_socUBl1*eC^*mAR97&X(E?dxNnHb&cMJK-mMebG0F3zU)u@M&#DyXJWi(Ya0{V ziHv7Ob9^{NXsm^!6nPv={5bS0zGHN}gqz!Uk@b;?h}z&9nlE}>uEkKpHD0P)BPm+i6t}=neVr#fglqVj=+G+vP z8qC<#7$P%pM&Airsi<~bAdWyaC5SWR-$%!cs!G|r9{AU`ly#SBO$Epa-;&?QnrZ*L zlBx`CWv>BV?A3Ck?Cq)^*ZV2!a8Vj1(i~zKKZeH%eJ^ZfJz9gfxDqxf*@L|5S5f3O zfq4%#9cm47zsh)N$%opczB8h*d=W~vkCiqYZGRph0n(TFWOBLmzK7SaLI0tUAXI~B zme+6C!?VNiYcuSoHEh$NIbvqI?!-O&#(hD0JgRzjehj^#d{isYGIWjPs*b7A@_31s zh4I}1Q8A;x#-etxQqh2)e1lrdHeMv>_rsy8T-*2Ho_}BEcFZlmwuAcp^w4|QG;P{e zRCLqj!YvwUF0QPZP>CAnZ1~zxu*blfo#wdzat(N~_G3&;jg=e=!)F7@Mu-Dukgx-1 z!Hs#fI5p;z(mop4V)|Y-KWD;*}t{LDMGJFRu zB#7W=--9E-DHA4wmMdg_4{7vj?Uy>mMJdUyM%y*R%4Q>qEuUJx9#e3)+^oq*J8)*H z^PFEFi{R3iA6v16_4Q%aRmPbs-!@-RW*|2dbos?8M$^oBLQl{!_O%3?^08B5ugcQ> z4yAqU)PlCd=SMkWiw^cfdrSU#6w9{F#wt^xhDEKhUlAAGB(tb+$hNA=VC|m@b{aR@ z0KS2B7yZiWz?et*Y}c;H?)RY*cRmwnbC}T}$BnZ! z7D#2FTO@F;s>DxzzyATY78FJ%k#wo3wOpq4 z4M8CQfoP)-*UQ;LY8nY=MO9tw?#UHtUdM$4uTM+L5O+OA5!RVYaVCTHt@zZt(Hdj- zar73lRQ=P!RYQ4cVWMM1^Hchh z-R1M`<@19hpV&sRa8=gAEwmauF^12?@P%&c5;{f_PzST@+R+(&n+IQAwPR#DxKi43 zRB?FbMJ`9FOn~b;uvNA-lI|L8$Gli&X}Q&^%-YyR_Le4qDF(55r5U4Ls3Q^}N&}4OKT|UCAOh*1n^k(^dnYG@H`5(F}S_W6PH@c7IeAVQcQV?J{-|Sld^9JKHKz zNy~oHw}5piaiT_pHX@=LsF@$i4n}om*o~R)V!~&f^ZIbubVqIlcd>|CX0^)~E!hAk zu3lqN^QJjRCG!A7zw>?o#51>Z9<3{8zx-$}wys*W`VOQ7Qfs1Y6MZ!@shq^@uFY5y z^7LElx_`6=ZlE_}r)z<2mMk8)6)|+nxQegQ8uZ$Ym8VA9n)4-KVB~?3SF&c_%{Q5AN=0LkwFrM>lPbc7LUu@jO zBuC7lqLj2kYx~Xm81%oB<#WlprZXc|<*qbpghn-{ZI~0-L%WO1NHQ_$q)Lt(8QaDW zoFs_W&owiJ0H7d~==?Z~cvvD6u-nmL+yL6gB7T(|c`A((OaF~j{w0kumPikN!3AsU z1msqGT#tbD7ln1%b=%v>5TS-r!}zwC60{<#Fy*k;V1{HT6^#db`t!npcNw=jQ7Dd`t2e7cr5d>+Or)<1|83rAb8A@LK`zfr z7}x6}O#mkIk08%Z#5t}<+u_cev(Xg((wnuh%0jhC{NvBJE>;Y-;exI;GC=mZ<&GsF z$7I}w%K50v&l1)agVm0{*CqB>w6Al+{~t&si8|W*9~`=r z6}1wV591(1K=VlCV~aDPUYKeX2mIRLc^y7%)}1Zrn4Y;Vq`*P zMloSeM2E_S1SY11+xa51B^RunLskE|D4`4F;g@jY%iw6u`4__dZMvWxkqJw6LOp%m z*>~Fqx9*?GJU{VO=`vGjLoFel!f&cNED-yve|8u1W|=!~>TqbBh*No%-u(}L9PCc^ zNQLCPYsBp&-2(j1WzYFWWtOP-_`wDNZ(Q!IJRfdcI;Pk~PlGG0cq0 zKkveM+DNH)nP>{C9T`%Js~xS1YGq%$JJ0kK6P8;OSMCHw9YH`*-8JS@b&o%9b`a!- zSiRI|t(DA2JZl;+80n|dcn#S2;se8`j|PoQiBokydWQFQCh3(18BsJNTTN09MYZjJ zk0P|sV|?-+I;CXqlFob%HpAQPvpqmenm(+JRki0K`P|e02fnHk+EjX2{@cFu>x{1D z$b2!xC?i4NhxpP@{eZ9)6GSO3&_7$ws|!nrP|k~YWXQVH4Kz|os99=idcC!bi-pwN zLk0&2=W9)${|C>``+Tm9d79D}E#}usS&LNXA%9I5n7^v(wcys(Aol0O^z!11i0rWD ztxZ^JW7o3y|IJD;LOzwz{#m{cNpDA|I#|A)i{BHboVeVp@T0~_Z$aBm29R2HGUh$y z(T3xeH3`T!*Uu}@_*-Ja;{r#LcnSJ%j0~S(MC;&SJLbB4@0SLW2OEGqH&j2Y1 z?Eja_QSREH##XU~^udaH5{EQ}_*B=`eA?d?1W}qF)sCu;6zo~%)=c}=j%B54&7(6x z{=G&A5+6Xn@F8$}K#kE1Rz6Bi-jg?^J&!g= zz;ypK)1rW#SGEWUKNo-G;b;DEn=)=3Xm?{1`>h~vV-@Cx1kLB<=W$l{L%pM`6w~4DNm3lx37ytcbxRSB^Y2_Xo4Ni)BvwO$2q;obnx?Pa#i%i~S>4vg5SZPhEjIU= zynbV2YSGy-y~e%B^&s_pBN6X`7Nn}~!=pUp;a#3n3>{)r`{_;Aor)*D&h zwgo$-cn^_xj8Yz4e{KFP^DZZsm%WtIVIPbSlC_Ft(~gTW2K(C<9cf0}q8nuJ;5{2dKTYE1uU zvH3ty^O3ta&|(-DcQXNY1;F7%nmO+#9g-4yiPm%Um68;V+UKbZIxX3My3c&8($1Q3 zbnS)-dudp#e|NPPykM$Si4@Q~AbvH3(`f9B0P~a3DfY$;aM|ZBr>B@tx?sB>h%4c6 zG|h5x!vzQg0BZf&y^Kk?Rr1&sn6Vc|Fqlk&_NvO!uK8K-r!$F7ImLll3CQlWr%b`L z=qzKjCJB&?@5(s>I{W8s4h9}@wR5=^B}GXe`0AFgXbqA(HW?WLrE}|-@RSsfs*O<= zVb(xx;3!?f%`v9GRAeHjc3W;lJIn9K_Pi@sJC1>S2GH@l#p(XtU%h~2Ja0o1Dn=oG zjmgcLMqBxDG!-j_Ne6*w)&&n(diNtPEt@nYtzRFE}O z5jnU``y#uP9f006q4Xf*j@~$ZzR#~dQWf{G4?2wpE?%ols$Nq(qWP=j0C!*X^v25z zm0vyQvP%h`DsOU~)B;JdJ4`FLztUTfdH@ zeEE8ceNi*P9n*E6UIn2XmNUuCC=+s-1*0Wpm)9N2-Cl0ZudcQ|_N%lqsZVQp9Uo10 zeqx@;3JL_d{)Sj^e+XPOX^n6nK`$0(c2%XnRgYtd4 zK3w7NyJhR|JI&}7$FJ~<0+(b17@MQB!THsW=R{mpg7|Z!x<#TwOMNIkK5^0aBpOF= z5AeuKPyTGFVN(?c^HS9}j;hO=-GlWUvT+=^MX|J*cJb_kg*_s0NMAxVZB|b8ZWWP3 z*Qh-t`r<-)qP}VshLhbY>!632|JCmNui+fD`}W_wkj6mE0d$kPLrSJ>dr;~0z+;y# zc9C*ezud%Tj^&!mO$$5Dq0~`fx zX3vQP=$&#Td~_PB9vY*8TN{iL5v_FHydnDJos>?P_jS+W;x|W)>ex-Mvw@Elv5($s z8D})d_|egtqYL#LkzV?QLRrm(6h77%T<9fqZlA#_4J9|MSy7L2`M`}q~TU= z+gNaUBhgUO4kY69{3h=2A#n*|^Kgt69=pS9bbyhIz4q?v&WZljS-M&2}_wu=B z1{Kj=2wEXgjm1$8j1}OHyo7lkJnk+gk*iB%JP=rQVklWX?ve^5{Wo?BU4Y_MwcCyv zfEX5<-TKu52q8~E2$|EbP1pH5R;=WM!so!_8NJWDQ6UsQ#$CP&`^xJ3zdw;50bEZq5`7171B4G+tL{?(8Vm4h zG-;l$4HgVcn`@PkD%3VduU*nDhkLN{?ytLinw~2p?tg97Xj+h*JU;qCQ}N^jjDNEX zwIGyTaYRYr99Y+g*8RO8ORpL%aS=5Zf;Io|8GCngph+`i6iYycL?|Lhr^Obk5f#{t zIK%Eab1HX8kyM2YSs8uqEd9yQb)(tXnYlQ+11oey|FeSW&$1_Szj{XayuJMKak*MD zC+QF>;05OVc0K>!qLq_TK{%vkj1D8J*H#=dOCf=po20d3u4{azIE}OK>@59W7}i~) zQb?yFkc1$LnsKfu==cuVSJj^tM}g7@F7OESE(MAHKV*nK3so+}oz+^QfX-z5p_AOC zZ#4yB`sza(UO^1XSUl?FZpWpUA>P2p$oOeyB$}q|2-1Df{V|GEh~;cl;YAK;|F%YN zMEWYlXy`EzFXJ0NJ`r^VOgte$>GgF7?qd6_9D#RV6(84cNhIe{tHJXZ&0&8+7eM0`X}uCtZq%=Vi}?`((rUQnaxivYy)I+3m8LYx@r9Q@w((?FCi zwQg-x%kgfk4FYMF`|8{^bAt}mVE1hO@}@!0oQ>Rpqghi^zQ>p zoVp;u&80+b#%OtsE;j)sd`Wf^=+O@Z1rDa`8bmaTl;6ZgrS`b#TgLzF`dT%!KkWdR zhmU@!K$syJ>jvWuf(}X+L%)u-&wJN{i%5s`!vT(*v0C&mQ`VhH9<{i^kV2jIVo<1N zB5Sej#fN^6r?>V+({J>DN!?=fz~mC;7pG`lhbQTnE^;_LB~|Sjt%!RRQ0M<6h$|sK z9+q6cZ!<=TBm1p1=3{hZEGib+Hhl8w3z@zi4C6l2U00+_+{pkg`y45$SujIeD(-+u zh?^m=H5`l$6+Q2~s?K2veelkfQKvz2CFi;^*i5#nJBx#5P*8trYvexwhWnEva$wsR zFMo1CXuOA-k~#ukza4Bj#*}@FExPDnt`cGuwl+LjsbIEwn*^bUl}V-V%`%e5(Kk}| zq`e=!)cEuy;KSoHpOptH?uVnO4U+S24&pFI(mh&W;?@}j%m~AC>!5u&k|4b~WT)le zZuU|<>>=1-7LAx8UK*+7$0v*fi}h?s?4{lS41Pk!+Q5nEr^^>-`@@bw@^JreIcwWp zTwm$><%*z@cXvUt0$Vnx9B%Yh!j|GFsm36`@SXn9AY4LO;L-aEn<@U=Izbo6C}-Ab zmQaY?sE+vOVHOH7g=o*U@irnqRwLMX$?VS_rH2KrN)8L^#OnIdKb(8Q+CQ3hEVsQ7 z2xkmI#6w2P$=*VyBb(%$2gu!AGIPwGTlCz0$eWUR&UDW4_SWtlXByjX6fC<$xpHZteqx5We%RfV>9nktn=E^)b(Au zielU@B6GEby+X|81teO*e9L@$VJ9~7H4mt{)@JFwXGE|bN?8%W`}g^&XO^VA>r*YV zd;x!u8uz%T_~bzBDDq@Cj5OQ-wNd8+TSSagb{LAB?W+E*S$;43U*fzC=Zm5xpFVKh{)sGs| zHRHspLboAf=wyTOzAvEj5XD*W(0MukMHXy4^78)F#%zz;`?I$|1;+-d_e?Jd~&t4%UoK zQN*uZa{`;<+3sJO$}M~bTQ%M;)Kbe*SBp&gJ@gV19U1)E0~oFIfK&dbt@)?&t&YMT zbX)%uTUsykmbZhITCo$h5S<-9%B+OB4ie({Nf4r$uBL zq&y}aFVRm<*Fk49)Dn>BH)^%_{2JMy?mAjbWB6!&AItpgmpPh!!0ZGdVI}XmL+s2P zS2r=LiY?SdMKgSnezW^3bUrFXWx-Jl3UAdMp)+paxItWyqEiJl`!ev@0>u-2Po$Re9 zzHqi>Cy?0NC3Qe-NC5o`2F6Yczq`8_Z8ATkdr0kN-aEZKS%SaIuX&Mpc6U6q_#_9D zlf1}QIN)Qgu3maeFU%Z$+yZqMo0)uJ#K!iK#(FzD8ykn7m)y%onowpteH+-z|6lBZ z;^?!eH5s~>IoDp6SIv6iM$z!cx6aWdNxffkC^=q*%oqFD{<%-{c5sNfS6pyZ#!nN$ z_AhgPS7)x{{(S#|tbF5G$&SsCm{adLTJ0_WU+((djBDDD*Yv8R?0QYdiIs&Esi}64 zF1Efy?O~G1y&QkPM?_G>`MG9x^BPn>10up-Dd_5)0Xwot3K3PBZbb0zB<$zC@Cj(g z&4*%`i8t!$uzom z667Uy_C9c$=k&C~N_)O+156LNS#w_CX8j9zZIb3`+*eLJKYY9O;DI^i``ScJ+a@y} z^LZ-5(d+=*c0kolHi2eCp92`T_i3cB&1%R!|CJC(RsDdXlWi-&tifxI5*;ueXtmA_ z;`iTz=P$gMWIwYlQ{w=$vcN09t%j}EjB0O5j#fIg6kMyakIjOW*1BI*l&=b0lL=ui zD1eRV{5c{Bo~JRq%Uu~Bn-PJX>5VN>4G5&R3OnKLZmFA$w@}jIbV|Sj?n;7khVHZ% z@ev+Qi1#uF5w_6Z2YCPHG}ORWEN{|2GWyroY_{?018A=PUB!_fRQvK!u~I7UgTSb~ ze}_kU*_Kn-tBSA0dkC=c!;`~fW3#e%BVJ3G z$Uc7RvHU^dAhh#m+Qd?ks75@Txil{X!c8zer1OUZ?c)2bGsQ z-<&8u6{t%xiEnm-+n!pKkuUZ535Kdi9Vf;ndZPs)>|0S!u1GmfwdyWK#oKT7A!_J2 zumVg{3H#DJ*(*3=*w9JF9Jyu?Anhb-%b!8D|5N(+L6I>M2r(ggXuXBsj zzb1t9-4#`M{xS-dO3xXJqVagKQ4!~$R`zj&=L@>Jt*EqPOSvf^$HIU4^<*g`EIU|t zK{jCc+QKk5;M6mu6^}Stxt5>1Zke+5U#H%uD?T9Gl>#vKvEhiC57VCJ!7oL@f4V#< z2DFn-iU#QRBVk&y`=@nj*_p#fLcko-uB3|~a9TOt&Xz|?gU`BD78^d4FgUO+b|-|kOR z;&wBtkM%g9yZLP!o%{>nky)s)=^1sW8FznP$xmPG2qGB~pV9q6q{`)Wo1y2-kM-<8 z!r8Oc{I<8ArcT_1&>%*iwn@BdJa2A$!5k16_y%TjV)#l!{%@2;IIq zz1g1MzSQ`Mc|L4GMF}@Z8k>3jIP*f<8o1vE+5K2I7#-FPiG}|DQLbgwh}SecN47BA z2;Ws+NOn^B8)Lx?#G@^LSXI_`rHM|$h-FmHfc3~Q*AGqlqn*A4&jKyir8^B3>pL9t z2$fNTplr4AeaI1DFU@zG8c9&?DKyuCv&_pjR2@m*DgTVlr8gh<`Z~R7pQk)NXG{lr z2afx5n@#|eP$dsumVNrRiAQ%!M9JA?=GP#VKv+o14J|b1`q5Eq;-Zp?US$r4N!HX4 z_26O7wX$vONroi9={)fGaWE}hc{Y`Uw%lmUru9*#ZoUgQ91SP~?zJ=44j8Ba z`lWJust8No+9)7Y;ch! zJ(O5^)EqAu)E(ev*8n z7|(r{)MZAxrp?gDgL+A&Gm%2-=!x;V`=U4a_e3JJe#y$K55G3Cf2us$`f^7hr=XLV z$Y?qQOm1Yok;=$!#&27;w2xtVzZO7$7@$!9y`PMX&5*DNi>8O}yw_HkKiV^QyB?vK zb@>rU|Gwf+)<|onS)R}S_LdGbD%UMbTD6=u-;V#q43fG|mh9oji{0cKi)2xfsr!Gv z|9OSbR+I+HF;wnK>r+a3E#Y9pJ3h5H?G}1kAnz5&OK1QEdgZ|%o|QZ^krZ`a5qKQ( zPuJbet0bB~D=61b{1>xmu3Emjt~Z_>5f9!pr}tz+2m09Zud=KvC5E{(u=%Te6vn^W za7cjIjd`(NIDko-gI*xC)urNE`iB^0U#Y)-WV8$>6hK-wwiAyTO>%-8%EDxWd^l8D zPbU&j@(gJqs2mh6+ID$$jPU!p^ft$eV99cljyW(GH{H+PyQKvdZ~0v4ogLMb2S(Fa$Uq(}o9eLF#ZIUp;j6;oss_yQ9?^hfNM zmu1*CYrj8$Jj-poh%vwXtMY7g0cjwDw z0Zf)x&<@9>gA)VKCzc^1%^QV4a@b#a9 zv|`Kaj&b&1Uy`MYcX|AsO(zk&xR$#VAptul>I%^)L@GIMF1|AP6ZPZWo!AidpOjc4z2&{vPdMB>Lpi`=#e z&&OKz0b3ZmfRcPm@C}VfLFbe=ONFdl{%EqQQZj*V`bI}HAH^GBI1VV2R}w>~=VVhk z9#WLCPwP1e_3k)U*>)Cp9-27bjKce{VSbT|gqTw9&r^fpf!j-O<%du$JT3UAMR9v( zB7cFy$$PS_R?~WIW;CO8X(J>aSf3jMOD)>sQ`3A!bq+MQqSX>XBgeOPm3Av!$fIY~ zR4!{p@l*1exBf)DaVuMJC}s^ic4gJTY|-YA1Qv~#P*-|Hc%}2nP~_g9*q&pL}Dke%j)cfEKUkO^Ej9jgwENu&%53^Qa-1F zamwN;sViBN+0Gov`Iw-?B1b`G|RXb2HJzsiPIKr*OrDp5%#iL!&?;T}UmB zrUL=s2rLeZiag?qBP4%#*MbiY42a7z0at3-&a-oLsfBxCA<@$|5l0mBp%e*ASoHd5 zs$y5YY(t(ydhU}~$?rLGcT3JqRlBpJFVo4;l5}SEuq5i3WyYijljN;;RWcuY+u^KYTv^0%$AJc9i!0cIR|M&I8th3scV) zQmUQEEEmO7wAYDm-<|<=Db6ka$Z40fVZP!z5QGp5l1)4YCuBRyzBe8jrUrt|qho|< z&c_yg(VALVwOKw-KNc6UtAk+y01VW5z%V9hwpUqhykb1D{^+WYT`j9$4AimBz7`(w zG|i|mdetb+WK`SENp|GbT98-Qvg!Upxr0^i&lA6nN-bc{2BwwMo@#)EN)88x()xh@ zxh+B4Jy#%9lho2v#@qjNZ>zqCS!K95+Lez_G1~<|w;&6mw4v}Nb_9ld&fAII_I9TTCQ@ly5;-zOWBoR?q8 zZhI)9@V-Bfk2xX7sIqdVZaT;lchIkg%5TCHrsJzJ1(+TzM|@fviU)pe)@`h)x!n7> zdAL2^=N3Gj?PKa1F#X35#x%#{5)$VbMn9`{SJXBxQ%OWr>$YuJR_$=Epoaxc_6=N$ zD9IXS%xz{42q#&6*G73w2eS?!XyLdOnwfwh?oxZ@TL~$hoHQyED0#J@? zpA!zU_vcqT!XSt-haWOv%%_!e^FbjV_Z-iXL{FXErSY5AcTl+D2FvvXnBShHyJ^N$ zlbl_$@>+XyV{U|bQ1d;!<6NAAy1f7AzIO9XaQA*97jc```X?(_W{FUFILVQ!nDPjDRsf5vW|;M;-t zfQb?x1hGw~mvo~+sJ9>V&N4hV*iwAzy}cTGboZnYb`&%u{sPGw!LuuEU-WWuQp)qa zD(`xzrx%_|Dd%;U|GSA;rh^dw&g|0jsg6?HApQ7_TjXAUkO4`>QCK)i+I=v~pm@t+ zV9+J#cLbAHMin{7N~j;bsmS3xem`w+1mML5zps* z2Kvi=Xp|;#mAolG1p+gbctVfx@wncc()EW?`LHgqWZWUzKJ>U2XMfr#kgkTpA=|j5*8H1yh<%2a<72a##a59c2M$T)pQ?!Q!Gbx#1fL8!ewo~|X749@F zt#3;Fd(dp6t}KjgfbySGE61)qqc|EEE zR1A{KEaCHf?aN#c^SPILjs9skX{|a&POR^EoTSF@w!4}pXI(kVk5)GTqd=Ql`3XxWnRD`&PQ_hQks)$iJGq%vUeIOM!3*haRPftNomMU)h( zA(?q-_&o4}rE+w(a|1*stAgZDjO}rB9$r98AkKEhG>TvR>`-7{c<0Ad zY+GTtczHURj*pXGWhr#=;aqJ$V#>>0WSJ^Mw(V};+aWJ<-7TfQll-Lps2+!*J!5b?wp;&yG|&bg~dW zrhYHR{w5T^VoK-yo$y8kYWl{x+_7cnWBFSDWohq^aEw(yTw5Z5`%|1 zdl|S!voBBFQiDt;g|TA4s2E8f6$#M~B^XTP#psP~;0R;%sD#Qq|ta=W1f$DXyiY zYk^N&&g+Nkt~wk98UKZL*k1?UMn8~A*cM1HSpFTIlZ96g30Jw;Ud{VM*pp_=71*!5~Rus(tM_-!_AW7WMHv3Lk5N^inj0v(6F@BVDc_~cW|lE5nJk$K!D=ix4v4EA#>MtSum?&NBf_WAcX zu7`f7=)N5Vru;kNUFvecfh3bq3~hO2`X}$BG3Yh$i0xc8 zYXo|t(@21Pk>~bcyrk+%5r+a%!d$cjC#Jrii06Tmjzdlw}u@K({B`M<42wCK)r4nJ5A-mmuPuFH~I5zZK^ zSRL7kxGI>_FFCtv#urz*E{=7c=wjc}_Lld-$H&tw?m2;EORxEX2edtoBC;7b| z>YKnPf4R>#;J!nVnX(1FO}hR;{;vv`qHFf>p3t3NRwZ*S>E4d^&D*@UT;A#8)ua@4`44jK;KrpiZxp)3x9cDZ>Iv!VjY8JnH*|2wjbvf;>wB+w_gc~(i z#8GkdpnI6^1~~evIqjO?61*GWLyGqw#>!l2wY~Wm4}3Za*eF-9OJ>-0fi{n)yBgI= z*Q(ClvvX&X%8TcyP4^$!5JM=V{Z%lzSR~rLeZyWPvOm0azvkaV2&c6_wg2)3hwL(_ z^Z$7RZfm5o_B3yWh-wYSkdjhl2>4@c#><}B-j!7Q)zYD(QJ25!={cOpS^g#90pe!a z=0zk5%f1-;h%9`3C>XT!i;CN>B@VW(qu_YB;D>pacyLM>p3fGVO>?|*{{sb9+YdUI zeyltHqKDh0=|-^|ZiUPK;H-!vK(aiZd1BqezFfIK=c|WIhZFF)^x^i1-Dy5YYksG{ z;FmNbzf<~(LhvK_&mDJae}@gz)~$@pbRSH;5&swYVSFq1huemufQ9cfD==qr>rCH7 zz6#McJDAfJp80P}Tpr!KT3cwPq!dZ`GgVfH&yD>Z4TY@j;G6U9i!5~xG<`N0J1p+e zjil_~b*NKc)v`Wy~^13n`XSz2X8b9Pa(Z>* zsaI&hQ)E#S2sFAoq%iB%Rh}r2#gC^VPu8tO{Do?4O(xu+?PF%VbGl=#0ptJe$!a#c zkJm%W7rsL@cN+rDrM4z*!q>k6$18I=aC}~BZPpWXi)Mq|dVYSa9 zX@nge8;rdPUn618YvI_kr+drKDdprP=cQo7LGkd5*zI(vyul-110w|C@X?vP!?&m< z&Xq4g4jYUf*-KBTdB~JTM7+1ZP=u-J(G(*VHT43B+=HB8Yzi_ajZlprDx&BCduOeQ z1|d~+Jc?R!Gyq`8*91PPyO);z+NrpGXOAKt_vF_^d(a8?L{S@@nzZK)8-Ev!K+H9B z4=RKlKE$8{CnB;19GwIW)+N=4%<*Zn8aZBttxiKjnn|q+(&-hmX&B(5H9cD~G-p5K z57uJ+2MHDm_r9)=^%!0Pf!^2x`XUPJwZO?cWoi#uo(F+}dz}g|{g20fbFM(Ap8$6a0}v}} z*}u7U-JUZ)Vru7sO4ZG4BA+Q($iGxKB%F3ytK`TMvLV|qMw4$_y1L(n)RKFxyPfzA zrVp_K+#3K3>rS(g-7xi#HM0p04WWX$NnvqIpLq|?+$#8Q1*-1&MDqO^8{~A2N{PK# zUvz!kUjJ{>BoVpW4MD_x%)()W<6-h=95K*!=